@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');
:root {
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --orangeColor:#F58220;
  --whiteColor: #ffffff;
	--dimwhiteColor: #cac6c6;
	--redColor: #fc3220e8;
	--grayColor: #585757;
  --darkgrayColor: #222222;
	--boxShadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	--boxShadow2: 0 5px 5px 5px rgba(0,0,0,0.1);
  --limegrayColor:#e7ebf0;
  --formgrayColor:#F3F3F3;
  --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

*{
  box-sizing:border-box;
  transition: all .3s linear;
  text-decoration:none;
  outline:none;
  border:none;
  margin:0;
  padding:0;
  list-style-type:none;
  font-family: 'Cabin', sans-serif;
}

html {
  scroll-padding-top:10px;
  scroll-behavior:smooth;
  overflow-x:hidden;
  scroll-padding-top:10px;
}

a {
  color:var(--blackColor);
}
svg {
  display: block; 
}
body {
  background:var( --whiteColor);
}
::-webkit-scrollbar {
  width: 8px;
  }
::-webkit-scrollbar-track {
  background-color:var(--limegrayColor);
  }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to top, #ff6c03, #000000);
  border-radius:2px;
  }  
.container {
  padding:20px 25px;
  max-width: 1400px;
  margin:0 auto;
}
@media screen and (max-width:768px) {
  .container {
    padding:10px;
  }
}
/* New buttons*/
.main_button {
  min-width: 130px;
  padding: 14px 20px;
  font-weight: 500;
  font-size:16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  border-radius: 32px;
  z-index: 0;
  background: transparent;
  overflow: hidden;
  border: 2px solid var(--orangeColor);
  color: var(--whiteColor);
}
.main_button::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.4s ease;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to left, #f58733 0%, #a22b2f 100%);
}
.main_button:hover {
  color: var(--whiteColor);
  border: none;
  border: 2px solid rgba(245, 135, 51,0.1);
}
.main_button span {
  padding-left:8px;
  font-size:20px;
}
.main_button:hover span {
  padding-left:10px;
}
.main_button:hover::after {
  width: 100%;
}

/* second-ripple-button */
.ripple-button {
  min-width: 130px;
  height: 44px;
  color: #fff;
  padding: 12px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius:5px;
  border: none;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
  background:linear-gradient(to right,  var(--orangeColor) , #e85d04);
 z-index: 1;
}
.ripple-button:hover:after {
  width: 100%;
  left: 0;
}

.ripple-button:after {
  border-radius: 5px;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  z-index: -1;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
  background-color: linear-gradient(to left,  var(--orangeColor) , var(--redColor) );
  right: 0;
}
.ripple-button:active {
  top: 2px;
}
/* New buttons*/

.btn2 {
  padding: 14px 40px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  border-radius:25px;
  background: linear-gradient(to right, #f58733 0%, #a22b2f 100%);
  color:var(--whiteColor);
  background-size: 200% 100%; /* Create a "copy" of the gradient */
  transition: background-position 0.3s ease-in-out;
}
.btn2:hover {
  background-position: -100% 0;
}

.buttons {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--blackColor);
  padding: 14px 14px;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1
}
.buttons::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background: var(--orangeColor);
  -webkit-transition: color .5s,-webkit-transform .3s;
  transition: color .5s,-webkit-transform .3s;
  transition: transform .3s,color .5s;
  transition: transform .3s,color .5s,-webkit-transform .3s;
  z-index: -1
}
.buttons:hover {
  color: var(--whiteColor)
}
.buttons:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0)
}

 /* buttons here */
.button {
  background: linear-gradient(to right, #f58733 0%, #a22b2f 100%);
  padding:15px 22px;
  border-radius:5px 15px 5px 15px;
  color:var(--whiteColor);
  font-size:16px;
  background-size: 200% 100%;
  transition:background-position .3s ease-in-out;
}
.button:hover {
  background-position:-100% 0;
}
.hero-button-container {
  padding:10px 0;
  margin-bottom:10px 0;
}
.hero-button-container a span {
  margin-left:15px;
  font-size:22px;
}

  /* Modern Hero Section */
  .hero-section {
    position: relative;
    height: 55vh;
    background: linear-gradient(135deg, #14213d 0%, #000000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120px; 
    background: white; 
    border-radius: 50%;
    z-index: 1;
  }

  .hero-content {
    margin: 0 auto;
    padding: 1rem;
    padding-bottom: 4rem;
    position: relative;
    text-align: center;
    z-index: 1;
  }
  .hero-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
  }

  .hero-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff4d00, #1982c4);
    border-radius: 2px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 1.5rem auto;
  }

  .hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.2rem;
  }

  .hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
  }

  .hero-breadcrumb a:hover {
    color: #ff4d00;
  }

  .hero-breadcrumb .separator {
    color: #ff4d00;
    font-size: 1.2rem;
  }

  .hero-breadcrumb .current {
    color: #1982C4;
    font-weight: 600;
  }

  /* Animated Background Elements */
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }

  .hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
  }

  .circle-1 {
    background: #ff4d00;
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
  }

  .circle-2 {
    background: #1982C4;
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: float 12s infinite ease-in-out reverse;
  }

  .hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(90deg, transparent 0%, transparent 49%, rgba(255,255,255,0.1) 50%, transparent 51%, transparent 100%),
      linear-gradient(transparent 0%, transparent 49%, rgba(255,255,255,0.1) 50%, transparent 51%, transparent 100%);
    background-size: 50px 50px;
    animation: moveLines 20s linear infinite;
  }

  .hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: moveDots 40s linear infinite;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(180deg); }
  }

  @keyframes moveLines {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
  }

  @keyframes moveDots {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-30px) translateY(-30px); }
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
      padding: 0 20px;
    }

    .hero-section {
      min-height: 50vh;
    }
  }
@media (max-width:500px) {
  .hero-section {
    height: 40vh;
    padding-bottom: 10px;
  }
  .hero-section::after {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 80px; 
  }
}
/* buttons ends here */
.sub-heading {
  color:var(--blackColor);
  font-size:22px;
  padding:20px 0;
  text-align:center;
  font-weight:500;
}
@media (max-width:768px) {
  .sub-heading {  
    font-size:18px;
  }
}
.sub-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--blackColor);
  padding:10px 0;
  position: relative;
}

.testimonial-sub-title {
  color:var(--whiteColor);
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  padding:10px 0;
  position: relative;
}
.sub-title::after, .testimonial-sub-title::after {
  content:'';
  position: absolute;;
  width:10%;
  height:4px;
  background:#f58733;
  bottom:0;
  left:50%;
  transform: translateX(-50%);
}
.chat-toggle {
  position: fixed;
  right:20px;
  bottom: 16px;
  z-index:3000;
  font-size:17px;
  cursor:pointer;
  border-radius:50%;
  width:50px;
  height:50px;
  color: white;
  transition:.6s ease-in-out;
  background:black;
}

#top-button {
  position: fixed;
  display:flex;
  justify-content:center;
  align-items:center;
  right:16px;
  opacity:0;
  bottom:10px;
  z-index:1500;
  font-size:17px;
  cursor:pointer;
  border-radius:50%;
  width:44px;
  height:44px;
  color: #14213d;
  transition:.6s ease-in-out;
  background:var(--limegrayColor);
} 
#top-button::before {
  position: absolute;
  content: '';
  left:0;
  bottom:0;
  height:0%;
  width:100%;
  border-radius:50%;
  background:linear-gradient(to right,  #000000 , #14213d );
  transition:.3s ease-in-out;
  z-index:-1;
  color:var(--whiteColor);
  opacity:0;
}
#top-button.active {
  opacity:1;
  bottom: 16px;
}
#top-button:hover::before {
  height:100%;
  opacity:1;
 }  
 #top-button:hover {
  color:var(--whiteColor);
  border:3px solid rgba(1, 124, 143,0);
 } 
.whatsapp-container {
  position:fixed;
  right:15px;
  bottom:70px;
  z-index:1500;
  background:green;
  border-radius:50%;
  padding:12px 14px;
}
.whatsapp-container:hover {
  background:var(--blackColor);
  color:var(--whiteColor);
}
.whatsapp-float {
  font-size:26px;
  color:var(--whiteColor);
}
/*-----------Messages styling--------*/
.messages {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	max-width: 500px;
	width: 100%;
	padding: 14px;
	position: fixed;
	opacity: 0;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
    background: #e85d04;
    border-radius:5px;
	color: white;
	font-size: 15px;
	animation: fade_in_out 6s ease-in-out;
	z-index: 10000;
}
.messages-close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 19px;
	color: white;
	font-size:20px;
	cursor: pointer;
}
.messages.hidden {
	display: none;
    pointer-events: none;
}
@keyframes fade_in_out {
	0% { opacity: 0; transform: translate(-50%, -40px); }
	30% { opacity: 1; transform: translate(-50%, 0); }
	70% { opacity: 1; transform: translate(-50%, 0); }
	100% { opacity: 0; transform: translate(-50%, -50px); }
}
/*Messages styling ends*/

:root {
  --maroonColor:#78290f;
  --goldorangeColor:#ff7d00;
  --orangeColor:#FE6012;
  --greenColor:#15616d;
  --greenColor: #146c3a;
  --blueColor:#0BB9F5;
  --beigeColor:#ffecd1;
  --blackColor:#001524;
  --redColor:#FF0000;
}
    /* Header Styling Starts */
.header-section {
display: fixed;
top:0;
left:0;
width:100%;
z-index:9000;
border-radius: 0 0 18px 18px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
background: transparent;
}
.header_top {
width: 100%;
overflow: hidden;
background: var(--formgrayColor);
background: linear-gradient(90deg, var(--maroonColor), var(--orangeColor));
position: relative;
padding: 2px 32px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
gap: 10px;

z-index: 5000;

}

.header-top-marquee-content {
display: flex;
align-items: center;
justify-content:space-between;
/* padding-left: 100%; */
/* animation: marquee-scroll 18s linear infinite; */
font-size: 13px;
font-weight: 600;
letter-spacing: 0.7px;
color: var(--whiteColor);
filter: drop-shadow(0 1px 4px rgba(168,136,5,0.10));
line-height: 36px;
gap: 6px;
padding: 0 10px;
}
@keyframes marquee-scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}

.header-top-marquee-content .phone-icon,
.header-top-marquee-content .mail-icon,
.header-top-marquee-content .location-icon {
background: #1982c4;
color: var(--whiteColor);
padding: 2px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
}

.header-top-marquee-content-socials {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 6px;
}

.header-top-marquee-content-socials a {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height:30px;
border-radius:5px;
transition: all 0.3s ease-in-out;
}
.header-top-marquee-content-socials a:hover {
transform: translateY(-2px);
}
.header-top-marquee-content-socials a .facebook-icon {
color:var(--whiteColor);
background: var(--blueColor);
font-size: 15px;
padding: 3px;
border-radius:5px;
}
.header-top-marquee-content-socials a .youtube-icon {
color:var(--whiteColor);
background: red;
font-size: 15px;
padding: 3px;
border-radius:5px;
}
.header-top-marquee-content-socials a .instagram-icon {
color:var(--whiteColor);
background:#d62976;
font-size: 15px;
padding: 3px;
border-radius:5px;
}
.header-top-marquee-content-socials a .tiktok-icon {
color:var(--whiteColor);
background: var(--blackColor);
font-size: 15px;
padding: 3px;
border-radius:5px;
}
.header-top-marquee-content-socials a .twitter-icon {
color:var(--whiteColor);
background: var(--blackColor);
font-size: 15px;
padding: 3px;
border-radius:5px;
}

.subheading-title {
color:var(--whiteColor);
font-weight: 400;
margin: 0 4px;
text-shadow: 0 1px 4px rgba(0,0,0,0.10);
letter-spacing: 0.5px;
font-size: 13px;
vertical-align: middle;
}

/*main header */
.header {
display:flex;
justify-content: space-between;
gap:20px;
align-items: center;
width:100%;
z-index: 9000;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
padding: 10px 32px;
}
.header.sticky {
position: fixed;
padding: 13px 32px;
top: 0;
left: 0;
backdrop-filter: blur(12px);
border-radius: 0 0 18px 18px;
border: 1px solid rgba(255,255,255,0.18);
}
.logo-container {
display: flex;
align-items: center;
justify-content: flex-start;
border-radius: 18px;
}
.logo-text {
font-size: 14px;
font-weight: 600;
color: var(--blackColor);
letter-spacing: 0.5px;
text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo-text-span {
font-size: 14px;
font-weight: 600;
color: var(--maroonColor);
letter-spacing: 0.5px;
}
.logo-img {
width:200px;
}
.nav ul {
display:flex;
justify-content: flex-start;
align-items: center;
flex-wrap:wrap;
gap:5px;

padding-right:30px;

}

.nav-item .nav-link {
color:var(--blackColor);
font-size: 13px;
padding:12px 16px;
font-weight: 700;
position: relative;
}

.nav-item .nav-link.active::before, .nav-item .nav-link:hover::before {
content: '';
position: absolute;
top: 10px;
left: 1px;
width: 8px;
height: 8px;
border-left: 3px solid #ff7d00;
border-top: 3px solid #ff7d00;
}

.nav-item .nav-link.active::after, .nav-item .nav-link:hover::after {
content: '';
position: absolute;
bottom: 10px;
right: 1px;
width: 8px;
height: 8px;
border-right: 3px solid #1982c4;
border-bottom: 3px solid #1982c4;
}
.nav-item .nav-link:hover {
color: #1982c4;
}
.nav-item .nav-link .chevron {
display:none;
}

.nav-item .nav-link.active {
color:#1982c4;
}
.menubars, .menuclosebtn {
display:none;
}
/* Dropdown Styling */
.dropdown {
position: relative;
z-index:9000;
}
.dropdown .dropdown-content {
position: absolute;
opacity: 0;
visibility: hidden;
pointer-events: none;
left: 50%;
transform: translateX(-50%);
top: 160%;
padding: 15px 0;
border-radius: 1px;
transition: all 0.3s ease-in-out;
z-index: 9999;
background: var(--whiteColor);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Admin Dropdown Specific Styling */
.admin-dropdown .dropdown-content {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: start;
min-width: 280px;
padding: 20px;
gap: 10px;
background: var(--whiteColor);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.admin-dropdown .dropdown-content .nav-link {
display: flex;
align-items: center;
gap:8px;
padding: 8px;
border-radius: 6px;
transition: all 0.2s ease;
font-size: 15px;
color: var(--blackColor);
}

.admin-dropdown .dropdown-content .nav-link:hover {
background: #1982c4;
color:var(--whiteColor);
transform: translateX(5px);
}

/* Services Dropdown Specific Styling */
.services-dropdown .dropdown-content {
min-width: 300px;
color:var(--blackColor);
background: var(--whiteColor);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services-dropdown .service-section {
padding: 15px 20px;
}

.services-dropdown .service-title {
color: var(--blackColor);
font-weight: 600;
font-size: 14px;
padding: 0 0 10px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
margin-bottom: 10px;
}
.services-dropdown .services-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.services-dropdown .service-item {
padding: 8px 12px;
width: 100%;  
background: var(--whiteColor);
color:var(--blackColor);
font-size: 13px;
font-weight:600;
border-radius:1px;
transition: all 0.2s ease;
position: relative;
border-bottom:1px dotted rgba(120, 41, 15, 0.5);
}
.services-dropdown .service-item:hover {
background: #1982c4;
color:var(--whiteColor);
transform: translateY(-2px);
transition: 0.3s linear;
}
.services-dropdown .service-item.active {
background: #1982c4;
color:var(--whiteColor);
}

/* Shared Dropdown Hover Effects */
@media (min-width: 769px) {
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 11px);
}
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
.dropdown .dropdown-content {
  position: absolute;
  left:0;
  box-shadow:none;
  min-width: fit-content;
  width:100%;
  max-height:0;
  transform: none;
  overflow-x: hidden; 
  overflow-y: auto;
  border-radius: 1px;
  pointer-events: all;
}

.dropdown .dropdown-content.show {
  position: relative;
  max-height:500px;
  transform: max-height 0.3s ease-in-out;
  visibility: visible;
  opacity: 1;
  top:120%;
  z-index:9999;
  pointer-events: all;
}

/* Admin Dropdown Mobile Styles */
.admin-dropdown .dropdown-content {
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.admin-dropdown .dropdown-content li {
  padding: 5px;
}
.admin-dropdown .dropdown-content .nav-link {
  padding: 8px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
}
/* Services Dropdown Mobile Styles */
.services-dropdown .service-section {
  padding: 8px;
}

.services-dropdown .services-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services-dropdown .service-item {
  padding: 7px;
  border-bottom: 1px solid #ccc;
  width: 100%;  
  font-size: 13px;
}
}
@media (max-width: 768px) {
.menubars {
  display: block;
  font-size: 20px;
  padding:8px;
  border-radius:5px;
  color:#1982c4;
  border:1px dotted#1982c4;
}
.menuclosebtn {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 800;
  font-size: 30px;
  color:#1982c4;
}
.nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-height:100vh;
  overflow:hidden;
}
.nav ul::-webkit-scrollbar {
  width:2px;
}

.nav ul li {
  padding: 13px 0;
  border-bottom: 0.1px solid var(--whiteColor);
}
.nav-link {
  color:#1982c4;
  font-size: 14px;
  font-weight: 600;
}
.nav-item .nav-link.active::before, 
.nav-item .nav-link:hover::before, 
.nav-item .nav-link.active::after, 
.nav-item .nav-link:hover::after {
  display: none;
}
.nav-item .nav-link .chevron {
  display:inline-block;
  transition: 0.3s ease-in-out;
  font-size: 13px;
  color:var(--greenColor);
  padding-left:5px;
}

.nav-item .nav-link:hover {
  color:var(--orangeColor);
}

.header {
  position: sticky;
  padding: 13px 20px;
}
.logo-img {
  width:180px;
}
.nav {
  position: fixed;
  visibility: hidden;
  pointer-events: none;
  left: -100%;
  top: 0;
  width: 0;
  height: 100vh;
  background: var(--formgrayColor);
  opacity: 0;
  padding: 40px 20px; /* Reduce horizontal padding */
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}
.nav::-webkit-scrollbar {
  width:2px;
  background: var(--whiteColor);
}
.nav::-webkit-scrollbar-thumb {
  background: var(--orangeColor);
}
.nav.active {
  visibility: visible;
  pointer-events: auto;
  width: 100%;
  opacity: 1;
  left: 0;
}

.nav ul {
  width: 100%;
  padding-right: 0; /* Remove right padding */
}

.nav-item {
  width: 100%; /* Ensure items take full width */
}

/* Update dropdown styles */
.dropdown .dropdown-content {
  width: calc(100% + 40px); /* Account for nav padding */
  margin-left: -20px; /* Offset the nav padding */
  padding: 10px 20px;
}

/* Update services dropdown styles */
.services-dropdown .service-section {
  width: 100%;
}

.services-dropdown .service-item {
  width: 100%;
  white-space: normal; /* Allow text to wrap */
}

/* Update admin dropdown styles */
.admin-dropdown .dropdown-content {
  width: calc(100% + 40px);
  margin-left: -20px;
}
}
@media (max-width: 450px) {
.logo-text {
 display: none;
}
}
/* Moving Header Styles */
.moving-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(90deg, var(--maroonColor), var(--orangeColor));
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.moving-header-content {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: moveLeft 30s linear alternate infinite;
}

.moving-header-text {
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: capitalize;
}

.moving-header-text::before {
  content: "⭐";
}

@keyframes moveLeft {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .moving-header-text {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .moving-header-text {
      font-size: 12px;
      padding: 0 30px;
  }
}
/* Dropdown z-index fix */
.dropdown, .dropdown-content, .admin-dropdown, .services-dropdown {
z-index: 14000 !important;
}
.dropdown .dropdown-content, .admin-dropdown .dropdown-content, .services-dropdown .dropdown-content {
z-index: 14001 !important;
position: absolute;
}
@media (max-width: 768px) {
  .header_top {
    display: none !important;
  }
}



/*----------- FAQ----------------*/
.faq-section {
  padding:10px;
  padding-top:50px;
}
.faq-container {
  max-width: 1000px;
  width:100%;
  margin: 0 auto;
  padding: 20px;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: #fff;
  color: var(--blackColor);
  font-weight:500;
  font-size:17px;
  padding: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9f9f9;
  color: var(--orangeColor);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #f3f3f3;
}

.faq-answer.active {
  padding: 20px;
  max-height: 200px;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: bold;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}
@media (max-width:768px) {
  .faq-container {
    padding: 5px;
  }
}
/*----------- Our process---------------*/
.our-approach-section {
  background-position: center center;
  background-repeat:no-repeat;
  background-size:cover;
  padding:50px 0;
  background-image: url("/static/images/waves-layered.540b9e71099f.svg");
}
.our-process-container {
  padding:60px 20px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:15px;
  justify-content:center;
}
.our-process-item {
  display:flex;
  flex-direction: column;
  justify-content:flex-start;
  gap:7px;
  align-items:center;
  border-radius:10px;
  padding:18px;
  color:var(--darkgrayColor);
  font-size:16px;
  border:0.5px solid var(--dimwhiteColor);
}
.our-process-item .process-number {
  width:54px;
  padding:10px;
  background: linear-gradient(to right, #f58733 0%, #ce5a5e 100%);
  border-radius:50%;
}
.our-process-item h4 {
  color:var(--blackColor);
  font-size:18px;
  line-height:28px;
  font-weight:700;
  text-align: center;
}
.our-process-item p {
  color:var(--darkgrayColor);
  font-size:17px;
  line-height:29px;
  font-weight: 400;
}
.our-process-item.active {
  color:var(--darkgrayColor);
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  font-size:16px;
  line-height:29px;
  transform:translateY(-8px);
  box-shadow:var(--boxShadow);
}
.our-process-item.active .process-number {
  background:var(--blackColor);
}
@media (min-width:768px) and (max-width:1024px) {
.our-process-container {
  grid-template-columns:repeat(2,1fr);
}
}
@media (max-width:768px) {
.our-process-container {
  grid-template-columns:1fr;
}
}


 /*-------------- Footer styling starts-------------------- */
 .footer {
  background:var(--whiteColor);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  color:var(--blackColor);
  position:relative;
  margin-top:90px;
  z-index: 1000;
}
  
.footer-container {
  display:grid;
  grid-template-columns: repeat(4,1fr);
  padding:30px;
  gap:40px;
  padding-top: 50px;
  bottom:0;
  left:0;
  width:100%;
  color:var(--blackColor);
}
.footer-logo {
  display:flex;
  gap:10px;
  justify-content:flex-start;
  align-items:center;
  margin-bottom:20px;
  flex-wrap:wrap;
}
.footer-logo .footer-logo-img {
  width:200px;
}
.footer-content ul li  {
  padding:6px;
}
.footer-content ul li a {
  text-decoration: none;
  color:var(--blackColor);
  font-size: 15px;
  font-weight:400;
}
.footer-content ul li a:hover {
  color:var(--orangeColor);
  padding-left:5px;
}

.ftco-heading-2 {
  padding:10px;
  font-size: 19px;
}
.footer-content> p {
  color:var(--blackColor);
  font-size: 15px;
  line-height: 25px;
  padding-bottom: 30px;
}
.double-chevron {
  font-size: 20px;
  color:var(--orangeColor);
  margin-right:5px;
}
.footer-subscribe-form {
  margin-top: 20px;
}
.subscribe_to_our_newsletter_title {
  color: var(--blackColor);
  font-size:16px;
  font-weight: 500;
  margin-bottom:10px;
  
}
.footer_subscribe_form {
  display: flex;
  gap: 5px;
  border: 1px solid #ccc;
  border-radius: 25px;
}
.footer_subscribe_form .input {
  flex: 1;
  border-radius: 25px;
  padding: 7px 12px;
}
.footer_subscribe_form button {
  background: #1982c4;
  color: var(--whiteColor);
  padding:3px 12px;
  cursor: pointer;
  font-size:15px;
  border-radius:0 25px 25px 0;
}
.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  color:var(--blackColor);
  font-size: 16px;
  padding:30px;
  border-top: .1px solid var(--orangeColor);
}
.footer-copyright .designed {
  color:var(--darkgrayColor);
  font-size:14px;
}
.footer-copyright a {
  color:var(--orangeColor);
  font-size:14px;
}
.footer-icons {
  display:flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: end;
  gap:4px;
}
.ft-icon {
  border-radius: 50%;
  color: var(--blackColor);
  background:var(--formgrayColor);
  padding:3px;
  font-size:17px;
  height:28px;
  width:28px;
  display:flex;
  justify-content: center;
  align-items: center;
}

.footer-content .ft-com-icon {
  padding-right:10px;
  font-size:15px;
  color: #ff4d00;
}
.ft-icon:hover {
  background: var(--orangeColor);
  color:var(--blackColor);  
}
.footer-content .ft-icon.fa-x-twitter {
  color: #fff;
  background: #000;
}
.footer-content .ft-icon.fa-facebook {
  color: #fff;
  background: #1982c4;
}
.footer-content .ft-icon.fa-instagram {
  color: #fff;
  background: #d6249f;
}
.footer-content .ft-icon.fa-tiktok {
  color: #fff;
  background: #000;
}
.footer-content .ft-icon.fa-youtube {
  color: #fff;
  background: red;
}
.copyright-mark {
  color:var(--orangeColor);
  padding-left:10px;
}
.text {
  font-size:16px;
  padding-left:5px;
}
@media (max-width:768px) {
  .footer-container {
  grid-template-columns: 100%;
}
}
/* Footer Styles Ends */


/*----------------------HOME STYLING------------------------*/

/*home hero content*/
.home_hero_section {
  min-height: 70vh;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #2d3748 50%, #1a2332 75%, #0f1419 100%);
  color: var(--whiteColor);
  position: relative;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  pointer-events: none;
}

.grid-line {
  border-right: 1px solid rgba(0, 212, 255, 0.3);
  height: 100%;
}
.home-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 3rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.home_hero_title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 900px;
  position: relative;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.home_hero_title::before{
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  left:-30px;
  top:50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg,#ff4d00, #1982c4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { 
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% { 
    transform: translateY(-50%) scale(1.1);
    opacity: 0.8;
  }
}
.gradient-text {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 25%, #0066ff 50%, #0099cc 75%, #00d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}
.orange-gradient-text {
  background: linear-gradient(135deg, #ff4d00 0%, #bd6342 25%, #ff4d00 50%, #00d4ff 75%, #ff4d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.35rem;
  color: #b8c5d6;
  margin-bottom: 1rem;
  max-width: 700px;
  line-height: 1.7;
  font-weight: 400;
}

.home_hero_buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.home_hero_buttons .home_hero_btn {
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.button-primary {
  /* background: var(--whiteColor); */
  border: 2px solid #ff4d00;
  background: #ff4d00;
  color: var(--whiteColor);
  transition: all 0.3s ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.button-primary:hover .arrow-svg {
  transform: translateX(5px);
}

.button-secondary {
  background: linear-gradient(135deg, #0066ff, #00d4ff);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.button-secondary:hover {
  background: linear-gradient(135deg, #0052cc, #0099cc);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* Service cards */
.home-hero-solutions-grid {
  margin-top: -2rem;
  margin-bottom: 1rem;
  padding: 0 20px;
  padding-bottom: 2rem;
  width:100%;
}

.hero-service-card {
  padding:16px 20px;
  border-radius: 8px;
  /* backdrop-filter: blur(40px); */
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 210px;
  color: var(--blackColor);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-service-card:hover::before {
  opacity: 1;
}

.hero-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width:0;
  height: 4px;
  background: linear-gradient(90deg, #ff4d00, #1982c4);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-service-card.middle_card::after {
  width:50%;
}

.hero-service-card.middle_card:hover::after {
  width:100%;
}

.hero-service-card:hover::after {
  width: 100%;
}

.hero-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
}
.hero-solution-icon {
  width:50px;
  height:50px;
  margin-bottom: 10px;
  object-fit:contain;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  background: #f3f3f3;
  padding:3px;
  border-radius: 5px;
}

.hero-service-card:hover .hero-solution-icon {
  transform: scale(1.1);
}

.home-hero-service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color:#1982c4;
  position: relative;
  z-index: 1;
}

.home-hero-service-description {
  color: var(--blackColor);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .home_hero_title {
      font-size: 2.5rem;
  }

  .home_hero_buttons {
      flex-direction: column;
  }

  .home_hero_buttons .home_hero_btn {
      width: 100%;
      justify-content: center;
  }
  .home_hero_title::before {
    display: none;
  }
}
/*home hero content ENDS*/


/*----------------------home-about------------------------*/
.about-row {
  margin-top:10px;
  display: grid;
  align-items:start;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap:25px;
}
.about-image {
  margin:0 auto;
  height:70%;
  width:100%;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
}

.about-image .main-about-image {
  width: 100%;
  height:100%;
  object-fit:cover;
  position:relative;
  /* animation: waffle 5s linear infinite alternate; */
}

@keyframes waffle {
  0% {
      border-radius:46% 54% 40% 60% / 65% 55% 45% 35%;
 
  }
  25% {
      border-radius: 62% 43% 64% 43% / 39% 55% 47% 60%;
  }
  50% {
      border-radius: 46% 57% 51% 49% / 39% 44% 58% 65%;
  }
  75% {
    border-radius:46% 54% 37% 63% / 42% 32% 68% 58%;
  }
  100% {
      border-radius: 45% 60% 44% 57% / 52% 43% 68% 48%;
  }
}
@media screen and (max-width:768px) {
  .about-image .main-about-image {
    animation: none;
  }
  .about-image {
    height:40vh;
  }
}

@keyframes colors {
  100% {transform:hue-rotate(360deg)};
}

.about-section-image-container {
  width:100%;
  height:auto;
}
.about-section-image-container .about-section-image {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius: 25px;
}

.about-col-2 {
  padding:5px 30px;
  position:relative;
}

.about-sub-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--blackColor);
  padding:10px 0;
  position: relative;
}
.about-sub-title::after {
  content:'';
  position: absolute;
  width:19%;
  height:4px;
  background:#f58733;
  bottom:0;
  left:0;
}
.about-body-text {
  font-size:16px;
  line-height:35px;
  padding:20px 0;
  padding-bottom:10px;
  color:var(--darkgrayColor);
  font-weight:400;
}
.about-body-text span {
  color: #1982c4;
  font-weight: 600;
  font-size:1.3rem;
}
.about-body-text span b {
  color: #ff4d00;
  font-weight: 600;
  font-size:1.3rem;
}
.about-body-ul {
  margin-left: 20px;
  line-height: 1.7;
}
.about-body-ul li {
  margin-bottom: 10px;
  list-style-type: disc;
  font-size: 1.1rem;
}
.about-body-ul li::marker {
  color: #1982c4;
}
.about-body-ul li b {
  color: #1982c4;
}
.get-started-button-container {
  display: flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:flex-start;
  align-items:center;
  margin:5px 0;
}

@media (max-width:768px) {
  .about-row {
    grid-template-columns: 1fr;
    gap:10px;
  }
  .about-section-image-container .about-section-image {
    border-radius: 5px;
  }
.about-bg-underlay1, .about-bg-underlay2 {
  display:none;
}
.about-col-2 {
  padding:10px;
}
.get-started-button-container {
  gap:10px;
  justify-content:center;
  padding-top:0px;
  margin-top:10px;
  margin-bottom:10px;
}
.about-body-text {
  font-size:16px;
}
}
.about-contact-section {
  background-position:top;
  background-size:cover;
  background-repeat:no-repeat;
  height:50vh;
  position:relative;
  background-attachment: fixed;
}
.about-contact-section::after {
  content:'';
  background-color: rgba(0,0,0,0.6);
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:1;
}
.about-contact-container {
  display:grid;
  grid-template-columns:2fr 3fr;
  z-index:20;
  position: relative;
  height:100%;
}

.about-contact-col2 {
  background:
    linear-gradient(
    160deg,
      hsl(0, 0%, 1.96%) 0%,
      hsl(0, 0%, 10.86%) 50%,
      hsl(0, 0%, 23%) 70%,
      hsl(0, 0%, 61%) 100%
    );
  clip-path: polygon(14% 0,100% 0,100% 100%, 0% 100%);
  border:5px solid var(--orangeColor);
  display:flex;
  flex-direction: column;
  gap:5px;
  padding:50px;
  padding-left:120px;
  align-items:center;
  justify-content:center;
  margin-top:-20px;
  margin-bottom:-20px;
}
.about-contact-col2 .contact-page-header {
  color:var(--whiteColor);
  font-size:24px;
  padding-bottom:30px;
  font-weight:500;
}

@media (max-width:768px) {
  .about-contact-container {
    grid-template-columns:1fr;
}
.about-contact-col2 {
  clip-path: polygon(5% 0,100% 0,100% 100%, 0% 100%);
  border:2px solid var(--orangeColor);
  padding:10px;
  padding-left:30px;
}
.about-contact-col2 .contact-page-header {
  font-size:22px;
}
}
/* about section ends */


/*core-values section*/
.core-values-section {
  padding:10px 0;
  background:var(--formgrayColor);
}
.mission-vision-container {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  justify-content:center;
  align-items:center;
  padding:30px;
  margin-bottom:30px;
}
.mission-vision-container .vision-mission-card {
  padding:30px;
  border-radius:10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  background:var(--formgrayColor);
}
.mission-card {
  margin-top:-60px;
  margin-left:-50px;

}
.vision-card {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.icon-vision-container {
  display:flex;
  flex-wrap:nowrap;
  gap:20px;
  justify-content:flex-start;
  align-items:start;
}
.mission-title, .vision-title {
  display:inline-flex;
  text-align:center;
  font-size:21px;
  padding-bottom:10px;
  color: var(--darkgrayColor);
  font-weight:600;
}
.vision-mission-card p {
  font-size:16px;
  line-height:30px;
  color:var(--darkgrayColor);
  font-weight:400;
}
/*Core values */
.core-values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-content:center;
  align-items:center;
  grid-gap: 20px;
  margin: 30px auto;
}

.core-value-card {
  background-color: var(--whiteColor);
  border-radius: 5px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  padding:10px;
  transition: all 0.3s ease-in-out;
}
.core-value-card:hover {
  transform: translateY(5px);
}

.core-value-card1 {
  border-left: 4px solid var(--blackColor);
}

.core-value-card2 {
  border-left: 4px solid #f39c12;
}

.core-value-card1:hover {
  border-left: 8px solid var(--blackColor);
  transition: all 0.3s linear;
}

.core-value-card2:hover {
  border-left: 8px solid #f39c12;
  transition: all 0.3s linear;
}

.icon-vision, .core-value-icon {
  font-size: 70px;
  color:var(--orangeColor);
  margin-right: 24px;
}

.core-value-title {
  font-size: 1.5rem;
  font-weight: 500;
  font-size: 19px;
  color: var(--blackColor);
  margin-bottom: 14px;
}

.core-value-description {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}
.cv-card ul li span {
  font-size:16px;
  color:var(--blackColor);
}
@media (max-width:768px) {
  .core-values-section {
    padding:10px 0;
  }
  .mission-vision-container {
    grid-template-columns:1fr;
    gap:10px;
    padding:1px;
  }
  .mission-vision-container .vision-mission-card {
    padding:10px;
    border-radius:5px;
  }
  .mission-card {
    margin-top:0px;
    margin-left:-0px;
  }
  .icon-vision-container {
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
    align-items:start;
  }
  .icon-vision-container img {
    width:36px;
    height:36px;
  }
  .vision-mission-card h3, .cv-card h3 {
    display:block;
    text-align:center;
  }
  .core-value-card img {
    width:40px;
    height:40px;
  }
  .core-value-card h4 {
    font-size:22px;
    text-align: center;
  }
}

/*--------- Choose us section------------ */
.why-choose-us {
  padding: 20px 0;
  padding-bottom: 5rem;
  background: linear-gradient(135deg, #1982c4 0%, #ff4d00 100%);
  position: relative;
  overflow: hidden;
}
.why-choose-us::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120px; 
  background: white; 
  border-radius: 50%;
  z-index: 1;
}
.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url("#grid#grid")"/></svg>');
  opacity: 0.3;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.why-choose-header .sub-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #fff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-header .sub-heading {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.feature-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.feature-card.featured:hover {
  transform: translateY(-15px) scale(1.07);
}

.feature-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1982c4, #ff4d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.feature-icon ion-icon {
  font-size: 2.5rem;
  color: white;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 80, 157, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 80, 157, 0.4);
}

.feature-content {
  position: relative;
  z-index: 2;
}

.feature-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #fff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.feature-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.highlight-number {
  color: #1982c4;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.highlight-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.why-choose-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00509d, #ff6b35);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 80, 157, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 80, 157, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 80, 157, 0.4);
  color: white;
}

.cta-button ion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover ion-icon {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 0;
    padding-bottom: 80px;
  }
  
  .why-choose-header .sub-title {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-card.featured {
    transform: none;
  }
  
  .feature-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  .cta-text {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

/* Animation for cards on scroll */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*----------Home Blog styling starts--------------- */
.home-blog-section {
  padding:0;
}
.home-blog-row {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  margin:30px 0;
  padding:30px;
}
.home-blog-row .home-blog-card {
  height:fit-content;
  display:flex;
  flex-direction:column;
  background:var(--formgrayColor);
  color:var(--darkgrayColor);
  border-radius:2px;
  border:1px solid var(--formgrayColor);
}
.blog-image-container {
  width:100%;
  height:30vh;
  overflow: hidden;
}
.home-blog-row .home-blog-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:2px 0 0 2px;
}
.home-blog-row .home-blog-card:hover img {
  transform: scale(1.08);
  transition:.2s linear;
}
.home-blog-row .home-blog-card:hover {
 box-shadow:var(--boxShadow2);
 background:var(--whiteColor);
}
.blog-content-card {
  padding:20px 30px;
}
.home-blog-row .home-blog-card h3 {
 color:var(--blackColor);
 font-size:19px;
 font-weight:500;
 margin:8px 0;
}
.home-blog-row .home-blog-card .poster {
  color:var(--orangeColor);
  font-size:15px;
  margin:8px 0;
  opacity:0.7;
 }
.home-blog-row .home-blog-card p {
  color:var(--darkgrayColor);
  font-size:15px;
  line-height:28px;
  margin:10px 0;
  font-weight:400;
 }
 .home-blog-row .home-blog-card .blog-read-more-container{
  display:flex;
  justify-content:flex-start;
 }

 .home-blog-row .home-blog-card .blog-read-more {
  color:var(--whiteColor);
  background:var(--blackColor);
  font-size:14px;
  padding:12px;
  border-radius:8px;
 }
 .home-blog-row .home-blog-card .blog-read-more:hover {
  color:var(--blackColor);
  background:var(--orangeColor);
 }
 .more-blog-view-container {
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:30px;
 }
 .more-blog-view-container .blog-view-more {
  color:var(--blackColor);
  font-size:17px;
 }
 .more-blog-view-container .blog-view-more:hover {
  color:var(--orangeColor);
  transform:scale(1.05);
 }

 @media (min-width:600px) and (max-width:1024px) {
  .home-blog-row {
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
    margin:20px 0;
    padding:5px;
  }
}
@media (max-width:600px) {
  .home-blog-row {
    grid-template-columns:1fr;
    gap:10px;
    margin:20px 0;
    padding:5px;
  }
  .home-blog-row .home-blog-card img {
    height:30vh;
  }
  .home-blog-row .home-blog-card {
    height:fit-content;
    grid-template-columns:1fr;
    width:100%;
  }
  .blog-image-container {
    width:100%;
    height:100%;
  }
  .blog-content-card {
    padding:20px 10px;
  }
}

/*-------- home-our-process --------------*/
.home-our-approach {
  width:100%;
  height:80vh;
}
.home-our-approach img {
  width:100%;
  height:100%;
  object-fit:contain;
}
@media (max-width:768px) {
  #home-approach-section {
    display:none;
  }
}
/*-------- testimonial starts --------------*/
.about-testimonial-section {
  margin-bottom:-80px;
}
.testimony-section {
  margin-bottom:40px;
  background-color: var(--formgrayColor);
  padding:40px 0;
  background-attachment: fixed;
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
  position: relative;
}

.testimony-section::after {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0, 0, 0, 0.5);
}

.testimonial-header {
  padding:20px;
  padding-top:10px;
}
.testimonial-sub-heading {
  font-size:23px;
  color:var(--dimwhiteColor);
  font-weight:500;
  text-align:center;
  padding:20px 0;
}
.testimonial-left {
  display:flex;
  justify-content:center;
  margin-top:20px;
  margin-bottom:20px;
  width:100%;
}

.review-swiper-container {
  width:60%;
}
.testimony-wrap {
  padding:30px;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--formgrayColor);
}
.testimony-img-container img {
  width:64px;
  height:64px;
  padding:8px;
  border-radius: 50%;
  background: var(--formgrayColor);
}
.testimony-body {
  padding-bottom:15px;
  overflow-wrap: break-word;
  text-align: center; 
  color:var(--grayColor);
  font-weight:400;
}
.testimony-body .testimonial-words {
  font-size:16px;
  line-height:30px;
  padding-bottom:10px;
  font-weight:400;
}
.testimony-body .name {
  font-size:16px;
  padding-bottom:10px;
  font-weight:600;
  color:var(--grayColor)
}
.fa-star {
  color:var(--orangeColor);
  font-size:15px;
  padding:2px;
}
.testimony-quote {
 margin-bottom:5px;
 font-size:23px;
 color:var(--grayColor);
}
@media (max-width:768px) {
  .review-swiper-container {
    width:100%;
  }
}
/* testimonial ends */


/* Subscribe-section */

.subscribe-form-container {
  max-width:1100px;
  width:100%;
  border-radius:10px;
  background:
    linear-gradient(
    170deg,
      hsl(0, 0%, 1.96%) 0%,
      hsl(0, 0%, 10.86%) 70%,
      hsl(0, 0%, 61%) 100%
    );
  padding:50px;
  margin:30px auto;
  display:grid;
  grid-template-columns:2fr 3fr 1fr;
  justify-content:center;
  align-items:center;
  gap:25px;
}

.subscribe-form-container .notify-col h3 {
  font-weight:700;
  font-size:26px;
  line-height:30px;
  color:var(--whiteColor);
  padding-bottom:10px;
}
.subscribe-form-container .notify-col h3 span {
  color:var(--orangeColor);
  padding-right:8px;
  font-weight:800;
}
.subscribe-form-container .notify-col p {
  font-weight:400;
  font-size:17px;
  line-height:30px;
  color:var(--whiteColor);
  padding-bottom:10px;
}
.subscribe-form-container .input-col input {
  font-weight:400;
  font-size:16px;
  color:var(--darkgrayColor);
  padding:16px;
  padding-left:20px;
  border-radius:25px;
  background:var(--whiteColor);
  width:100%;
}
.subscribe-form-container .input-col input:focus {
  background:var(--whiteColor);
  border:1px solid var(--orangeColor);
}
@media only screen and (max-width:768px) {
  .subscribe-form-container {
    width:100%;
    border-radius:5px;
    padding:30px 15px;
    margin:10px auto;
    grid-template-columns:1fr;
    gap:10px;
  }
  .subscribe-form-container .ripple-button-col .main_button {
    width:100%;
  }
}

/*services page styling STARTS*/
.services-page-section {
  position:relative;
}
  .services-title-container {
    padding-top:10px;
  }
@media only screen and (max-width:400px) {
  .services-title-container {
    padding-top:10px;
  }
}
/*Projects cards styling starts*/
.projects-section {
  background:var(--formgrayColor);
  margin-bottom:50px;
}
.card-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  padding-bottom:60px;
}
.card-content {
  background-color:var(--whiteColor);
  position: relative;
  border-radius:2px;
  padding:6px;
}
.card-content .overlay {
  position: absolute;
  left:50%;
  bottom:30%;
  transform:translate(-50%,-50%);
  transition: 0.3s ease;
  opacity:0;
  z-index:2;
  display:flex;
  gap:3px;
  justify-content: center;
  align-items:center;
}
.card-content:hover .overlay {
  opacity:1;
  bottom:50%;
  cursor:pointer;
}
.card-content .overlay i {
  color:var(--orangeColor);
  background:var(--limegrayColor);
  padding:10px 20px;
  font-size:14px;
  border-radius:5px;
  font-weight:600;
}
.card-content .overlay i:hover {
  color:var(--blackColor);
  transform:scale(1.05);
}
.card-content .card-img {
  width:100%;
  height:auto;
  object-fit:cover;
  border-radius:2px 2px 0 0;
  transition:0.4s linear;
}
.card-content:hover .card-img {
  transform:scale(1.07);
}
.card-link-container {
  padding:15px;
}
.card-link-container a {
  color:var(--blackColor);
  line-height:30px;
  font-size:18px;
  font-weight:700;
}
.card-link-container p {
  color:var(--grayColor);
  line-height:30px;
  font-size:15px;
  font-weight:400;
  padding:10px 0;
}
.card-link-container i {
  color:var(--blackColor);
  font-size:14px;
  padding-left:8px;
}
.card-link-container a:hover {
  color:var(--orangeColor);
  transform:scale(1.05);
}
.card-link-container a:hover i {
  color:var(--orangeColor);
}

@media (max-width: 600px) {
  .card-container {
    grid-template-columns:100%;
    gap:15px;
  }
  .card-content {
    margin-bottom:0px;
}
}
@media (min-width: 600px) and (max-width:768px){
  .card-container {
    grid-template-columns:repeat(2, 1fr);
  }
}
/*Project styling ends*/




/*---------services details styling------------*/

.service-detail-section {
  padding-top:30px;
}
.service-detail-intro-container {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  justify-content:center;
}
.service-detail-intro {
  padding:0 50px;
}
.service-intro-image-container {
  width:100%;
  height:90%;
}
.service-intro-image-container img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.syokihub-image-container {
  width:100%;
  height:70vh;
  padding:0;
  transform:rotate(-4deg);
  border-radius:15px;
}
.syokihub-image-container img {
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:15px;
}

.service-detail-title {
  padding:10px 0;
  text-align:start;
  font-size:30px;
  background:var(--blackColor);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
  font-weight:800;
}
.service-detail-sub-title {
  padding:10px 0;
  text-align:center;
  font-size:25px;
  font-weight:700;
  background-image: linear-gradient(to right, var(--orangeColor) 0%, #000000 76%);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
}
.service-detail-text {
  font-size:17px;
  font-weight:400;
  color:var(--grayColor);
  line-height:30px;
}
.service-more-details {
  max-width:1000px;
  width:100%;
  margin:30px auto;
}

.ai-features-section {
  background: var(--formgrayColor);
  padding: 20px 0;
}

.ai-features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 800px;
  width: 100%;
  margin: 20px auto;
  justify-content: center;
  align-items: center;
}

.ai-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--grayColor);
  font-size: 16px;
  line-height: 28px;
  background: linear-gradient(to right, #ffffff, #e7ebf0);
  box-shadow: var(--boxShadow2);
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
}

.ai-feature:hover {
  box-shadow: var(--boxShadow);
  transform: translateY(-5px);
}

.ai-feature-illustration {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.ai-feature-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-feature p {
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .ai-features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .syokihub-image-container {
   transform:rotate(0deg);
  }
}

@media (max-width: 450px) {
  .ai-features-container {
    grid-template-columns: 1fr;
  }
  .service-detail-section {
    padding-top:10px;
  }
}

/*---------Website styling------------*/
.service-benefit-section, .web-solutions-section {
  background:var(--formgrayColor);
  padding:20px 0;
}
.web-service-benefits-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:1100px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.web-service-benefits-container .service-benefit {
  display:flex;
  flex-direction:column;
  gap:5px;
  justify-content:center;
  align-items:center;
  padding:15px;
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);

  border-radius:10px;
}
.web-service-benefits-container .service-benefit h4 {
  color:var(--blackColor);
  font-size:17px;
  font-weight:700;
}
.web-service-benefits-container .service-benefit p {
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
}

.web-service-benefits-container .service-benefit img {
  width:40px;
}
.web-service-benefits-container .service-benefit:hover {
  box-shadow:var(--boxShadow);
}

.web-solutions-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:700px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.web-solutions-container .web-solution {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:var(--grayColor);
  font-size:16px;
  line-height:28px;
  background:linear-gradient(to bottom,#ffffff, #f3f3f3);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
  padding-left:10px;
  padding-bottom:10px;
}
.web-solutions-container .web-solution:hover {
  box-shadow:var(--boxShadow);
}
.web-solution .web-solution-illustration {
  width:60px;
  height:60px;
  object-fit:contain;
}
.web-solution .web-solution-illustration img {
  width:100%;
  height:100%;
  border-radius:10px;
}
@media (max-width:768px) {
.service-detail-intro-container {
  grid-template-columns:1fr;
}
.service-detail-intro {
  padding:0 20px;
}
.web-service-benefits-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.web-solutions-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
}

@media (max-width:450px) {
.web-service-benefits-container {
  grid-template-columns:1fr;
  gap:10px;
  width:100%;
}
.web-solutions-container .web-solution {
  font-size:14px;
  line-height:25px;
  padding-left:8px;
  padding-bottom:8px;
  text-align:center;
}
.web-solution .web-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
}

@media (max-width:340px) {
.web-solutions-container {
  grid-template-columns:1fr;
}
}


/*---------Mobile app styling------------*/
.service-benefit-section, .service-solutions-section {
  background:var(--formgrayColor);
  padding:20px 0;
}
.mobile-service-benefits-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:1100px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.mobile-service-benefits-container .service-benefit {
  display:flex;
  flex-direction:column;
  gap:5px;
  justify-content:center;
  align-items:center;
  padding:15px;
  color:var(--grayColor);
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  font-size:15px;
  line-height:25px;
  border-radius:10px;
}
.mobile-service-benefits-container .service-benefit h4 {
  color:var(--blackColor);
  font-size:17px;
  font-weight:700;
}
.mobile-service-benefits-container .service-benefit p {
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
}

.mobile-service-benefits-container .service-benefit img {
  width:40px;
}
.mobile-service-benefits-container .service-benefit:hover {
  box-shadow:var(--boxShadow);
}

.mobile-service-solutions-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:700px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.mobile-service-solutions-container .service-solution {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:var(--grayColor);
  font-size:16px;
  line-height:28px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
  padding:10px;
  padding-top:0;
}
.mobile-service-solutions-container .service-solution:hover {
  box-shadow:var(--boxShadow);
}
.service-solution .service-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
.service-solution .service-solution-illustration img {
  width:100%;
  height:100%;
}
.service-tech-stack {
  max-width:700px;
  width:100%;
  margin:40px auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  justify-content: center;
}
.service-tech-stack .stack-img {
  width:60px;
}
.service-tech-stack .stack-img:hover {
  transform:translateY(-5px);
  cursor:pointer;
}
@media (max-width:768px) {
.service-detail-intro-container {
  grid-template-columns:1fr;
}
.service-detail-intro {
  padding:0 20px;
}
.mobile-service-benefits-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.mobile-service-solutions-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.service-tech-stack .stack-img {
  width:40px;
}
}

@media (max-width:450px) {
.mobile-service-benefits-container {
  grid-template-columns:1fr;
  gap:10px;
  width:100%;
}
.mobile-service-solutions-container .service-solution {
  font-size:14px;
  line-height:25px;
  padding-left:8px;
  padding-bottom:8px;
  text-align:center;
}
.service-solution .service-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
}

@media (max-width:340px) {
.mobile-service-solutions-container {
  grid-template-columns:1fr;
}
}

/*---------UI_UX styling------------*/
.service-benefit-section, .ux-solutions-section {
  background:var(--formgrayColor);
  padding:20px 0;
}
.ux-service-benefit-container {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  max-width:1050px;
  width:100%;
  margin:20px auto;
  text-align: center;
  justify-content:center;
  align-items:center;
}
.ux-service-benefit-container .ux-service-benefit {
  display:flex;
  flex-direction:column;
  gap:5px;
  justify-content:center;
  align-items:center;
  padding:12px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  font-size:15px;
  line-height:25px;
  border-radius:10px;
}
.ux-service-benefit-container .ux-service-benefit h4 {
  color:var(--blackColor);
  font-size:17px;
  font-weight:700;
}
.ux-service-benefit-container .ux-service-benefit p {
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
}

.ux-service-benefit-container .ux-service-benefit img {
  width:35px;
}
.ux-service-benefit-container .ux-service-benefit:hover {
  box-shadow:var(--boxShadow);
}

.ux-solutions-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:800px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.ux-solutions-container .ux-solution {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:var(--grayColor);
  font-size:16px;
  line-height:28px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
  padding-left:10px;
  padding-bottom:10px;
}
.ux-solutions-container .ux-solution:hover {
  box-shadow:var(--boxShadow);
}
.ux-solution .ux-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
.ux-solution .ux-solution-illustration img {
  width:100%;
  height:100%;
}

.service-tech-stack {
  max-width:700px;
  width:100%;
  margin:40px auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  justify-content: center;
}
.service-tech-stack .stack-img {
  width:60px;
}
.service-tech-stack .stack-img:hover {
  transform:translateY(-5px);
  cursor:pointer;
}

@media (max-width:768px) {
.service-detail-intro-container {
  grid-template-columns:1fr;
}
.service-detail-intro {
  padding:0 20px;
}
.ux-service-benefit-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.ux-solutions-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.service-tech-stack .stack-img {
  width:40px;
}
}

@media (max-width:450px) {
.ux-service-benefit-container {
  grid-template-columns:1fr;
  gap:10px;
  width:100%;
}
.ux-solutions-container .ux-solution {
  font-size:14px;
  line-height:25px;
  padding-left:8px;
  padding-bottom:8px;
  text-align:center;
}
.ux-solution .ux-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
}

@media (max-width:340px) {
.ux-solutions-container {
  grid-template-columns:1fr;
}
}
/*---------E-commerce styling------------*/
.service-benefit-section, .e-commerce-solutions-section {
  background:var(--formgrayColor);
  padding:20px 0;
}
.e-comm-service-benefits-container {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  max-width:1200px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.e-comm-service-benefits-container .service-benefit {
  display:flex;
  flex-direction:column;
  gap:5px;
  justify-content:center;
  align-items:center;
  padding:15px;
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
}
.e-comm-service-benefits-container .service-benefit h4 {
  color:var(--blackColor);
  font-size:17px;
  font-weight:700;
}
.e-comm-service-benefits-container .service-benefit p {
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
}

.e-comm-service-benefits-container .service-benefit img {
  width:40px;
}
.e-comm-service-benefits-container .service-benefit:hover {
  box-shadow:var(--boxShadow);
}

.e-commerce-solutions-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:700px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.e-commerce-solutions-container .e-commerce-solution {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:var(--grayColor);
  font-size:16px;
  line-height:28px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
  padding:10px;
}
.e-commerce-solutions-container .e-commerce-solution:hover {
  box-shadow:var(--boxShadow);
}
.e-commerce-solution .e-commerce-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
.e-commerce-solution .e-commerce-solution-illustration img {
  width:100%;
  height:100%;
}

.service-tech-stack {
  max-width:700px;
  width:100%;
  margin:40px auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  justify-content: center;
}
.service-tech-stack .stack-img {
  width:60px;
}
.service-tech-stack .stack-img:hover {
  transform:translateY(-5px);
  cursor:pointer;
}

@media (max-width:768px) {
.service-detail-intro-container {
  grid-template-columns:1fr;
}
.service-detail-intro {
  padding:0 20px;
}
.e-comm-service-benefits-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.e-commerce-solutions-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.service-tech-stack .stack-img {
  width:40px;
}
}

@media (max-width:450px) {
.e-comm-service-benefits-container {
  grid-template-columns:1fr;
  gap:10px;
  width:100%;
}
.e-commerce-solutions-container .e-commerce-solution {
  font-size:14px;
  line-height:25px;
  padding-left:8px;
  padding-bottom:8px;
  text-align:center;
}
.e-commerce-solution .e-commerce-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
}

@media (max-width:340px) {
.e-commerce-solutions-container {
  grid-template-columns:1fr;
}
}

/*---------Digital Marketing styling------------*/
.service-benefit-section, .web-solutions-section {
    background:var(--formgrayColor);
    padding:20px 0;
  }
  .dm-service-benefits-container {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
    max-width:1100px;
    width:100%;
    margin:20px auto;
    justify-content:center;
    align-items:center;
  }
  .dm-service-benefits-container .service-benefit {
    display:flex;
    flex-direction:column;
    gap:5px;
    justify-content:center;
    align-items:center;
    padding:15px;
    color:var(--grayColor);
    font-size:15px;
    line-height:25px;
    background:linear-gradient(to right,#ffffff, #e7ebf0);
    box-shadow:var(--boxShadow2);
    border-radius:10px;
  }
  .dm-service-benefits-container .service-benefit h4 {
    color:var(--blackColor);
    font-size:17px;
    font-weight:700;
  }
  .dm-service-benefits-container .service-benefit p {
    color:var(--grayColor);
    font-size:15px;
    line-height:25px;
  }
 
  .dm-service-benefits-container .service-benefit img {
    width:40px;
  }
  .dm-service-benefits-container .service-benefit:hover {
    box-shadow:var(--boxShadow);
  }

  .web-solutions-container {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:700px;
    width:100%;
    margin:20px auto;
    justify-content:center;
    align-items:center;
  }
  .web-solutions-container .web-solution {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:var(--grayColor);
    font-size:16px;
    line-height:28px;
    background:linear-gradient(to right,#ffffff, #e7ebf0);
    box-shadow:var(--boxShadow2);
    border-radius:10px;
    padding-left:10px;
    padding-bottom:10px;
  }
  .web-solutions-container .web-solution:hover {
    box-shadow:var(--boxShadow);
  }
  .web-solution .web-solution-illustration {
    width:60px;
    height:60px;
    object-fit:contain;
  }
  .web-solution .web-solution-illustration img {
    width:100%;
    height:100%;
    border-radius:10px;
  }
  .payment-integration-tech-stack {
    width:100%;
    max-width:40vh;
    margin:0 auto;
  }
  .payment-integration-tech-stack img {
    width:100%;
  }
  @media (max-width:768px) {
  .service-detail-intro-container {
    grid-template-columns:1fr;
  }
  .service-detail-intro {
    padding:0 20px;
  }
  .dm-service-benefits-container {
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
    width:100%;
  }
  .web-solutions-container {
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
    width:100%;
  }
  }

  @media (max-width:450px) {
  .dm-service-benefits-container {
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
  }
  .web-solutions-container .web-solution {
    font-size:14px;
    line-height:25px;
    padding-left:8px;
    padding-bottom:8px;
    text-align:center;
  }
  .web-solution .web-solution-illustration {
    width:50px;
    height:50px;
    object-fit:contain;
  }
  }

  @media (max-width:340px) {
  .web-solutions-container {
    grid-template-columns:1fr;
  }
  }

/*---------END OF SERVICE DETAIL styling------------*/


/* Enquiry Popup -----------*/

.enquiry-form-popup {
  position:fixed;
  bottom:0;
  left:0;
  color:var(--whiteColor);
  background:var(--blackColor);
  padding:8px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  z-index:5000;
}
#modal-btn {
  cursor:pointer;
}
.form-modal {
  position: fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  display:flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background:rgba(0,0,0,0.4);
  transform:scale(0);
  transition:0.6s ease-in-out;
  padding:8px;
}
.form-modal.active {
  opacity: 1;
  z-index: 3000;
  transform:scale(1)
}

.popup-form-title {
  color:var(--blackColor);
  font-weight:800;
  font-size:25px;
  padding-bottom:15px;
  text-align: center;
}
#popup-form {
  position:relative;
}
#popup-form i {
  position:absolute;
  top:15px;
  right:20px;
  padding:5px 7px;
  background:var(--blackColor);
  color:var(--whiteColor);
  font-size:15px;
  border-radius:50%;
  cursor:pointer;
}
#popup-form i:hover {
  background:var(--redColor);
  color:var(--whiteColor);
}
@media (max-width:768px) {
  .popup-form-title {
    font-size:23px;
    text-align: left;
  }
  #popup-form i {
    top:10px;
    right:15px;
  }
  .enquiry-form-popup {
   display:none;
  }
}


/*Blogs list page styling */
.blogs-container {
  max-width: 1600px;
  margin: 20px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.all_blogs_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  margin-top: 20px;
}
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-card {
  background: white;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-3px);
}
.post-image-container {
  overflow: hidden;
  border-radius: 1px 1px 0 0;
  position: relative;
  height: 200px;
  width:100%;
}

.post-image-container .post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:0.3s linear;
}
.post-content {
  padding: 24px;
}

.post-tag {
  display: inline-block;
  padding:6px 10px;
  background: var(--formgrayColor);
  color: var(--orangeColor);
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 8px;
}

.post-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--blackColor);
  padding:10px 0;
  line-height:30px;
  position: relative;
}
.post-title::after {
  content: "";
  position: absolute;
  width: 10%;
  left:0;
  bottom:0;
  height: 1.8px;
  margin-bottom:10px;
  background: var(--orangeColor);
}
.post-title:hover::after {
  width:100%;
  transition: width 0.3s ease-in-out;
}
.post-excerpt {
  padding:10px 0;
  color: var(--grayColor);
  line-height: 1.6;
}
.blog-post-tags {
  margin-top:14px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post-meta {
  margin-top:15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #636e72;
  font-size: 14px;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border:1px solid #ccc;
  background:#f3f3f3;
  padding:2px;
  object-fit: cover;
}
/*Blogs Sidebar */
.blogs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 70px;
  height: fit-content;
}

.sidebar-section {
  background: white;
  border-radius: 5px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--orangeColor);
  border-radius: 50%;
}

.blogs-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blogs-search-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  font-size: 15px;
  outline: none;
}

.blogs-search-input:focus {
  border-color: var(--orangeColor);
}

.search-button {
  padding: 12px 20px;
  background: var(--orangeColor);
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
}

.search-button:hover {
  background: var(--orangeColor);
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.recent-post-item-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.related-blog-image {
  width: 60px;
  height: 60px;
  object-fit:contain;
}

.blogs_categories_list {
  max-height:200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.all_tags-list {
  display: flex;
  flex-wrap: wrap;
  gap:5px;
} 

.recent-post-item {
  text-decoration: none;
  padding-bottom:5px;
  color: var(--darkgrayColor);
  transition: color 0.1s ease;
  border-bottom: 1px solid rgba(204, 204, 204,0.5);
}
.recent-post-item span {
  margin-right:10px;
  font-size:25px;
  color: var(--orangeColor);
  transition: color 0.1s ease;
}
.recent-post-item:hover span {
  transform:translateX(-10px);
}
.recent-post-item:hover {
  color: var(--orangeColor);
}
.search_query_title {
  font-size:22px;
  font-weight:500;
  color:#232323;
  padding:10px 0;
}
.search_query_title>span {
  color:var(--orangeColor);
}
.search_results_count {
  font-size:17px;
  color:#232323;
  font-weight:400;
}
.search_results_count>span {
  color:#000000;
  font-weight:500;
}
.no_blogs_found {
  display:flex; 
  justify-content: center; 
  align-items: center; 
  min-height:50vh;
}
.no_blogs_found .no_blogs_text {
  color:#2d3436;
  font-size:18px;
}

@media (max-width: 768px) {
  .blogs-container {
    grid-template-columns: 1fr;
    padding:8px;
    padding-bottom:20px;
  }

  .post-image-container {
    height: 200px;
  }
  .post-content {
    padding: 10px;
  }
  
  .post-image-container .post-image {
   object-fit: cover;
  }
}


/*Blog detail page */
.blog-detail-section {
  max-width:1400px;
  margin:30px auto;
  width:100%;
  padding:30px;
  padding-top:20;
  margin-top:0;
  line-height:30px;
  color:#333;
  min-height:100vh;
}
.blog_details_grid {
  display:grid;
  grid-template-columns: 4fr 2fr;
  gap:30px;
  justify-content:center;
  padding-top:20px;
}
.blog-detail {
  line-height: 30px;
  padding:20px;
  color:#333;
}
.blog-detail .blog_detail_title {
  color: var(--blackColor);
  font-size: 23px;
  padding: 15px 0;
  font-weight:600;
  line-height: 30px;
  position: relative;
  transition:all 0.4s linear;
}
.blog-detail .blog_detail_title::after {
  position: absolute;
  content: "";
  height: 2px;
  width:30%;
  left:0;
  bottom: 0;
  background-color: var(--orangeColor);
  border-radius: 25px;
  transition:all 0.4s linear;
}
.blog-detail .blog_detail_title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--orangeColor);
  border-radius: 50%;
  left:0;
  top:50%;
  margin-right:6px;
  transform: translateY(-50%);
}
.blog-detail .blog_detail_title:hover::after{
  width:100%;
}
.post-meta .dot {
  color: var(--orangeColor);
  font-size: 16px;
}

.blog-cover-image-container {
  display:flex;
  justify-content:center;
  align-items: center;
  width: 100%;
  height: 400px;
  padding:10px 0;
}
.blog-cover-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:5px;
}

.blog-content img {
 width:100%;
 height:auto;
 object-fit: cover;
}
  .comments_container h4 {
    text-align: left;
    font-size:20px;
    font-weight:500;
    color:#000000;
    padding:15px 0;
  }
  .comments_container .blog-comment {
    display:flex;
    flex-direction: column;
    gap:4px;
    color:#000000;
    padding-bottom:8px;
    border-bottom:1px solid #f3f3f3;
  }
  .comments_container .no-blog-comments-container {
    display:flex;
    justify-content: center;
    align-items: center;
    color:#313030;
  }
  .blog_comment_form .form-group {
    display:flex;
    gap:10px;
    }
  .blog_comment_form input {
    width:100%;
    border:1px solid #ccc;
    background:#ffffff;
    padding:12px;
    color:#2d3436;
    font-size:16px;
    margin:10px 0;
    border-radius:8px;
  }
  .blog_comment_form textarea {
    width:100%;
    border-radius:8px;
    border:1px solid #ccc;
    background:#ffffff;
    padding:12px;
    color:#2d3436;
    font-size:16px;
    margin:10px 0;
    resize: vertical;
    height:100px;
  }
  .blog_comment_form input::placeholder,
  .blog_comment_form textarea::placeholder {
    color:#2d3436;
  }
  .blog_comment_form input:focus,
  .blog_comment_form textarea:focus {
    border:1px solid var(--orangeColor);
  }
  .blog_comment_form .blog_comment_btn {
    width:30%;
    border:1px solid #ccc;
    background:var(--orangeColor);
    color:#ffffff;
    padding:14px 20px;
    font-size:15px;
    border-radius:5px;
  }
  .blog_comment_form .blog_comment_btn:hover {
    border:1px solid var(--orangeColor);
    background:#ffffff;
    color:var(--orangeColor);
    cursor: pointer;
  }
@media (max-width:600px) {
  .blog_comment_form .blog_comment_btn {
    width:100%;
  }
}
@media (max-width:430px) {
  .blog-cover-image-container {
    margin-top:20px;
    height: 200px;
    padding:0;
  }
  .blog-cover-image-container img {
   border-radius:2px;
  }
}
@media screen and (max-width:768px) {
  .blog_details_grid {
    grid-template-columns: 1fr;
}
.blog-detail-section {
    padding:8px;
    padding-top:30;
}
.blog-detail {
    padding:10px;
}
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Grid and Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 0 1rem;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1rem 1.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(245, 130, 32, 0.05) 0%,
    rgba(0, 80, 157, 0.05) 50%,
    rgba(245, 130, 32, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #F58220, #00509d, #F58220);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 12px 24px -6px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(245, 130, 32, 0.3);
}

.card-content {
  position: relative;
  z-index: 1;
}

.icon-wrapper {
  position: relative;
  width: 55px;
  height: 55px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.icon-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F58220, #00509d);
  border-radius: 16px;
  opacity: 0.1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
}

.service-card:hover .icon-background {
  transform: scale(1.2) rotate(8deg);
  opacity: 0.15;
}

.service-card:hover .solution-icon {
  color: #00509d;
  transform: scale(1.1) rotate(-5deg);
}

.service-title {
  color: #000000;
  color: #1982c4;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.service-description {
  color: #585757;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.8;
  transform: translateY(0.5rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.service-card:hover .card-footer {
  opacity: 1;
  transform: translateY(0);
}

.learn-more {
  font-weight: 600;
  color: #F58220;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #00509d;
}

.arrow-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #F58220;
}

.service-card:hover .arrow-icon {
  transform: translateX(0.5rem) scale(1.1);
  color: #00509d;
}

.card-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.08;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #F58220, #00509d);
}

.shape-1 {
  width: 120px;
  height: 120px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -60px;
  right: -60px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 100px;
  height: 100px;
  border-radius: 30% 30% 70% 70% / 30% 30% 70% 70%;
  bottom: -50px;
  left: -50px;
  animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
  width: 80px;
  height: 80px;
  border-radius: 50% 20% 80% 40% / 25% 80% 20% 75%;
  top: 50%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
  animation-delay: 2s;
}

.service-card:hover .shape-1 {
  transform: scale(1.3) rotate(45deg);
  opacity: 0.12;
}

.service-card:hover .shape-2 {
  transform: scale(1.3) rotate(-45deg);
  opacity: 0.12;
}

.service-card:hover .shape-3 {
  transform: scale(1.2) rotate(90deg);
  opacity: 0.12;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(120deg);
  }
  66% {
    transform: translateY(5px) rotate(240deg);
  }
}

/* Service card variants for different services */
.service-card.pos-system {
  border-left: 4px solid #F58220;
}

.service-card.erp-software {
  border-left: 4px solid #00509d;
}

.service-card.custom-apps {
  border-left: 4px solid #28a745;
}

.service-card.web-platforms {
  border-left: 4px solid #17a2b8;
}

.service-card.payment-integration {
  border-left: 4px solid #ffc107;
}

.service-card.ai-products {
  border-left: 4px solid #dc3545;
}

/* Responsive Design for Service Cards */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-title {
    font-size: 1.5rem;
  }
  
  .icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .solution-icon {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .services-container {
    padding: 2rem 1rem;
  }
  
  .services-grid {
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
}