@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: all .2s linear;
    text-decoration: none;
}

html{
    font-size: 62.5%;
}

body{
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Prevent horizontal overflow on mobile */
@media (max-width: 768px) {
  body, html {
    overflow-x: hidden !important;
    max-width: 100% !important;
    position: relative;
  }
  
  .container, .row, .col, [class*="col-"] {
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  
  /* Center all content on mobile */
  .container {
    padding: 0 15px !important;
    margin: 0 auto !important;
  }
  
  .row {
    margin: 0 auto !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  /* Service cards mobile alignment */
  .pt-5 .container .row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }
  
  .pt-5 .container .row .col-lg-4,
  .pt-5 .container .row .col-sm-6 {
    width: 90% !important;
    max-width: 350px !important;
    margin: 0 auto 2rem auto !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  /* Ensure burger menu works on all pages */
  .burger-menu {
    display: flex !important;
    z-index: 1002 !important;
    position: relative !important;
  }
  
  .header .navbar {
    z-index: 1001 !important;
  }
  
  /* Fix header positioning on mobile */
  .header {
    overflow: visible !important;
    max-width: 100% !important;
  }
}

.heading, .clients .section-header h2, .section-head h1, .testimonials .section-header h2, .section-head-1 h4{
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: #002e5f;
    position: relative;
    letter-spacing: .2rem;
}

.heading::before, .heading::after, .clients .section-header h2::before, .clients .section-header h2::after, .section-head h1::before, .section-head h1::after, .testimonials .section-header h2::before, .testimonials .section-header h2::after, .section-head-1 h4::before, .section-head-1 h4::after{
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: .4rem solid #002e5f;
    border-left: .4rem solid #002e5f;
}

.faq .heading::before, .faq .heading::after{
    border-top: .4rem solid #00bfff;
    border-left: .4rem solid #00bfff;
}

.heading::before, .clients .section-header h2::before, .section-head h1::before, .testimonials .section-header h2::before, .section-head-1 h4::before{
    top: 5.8rem;
    left: -2rem;
}

.heading::after, .clients .section-header h2::after, .section-head h1::after, .testimonials .section-header h2::after, .section-head-1 h4::after{
    bottom: -.5rem;
    right: -2rem;
    transform: rotate(180deg);
}

.row .btn{
    outline: none;
    border: none;
    border-radius: 3rem;
    background: white;
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    padding: 1.2rem 2.5rem;
    min-width: auto;
    white-space: nowrap;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
    transition: all 0.3s ease;
}

.communicate .btn{
    outline: none;
    border: none;
    border-radius: 3rem;
    background: white;
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    padding: 1.2rem 2.5rem;
    min-width: auto;
    white-space: nowrap;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
    transition: all 0.3s ease;
}

.row .btn:hover{
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #002e5f;
}

.communicate .btn:hover{
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #00bfff;
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.2rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 46, 95, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 46, 95, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 46, 95, 0.95);
    padding: 0.8rem 3rem;
    box-shadow: 0 4px 30px rgba(0, 46, 95, 0.2);
}

.header .logo{
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.header .logo:hover{
    transform: scale(1.05);
}

.header .logo img{
    height: 80px;
    width: 90px;
    filter: brightness(1.1);
    transition: all 0.3s ease;
    object-fit: contain;
}

.header.scrolled .logo img{
    height: 70px;
    width: 80px;
}

.header .navbar ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}

.header .navbar ul li{
    margin: 0 2rem;
    position: relative;
}

.header .navbar ul li a{
    font-size: 1.8rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.header .navbar ul li a::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00bfff, #0099cc);
    transition: width 0.3s ease;
}

.header .navbar ul li a:hover{
    color: #00bfff;
    text-decoration: none;
    transform: translateY(-2px);
}

.header .navbar ul li a:hover::before{
    width: 100%;
}

.header .navbar ul li a.active{
    color: #00bfff;
}

.header .navbar ul li a.active::before{
    width: 100%;
}

.header .logo i{
    padding: 0.5rem;
}

.header .fa-bars{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    display: none;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Burger Menu Animation */
.burger-menu {
    display: none; /* Hidden by default, shown on mobile */
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    padding: 10px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Show burger menu on mobile */
@media (max-width: 768px) {
    .burger-menu {
        display: flex !important;
        position: relative !important;
        z-index: 1002 !important;
        margin-right: 1rem;
    }
    
    .header {
        position: fixed !important;
        z-index: 1000;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

.burger-line {
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    opacity: 1;
    visibility: visible;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.home{
    min-height: 100vh;
    background: url(../images/microsoft1.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 12rem 1rem 0 1rem;
}

.home h1{
    font-size: 5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.6), -1px -1px 2px rgba(0,0,0,0.4);
    font-weight: 700;
}

.home h2{
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.6), -1px -1px 2px rgba(0,0,0,0.4);
}

.cta-button {
    display: inline-block;
    background: #00bfff;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
    white-space: nowrap;
    text-align: center;
}

.cta-button:hover {
    background: #0099cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
    text-decoration: none;
    color: white;
}

.home .wave{
    position: absolute;
    bottom: -.5rem;
    left: 0;
    height: 11rem;
    width: 100%;
    background: url(../images/wave.png);
    background-size: 100rem 11rem;
    animation: waves 8s linear infinite;
    background-repeat: repeat-x;
}

.home .wave2{
    animation-direction: reverse;
    animation-duration: 6s;
    opacity: .3;
}

.home .wave3{
    animation-duration: 4s;
    opacity: .5;
}

@keyframes waves{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 100rem;
    }
}

.about{
    min-height: 55vh;
    width: 100%;
    top: -3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 10rem;
}

.about .row{
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
}

.about .row .content{
    text-align: center;
}

.about .row .content h3{
    font-size: 3rem;
    color: black;
}

.about .row .content p{
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}
.pt-5 .container .row .section-head p{
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}
  .section-head{
    margin-bottom: 60px;
    text-align: center;
    margin-top: -8rem;
  }
  .section-head p{
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  .item{
    background:#fff;
    text-align: center;
    padding:25px 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    margin-top: -2rem;
    border:5px solid rgba(0,0,0,0.07);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
  }
  .item:hover{
    background:#c8d8e4;
    box-shadow: 0 8px 20px 0 rgba(0,0,0,0.2);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover .item,
  .item:hover span.icon{
    background:#fff;
    border-radius: 10px;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item h6{
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 15px;
      flex-shrink: 0;
  }
  .item:hover h6,
  .item:hover p{
    color:#2b6777;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item .icon{
    font-size: 5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
    width: 12rem;
    height: 12rem;
    line-height: 12rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  .item .feature_box_col_one,
  .item .feature_box_col_two,
  .item .feature_box_col_three,
  .item .feature_box_col_four,
  .item .feature_box_col_five,
  .item .feature_box_col_six{
    background: #ffffff;
    color:#1e3c72;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  .item p{
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    color: #555;
    flex-grow: 1;
    margin-bottom: 15px;
  }
  .item h6{
    margin-bottom: 20px;
    color:#2f2f2f;
  }

  /* Equal height cards */
  .pt-5 .container .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  
  .pt-5 .container .row .col-lg-4,
  .pt-5 .container .row .col-sm-6 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }
  
  .item .icon {
    flex-shrink: 0;
  }
  
  .item a {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: auto;
  }

/* Client logos styling */
.client-item img {
    height: 70px !important;
    width: 120px !important;
    object-fit: contain !important;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px !important;
    margin: 0 auto !important;
    display: block !important;
    flex-shrink: 0;
    box-sizing: border-box !important;
}

.client-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
    background: rgba(255,255,255,0.2);
}

.client-item {
    text-align: center;
    padding: 20px 10px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 140px;
    min-width: 140px;
    max-width: 180px;
    box-sizing: border-box;
}

.client-item p {
    color: #666 !important;
    font-size: 11px !important;
    margin-top: 10px !important;
    font-weight: 500;
    width: 100% !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.2 !important;
}

.counters {
	background-image: url(../images/img2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
	color: #fff;
	padding: 40px 20px;
}

.counters .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 30px;
	text-align: center;
}

.counters i {
	color: #fff;
	margin-bottom: 5px;
}

.counters .counter {
	font-size: 45px;
	margin: 10px 0;
}

@media (max-width: 700px) {
	.counters .container {
		grid-template-columns: repeat(2, 1fr);
	}

	.counters .container > div:nth-of-type(1),
	.counters .container > div:nth-of-type(2) {
		border-bottom: 1px lightskyblue solid;
		padding-bottom: 20px;
	}
}

.section-head-1{
    margin-bottom: 60px;
    background-size: 200%;
    background-position: left;

  }
  .section-head-1 p{
    color:#333;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  .item{
    background:#fff;
    text-align: center;
    padding:30px 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.07);
    -webkit-transition:all 0.7s ease 0s;
    transition:all 0.7 ease 0s;
    
  }
  .item:hover{
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    -webkit-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
  }
  .item:hover .item,
  .item:hover span.icon{
    background:#fff;
    border-radius: 10px;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover h6,
  .item:hover p{
    color:#2b6777;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item .icon{
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #1e3c72;
    width: 10rem;
    height: 10rem;
    line-height: 10rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  .item .feature_box_col_one,
  .item .feature_box_col_two,
  .item .feature_box_col_three,
  .item .feature_box_col_four,
  .item .feature_box_col_five,
  .item .feature_box_col_six{
    background: #ffffff;
    color:#1e3c72;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  .item p{
    font-size: 1.7rem;
    line-height: 1.8;
    font-weight: 400;
    color: #555;
    font-family: "Varela Round",Arial,"Helvetica Neue",Helvetica,sans-serif;
    line-height: 26px;
  }
  .item h6{
    margin-bottom: 20px;
    font-family: "Varela Round",Arial,"Helvetica Neue",Helvetica,sans-serif;
    color:#2f2f2f;
  }

.communicate{
    text-align: center;
    align-items: center;
    background-image: url(../images/img3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 35vh;
    padding: 40px 20px;
}  

.communicate h3{
    margin-top: 3rem;
    font-size: 3rem;
}

.communicate p{
    font-size: 2rem;
}

.testimonials {
    position: relative;
    padding: 90px 0 60px 0;
    background: #f2f2f2;
}

.testimonials .testimonial-item {
    position: relative;
    margin: 0 15px 30px 15px;
    background: #ffffff;
}

.testimonials .testimonial-img {
    position: relative;
    background: #000000;
    overflow: hidden;
}

.testimonials .testimonial-text {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
}

.testimonials .testimonial-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials .testimonial-text h4 {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.testimonials .testimonial-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dddddd;
}

.testimonials .owl-dot.active {
    background-color: #4F84C4;
}

@media (max-width: 575px) {
    .testimonials .testimonial-text {
        padding: 25px;
    }
}

.clients {
    position: relative;
    padding: 90px 0;
    text-align: center;
    margin-top: -10rem;
    margin-bottom: -10rem;
}

.clients .section-header p {
    padding-bottom: 10px;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}

.clients img {
    max-width: 100%;
    opacity: 1;
    transition: 0.3s;
    padding: 15px 0;
}

/* Override for client-item specifically */
.clients .client-item img {
    height: 70px !important;
    width: 120px !important;
    object-fit: contain !important;
    padding: 8px !important;
    box-sizing: border-box !important;
}

/* Force vertical layout for owl carousel client items */
.owl-carousel .client-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-width: 140px !important;
    max-width: 180px !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
}

.owl-carousel .client-item img {
    display: block !important;
    height: 70px !important;
    width: 120px !important;
    object-fit: contain !important;
    margin: 0 auto 10px auto !important;
    padding: 8px !important;
    box-sizing: border-box !important;
}

.owl-carousel .client-item p {
    margin: 0 !important;
    margin-top: 10px !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 11px !important;
    color: #666 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.2 !important;
}

/* Mobile responsive for client items */
@media (max-width: 768px) {
    .client-item {
        min-height: 120px !important;
        padding: 15px 5px !important;
        min-width: 120px !important;
        max-width: 160px !important;
        box-sizing: border-box !important;
    }
    
    .owl-carousel .client-item {
        min-width: 120px !important;
        max-width: 160px !important;
        padding: 15px 8px !important;
        box-sizing: border-box !important;
    }
    
    .owl-carousel .client-item img {
        height: 55px !important;
        width: 100px !important;
        object-fit: contain !important;
        padding: 6px !important;
        box-sizing: border-box !important;
    }
    
    .owl-carousel .client-item p {
        font-size: 10px !important;
        margin-top: 8px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Fix carousel overflow on mobile */
    .owl-carousel, .owl-stage-outer, .owl-stage {
        overflow: hidden !important;
        max-width: 100% !important;
    }
    
    .clients {
        overflow: hidden !important;
        max-width: 100% !important;
    }
    
    .clients .container {
        overflow: hidden !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
}

.clients img:hover {
    opacity: .5;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.clients .owl-dot.active {
    background-color: #4F84C4;
}    

.team{
    width: 100%;
    min-height: 95vh;
    text-align: center;
    background-color: #222;
}

.team .heading{
    color: #00bfff;
}

.team .heading::before, .team .heading::after{
    border-color: #00bfff;
}

.team .row{
    display: inline-block;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.team .row .card{
    height: 35rem;
    width: 25rem;
    background-color: #fff;
    text-align: center;
    margin: 5rem 5rem;
    position: relative;
    overflow: hidden;
    -webkit-box-reflect: below 5px linear-gradient(transparent 70%, #0004);
    transition: 0.5s;
}

.team .row .card:hover{
    transform: translateY(-10px);
    cursor: pointer;
}


.team .row .card .image{
    margin: 1rem 0;
    padding-top: 4rem;
}

.team .row .card .image img{
    height: 13rem;
    width: 13rem;
    border-radius: 50%;
    border: .5rem solid #fff;
    box-shadow: 0 0 .5rem rgba(0,0,0,.3);
    object-fit: cover;
}

.team .row .card .info h3{
    font-size: 2rem;
    color: #333;
}

.team .row .card .info span{
    font-size: 1.8rem;
    color: #00bfff;
}

.team .row .card .info .icons a{
    margin-top: 4rem;
    padding-top: 0 1rem;
    font-size: 2rem;
    color: #333;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.team .row .card .info .icons .fa-facebook-f:hover, .footer .icons .fa-facebook-f:hover{
    color: #4267B2;
    text-decoration: none;
}

.team .row .card .info .icons .fa-twitter:hover, .footer .icons .fa-twitter:hover{
    color: #1DA1F2;
    text-decoration: none;
}

.team .row .card .info .icons .fa-instagram:hover, .footer .icons .fa-instagram:hover{
    color: #C13584;
    text-decoration: none;
}

.team .row .card .info .icons .fa-linkedin:hover, .footer .icons .fa-linkedin:hover{
    color: #2867B2;
    text-decoration: none;
}

.team .row .card::before, .team .row .card::after{
    content: '';
    position: absolute;
    border-radius: 50%;
    height: 13.5rem;
    width: 13.5rem;
    z-index: -1;
}

.team .row .card::before{
    background: #00bfff;
    top: -3rem;
    right: -4rem;
}

.team .row .card::after{
    background: #ccc;
    bottom: -3rem;
    left: -4rem;
}

.contact{
    text-align: center;
    align-items: center;
}

.contact .heading{
    margin-bottom: 5rem;
}

.contact-in
		{
			width: 80%;
			height: auto;
			margin: auto auto 5rem auto;
			display: flex;
			flex-wrap: wrap;
			padding: 10px;
			border-radius: 10px;
			background: #fff;
			box-shadow: 0px 0px 10px 0px #666;
		}

		.contact-map
		{
			width: 100%;
			height: auto;
			flex: 50%;
		}
		.contact-map iframe
		{
			width: 100%;
			height: 100%;
		}
		.contact-form
		{
			width: 100%;
			height: auto;
			flex: 50%;
			text-align: left;
		}
		.contact-form-txt
		{
            margin-left: 2rem;
			width: 95%;
			height: 40px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
        .contact-form-email
		{
            margin-left: 2rem;
			width: 95%;
			height: 40px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
		.contact-form-txt::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}
        .contact-form-email::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}
		.contact-form-txtarea
		{
            margin-left: 2rem;
			width: 95%;
			height: 130px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 10px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
			font-family: 'Poppins', sans-serif;
		}
		.contact-form-txtarea::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}

		.contact-form-btn
		{
            margin-left: 2rem;
            outline: none;
            border: none;
            border-radius: 5rem;
            background: white;
            border-style: groove;
            border-color: #002e5f;
            font-size: 1.5rem;
            cursor: pointer;
            height: 3.5rem;
            width: 15rem;
            box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
		}
        .contact-form-btn:hover{
            letter-spacing: .1rem;
            opacity: .9;
            color: white;
            background: #002e5f;
        }
		.contact-form-phone
		{
            margin-left: 2rem;
			width: 95%;
			height: 40px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
		.contact-form-phone::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}

        .footer {
            position: relative;
            padding: 0 0 30px 0;
            background: #333;
        }
        
        .footer .footer-top {
            background: #002e5f;
            padding: 60px 0 30px 0;
        }
        
        .footer .footer-top .footer-info,
        .footer .footer-top .footer-links,
        .footer .footer-top .footer-contact,
        .footer .footer-top .footer-newsletter {
            margin-bottom: 30px;
        }
        
        .footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #ffffff;
            color: #00bfff;
            line-height: 1;
            padding: 9px 0;
            margin-right: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }
        
        .footer .footer-top .social-links a:hover {
            background: #00bfff;
            color: #ffffff;
        }
        
        .footer .footer-top h4 {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .footer .footer-top h4::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 0;
            width: 50px;
            border-bottom: 2px solid #ffffff;
        }
        
        .footer .footer-top .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer .footer-top .footer-links ul i {
            padding-right: 8px;
            color: #ffffff;
            font-size: 16px;
        }
        
        .footer .footer-top .footer-links ul li {
            border-bottom: 1px solid #ffffff;
            padding: 7px 0;
        }
        
        .footer .footer-top .footer-links ul li:first-child {
            padding-top: 0;
        }
        
        .footer .footer-top .footer-links ul a {
            font-size: 14px;
            color: #ffffff;
        }
        
        .footer .footer-top .footer-links ul a:hover {
            color: #00bfff;
        }
        
        .footer .footer-top .footer-contact p {
            color: #ffffff;
            line-height: 26px;
        }
        
        .footer .footer-top .footer-newsletter input[type="email"] {
            padding: 6px 8px;
            width: 60%;
            border: 1px solid #ffffff;
            background: transparent;
            color: #ffffff;
        }
        
        .footer .footer-top .footer-newsletter input[type="submit"] {
            border: 0;
            width: 40%;
            padding: 6px 0;
            text-align: center;
            color: black;
            border: 1px solid #ffffff;
            background: #ffffff;
            transition: 0.3s;
            cursor: pointer;
        }
        
        .footer .footer-top .footer-newsletter input[type="submit"]:hover {
            color: #ffffff;
            background: #00bfff;
            border: 1px solid #00bfff;
            letter-spacing: .2rem;
        }
        
        .footer .footer-top .footer-newsletter p {
            color: #ffffff;
            font-size: 14px;
        }
        
        .footer .credit,
        .footer .copyright {
            text-align: center;
            padding-top: 30px;
        }
        
        @media (min-width: 768px) {
            .footer .credit {
                text-align: right;
            }
            
            .footer .copyright {
                text-align: left;
            }
        }

        .back-to-top {
            position: fixed;
            display: none;
            background-color: #00bfff;
            color: #ffffff;
            width: 45px;
            height: 45px;
            text-align: center;
            line-height: 1;
            font-size: 44px;
            right: 15px;
            bottom: 15px;
            transition: background 0.3s;
            z-index: 9;
        }
        
        .back-to-top i {
            color: #ffffff;
        }

        .back-to-top i:hover {
            color: black;
        }

        /* Modern FAQ Section */
        .faq{
            min-height: auto;
            padding: 8rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            text-align: center;
        }
        
        .faq .heading{
            color: #002e5f;
            margin-bottom: 5rem;
        }
        
        .faq .row{
            display: flex;
            justify-content: center;
            padding: 0;
        }
        
        .faq .row .accordion-container{
            max-width: 900px;
            width: 100%;
            text-align: left;
        }

        .faq .row .accordion{
            margin-bottom: 2rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            background: white;
            transition: all 0.3s ease;
        }

        .faq .row .accordion:hover{
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }
        
        .faq .row .accordion-container .accordion .accordion-header{
            background: linear-gradient(135deg, #002e5f 0%, #003d7a 100%);
            margin: 0;
            box-shadow: none;
            cursor: pointer;
            padding: 2.5rem 3rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: none;
        }

        .faq .row .accordion-container .accordion .accordion-header:hover{
            background: linear-gradient(135deg, #003d7a 0%, #004a94 100%);
        }
        
        .faq .row .accordion-container .accordion .accordion-header span{
            display: flex;
            align-items: center;
            justify-content: center;
            height: 4rem;
            width: 4rem;
            line-height: 1;
            font-size: 2.5rem;
            background: rgba(255,255,255,0.2);
            color: #fff;
            border-radius: 50%;
            font-weight: 300;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 2rem;
        }

        .faq .row .accordion-container .accordion .accordion-header.active span{
            background: #00bfff;
            transform: rotate(45deg);
        }
        
        .faq .row .accordion-container .accordion .accordion-header h3{
            color: white;
            font-weight: 600;
            font-size: 2rem;
            line-height: 1.4;
            margin: 0;
            flex-grow: 1;
            padding-right: 2rem;
        }
        
        .faq .row .accordion-container .accordion .accordion-body{
            padding: 3rem;
            color: #555;
            background-color: #fff;
            font-size: 1.6rem;
            line-height: 1.8;
            display: none;
            border-top: 1px solid #eee;
        }

        .faq .row .accordion-container .accordion .accordion-body p{
            margin: 0;
            color: #666;
        }
        
/* FAQ Mobile Responsive */
@media (max-width: 768px){
    .faq{
        padding: 6rem 1rem;
    }

    .faq .row .accordion-container .accordion .accordion-header{
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .faq .row .accordion-container .accordion .accordion-header h3{
        font-size: 1.8rem;
        padding-right: 0;
        order: 1;
    }

    .faq .row .accordion-container .accordion .accordion-header span{
        margin-left: 0;
        order: 2;
    }

    .faq .row .accordion-container .accordion .accordion-body{
        padding: 2rem;
        font-size: 1.5rem;
    }
}

/* Modern Service Pages Design */
.service-hero {
    background: linear-gradient(135deg, rgba(0,46,95,.9) 0%, rgba(0,191,255,.9) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/img1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.service-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.service-hero p {
    font-size: 2.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.service-overview {
    padding: 10rem 2rem;
    background: #fff;
}

.service-overview .heading {
    font-size: 3.5rem;
    color: #002e5f;
    margin-bottom: 3rem;
}

.service-overview p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 4rem;
}

.service-overview h3 {
    font-size: 2.8rem;
    color: #002e5f;
    margin-bottom: 3rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

.feature-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,46,95,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,46,95,0.15);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.feature-item:hover i {
    transform: scale(1.1);
    color: #0099cc;
}

.feature-item i {
    font-size: 6rem;
    color: #00bfff;
    margin-bottom: 2.5rem;
    display: block;
    transition: all 0.3s ease;
}

.feature-item h4 {
    font-size: 2.4rem;
    color: #002e5f;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-item p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.service-sidebar {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,46,95,0.1);
    margin-bottom: 4rem;
    border: 1px solid rgba(0,46,95,0.05);
}

.service-sidebar h3 {
    font-size: 2.5rem;
    color: #002e5f;
    margin-bottom: 3rem;
    font-weight: 600;
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar li {
    margin-bottom: 2rem;
}

.service-sidebar a {
    color: #666;
    text-decoration: none;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-sidebar a:hover {
    background: rgba(0,191,255,0.1);
    color: #002e5f;
    transform: translateX(5px);
}

.service-sidebar a i {
    color: #00bfff;
    margin-right: 1.5rem;
    font-size: 1.8rem;
}

.cta-box {
    background: linear-gradient(135deg, #002e5f 0%, #00bfff 100%);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,46,95,0.2);
}

.cta-box h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-box p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-box a {
    background: white;
    color: #002e5f;
    padding: 1.5rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-box a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
    color: #002e5f;
    text-decoration: none;
}

.implementation-process {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10rem 2rem;
}

.implementation-process .heading {
    text-align: center;
    margin-bottom: 6rem;
    color: #002e5f;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.step {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,46,95,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,46,95,0.05);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,46,95,0.15);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,191,255,0.3);
}

.step h4 {
    font-size: 2.3rem;
    color: #002e5f;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.step p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.related-services {
    padding: 10rem 2rem;
    background: #fff;
}

.related-services .row {
    display: flex;
    align-items: stretch;
}

.related-services .col-lg-4,
.related-services .col-md-6 {
    display: flex;
    margin-bottom: 4rem;
}

.related-services .heading {
    text-align: center;
    margin-bottom: 6rem;
    color: #002e5f;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,46,95,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,46,95,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,46,95,0.15);
}

.service-card-image {
    height: 250px;
    background: linear-gradient(135deg, rgba(0,46,95,.9) 0%, rgba(0,191,255,.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/img2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.service-card-image i {
    font-size: 7rem;
    color: white;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.service-card-content {
    padding: 3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card h4 {
    font-size: 2.5rem;
    color: #002e5f;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.service-card a {
    color: #00bfff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.service-card a:hover {
    color: #002e5f;
    text-decoration: none;
}

.service-card a i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card a:hover i {
    transform: translateX(5px);
}

/* Benefits Section Styling */
.benefits-section {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-section .row {
    display: flex;
    align-items: stretch;
}

.benefits-section .col-md-6 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 6rem;
    color: #002e5f;
    font-size: 3.5rem;
    font-weight: 600;
}

.benefit-item {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,46,95,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,46,95,0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,46,95,0.15);
}

.benefit-item i {
    font-size: 6rem;
    color: #00bfff;
    margin-bottom: 2.5rem;
    display: block;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1);
    color: #0099cc;
}

.benefit-item h4 {
    font-size: 2.4rem;
    color: #002e5f;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Fix old service card styling */
.related-services .service-card i {
    font-size: 7rem;
    color: #00bfff;
    margin-bottom: 2rem;
    display: block;
    transition: all 0.3s ease;
}

.related-services .service-card:hover i {
    transform: scale(1.1);
    color: #0099cc;
}

/* Service Pages Mobile Responsive */
@media (max-width: 768px) {
    /* Mobile Navigation Fix */
    .header .navbar {
        display: none !important;
    }
    
    .header .navbar.nav-toggle {
        display: block !important;
        top: 6.5rem;
    }
    

    
    .service-hero h1 {
        font-size: 3rem;
    }
    
    .service-hero p {
        font-size: 1.8rem;
    }
    
    .service-overview {
        padding: 6rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2.5rem 2rem;
    }
    
    .feature-item i {
        font-size: 5rem;
    }
    
    .feature-item h4 {
        font-size: 2.1rem;
    }
    
    .feature-item p {
        font-size: 1.6rem;
    }
    
    .service-sidebar {
        padding: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .implementation-process {
        padding: 6rem 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .step h4 {
        font-size: 2rem;
    }
    
    .step p {
        font-size: 1.6rem;
    }
    
    .related-services {
        padding: 6rem 1rem;
    }
    
    .related-services .row {
        flex-direction: column;
    }
    
    .related-services .col-lg-4,
    .related-services .col-md-6 {
        margin-bottom: 3rem;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .service-card h4 {
        font-size: 2.2rem;
    }
    
    .service-card p {
        font-size: 1.6rem;
    }
    
    .service-card-image i {
        font-size: 6rem;
    }
    
    /* Home page mobile improvements */
    .item .icon {
        width: 8rem;
        height: 8rem;
        line-height: 8rem;
        font-size: 3rem;
    }
    
    .item h6 {
        font-size: 1.8rem;
    }
    
    .item p {
        font-size: 1.4rem;
    }
    
    .item {
        min-height: 320px;
        padding: 25px 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border-radius: 10px;
        background: #fff;
    }
    }
    
    .cta-button {
        font-size: 1.6rem;
        padding: 1.3rem 2.5rem;
    }
    
    .row .btn, .communicate .btn {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
    
    /* Benefits section mobile */
    .benefits-section {
        padding: 6rem 1rem;
    }
    
    .benefits-section h2 {
        font-size: 2.8rem;
        margin-bottom: 4rem;
    }
    
    .benefits-section .row {
        flex-direction: column;
    }
    
    .benefits-section .col-md-6 {
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 3rem 2rem;
        justify-content: flex-start;
    }
    
    .benefit-item i {
        font-size: 5rem;
    }
    
    .benefit-item h4 {
        font-size: 2.1rem;
    }
    
    .benefit-item p {
        font-size: 1.6rem;
    }
    
    /* Related services old style mobile fix */
    .related-services .service-card i {
        font-size: 6rem;
    }
}

@media (max-width: 1000px){
    html{
        font-size: 50%;
    }

    .header{
        padding: 0.2rem 2rem;
    }

    .header.scrolled{
        padding: 0.1rem 2rem;
    }

    .header .logo img{
        height: 70px;
        width: 80px;
        object-fit: contain;
    }

    .header.scrolled .logo img{
        height: 60px;
        width: 70px;
    }

    .header .fa-bars{
        display: none;
    }

    .burger-menu{
        display: flex !important;
        margin-right: 1rem;
        z-index: 1002;
        position: relative;
    }

    .burger-menu:hover .burger-line{
        background: #00bfff;
    }

    /* Hide desktop navbar on mobile */
    .header .navbar{
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background: rgba(0, 46, 95, 0.98);
        backdrop-filter: blur(15px);
        z-index: 1001;
        transition: all 0.5s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        /* Override desktop flex display */
        display: block !important;
    }

    /* Hide desktop navbar ul layout */
    .header .navbar ul{
        display: none;
    }

    .header .navbar.nav-toggle{
        top: 6.5rem;
    }

    /* Show mobile navbar ul when toggled */
    .header .navbar.nav-toggle ul{
        display: flex;
        height: 100%;
        width: 100%;
        flex-flow: column;
        padding: 2rem 0;
    }

    .header .navbar.nav-toggle ul li{
        margin: 2rem 0;
    }

    .header .navbar.nav-toggle ul li a{
        color: white;
        font-size: 2.4rem;
        font-weight: 500;
    }

    .header .navbar.nav-toggle ul li a:hover{
        color: #00bfff;
        transform: scale(1.05);
    }

    .header .fa-times{
        transform: rotate(180deg);
    }

    .home h1{
        color: #fff;
        font-size: 4rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.6), -1px -1px 2px rgba(0,0,0,0.4);
        font-weight: 700;
    }
    
    .home h2{
        color: #fff;
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.6), -1px -1px 2px rgba(0,0,0,0.4);
        font-weight: 400;
    }
    
    .home {
        padding-top: 10rem;
    }

    .about{
        min-height: 38vh;
        width: 100%;
        margin-top: -3rem;
        margin-bottom: -2rem;
        top: -2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        line-height: 6rem;
    }
    
    .about .row{
        line-height: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0 4rem;
    }
    
    .about .row .content{
        text-align: center;
    }
    
    .about .row .content h3{
        font-size: 2rem;
        color: var(--color);
    }
    
    .about .row .content p{
        font-size: 1.3rem;
        color: #333;
        padding: 1rem 0;
    } 

    .clients {
        position: relative;
        padding: 90px 0;
        text-align: center;
        margin-top: -15rem;
        margin-bottom: -8rem;
    }

    .clients .section-header p {
        padding-bottom: 10px;
        margin-top: 2.5rem;
        text-align: center;
        font-size: 2rem;
    }

    .team{
        min-height: auto;
    }

    .team .row{
        flex-direction: column;
    }

    .contact{
        text-align: center;
        align-items: center;
    }
    
    .contact .heading{
        margin-bottom: 3rem;
        margin-top: -2rem;
    }

    .contact-in
		{
			width: 80%;
			height: auto;
			margin: auto auto 5rem auto;
			display: flex;
			flex-wrap: wrap;
			padding: 10px;
			border-radius: 10px;
			background: #fff;
			box-shadow: 0px 0px 10px 0px #666;
		}

		.contact-map
		{
			width: 100%;
			height: auto;
			flex: 50%;
		}
		.contact-map iframe
		{
			width: 100%;
			height: 100%;
		}
		.contact-form
		{
			width: 100%;
			height: auto;
			flex: 50%;
			text-align: left;
		}
		.contact-form-txt
		{
			width: 90%;
			height: 20px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
        .contact-form-email
		{
            margin-left: 2rem;
			width: 90%;
			height: 20px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
		.contact-form-txt::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}
        .contact-form-email::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}
		.contact-form-txtarea
		{
            margin-left: 2rem;
			width: 90%;
			height: 110px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 10px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
			font-family: 'Poppins', sans-serif;
		}
		.contact-form-txtarea::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}

		.contact-form-btn
		{
            margin-left: 2rem;
            outline: none;
            border: none;
            border-radius: 5rem;
            background: white;
            border-style: groove;
            border-color: #002e5f;
            font-size: 1.5rem;
            cursor: pointer;
            height: 3.5rem;
            width: 12rem;
            box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
		}
        .contact-form-btn:hover{
            letter-spacing: .1rem;
            opacity: .9;
            color: white;
            background: #002e5f;
        }
		.contact-form-phone
		{
            margin-left: 2rem;
			width: 90%;
			height: 20px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
		.contact-form-phone::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}

        .back-to-top {
            width: 30px;
            height: 30px;
            font-size: 30px;
        }

        .faq{
            padding: 0;
            min-height: 60vh;
        }
    
        .faq .row{
            padding: 0 1.5rem;
            flex-flow: column;
        }
    
        .faq .row .accordion-container{
            width: 100%;
        }
}

/* Partnership Stats Section */
.partnership-stats-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partnership-title {
    font-size: 3.5rem;
    color: #002e5f;
    margin-bottom: 2rem;
    font-weight: 700;
}

.partnership-description {
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.certifications-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.cert-icon {
    font-size: 3rem;
    color: #00bfff;
    margin-right: 2rem;
}

.cert-details h4 {
    color: #002e5f;
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.cert-details span {
    color: #666;
    font-size: 1.4rem;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #00bfff, #0099cc);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
    text-decoration: none;
    color: white;
}

.cta-btn-primary i {
    margin-right: 1rem;
}

.stats-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-title {
    font-size: 2.8rem;
    color: #002e5f;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.4rem;
    font-weight: 500;
}

/* Global Presence Section */
.global-presence-redesign {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #002e5f 0%, #003d7a 100%);
    color: white;
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
}

.section-subheading {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 4rem;
}

.office-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 3rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.office-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.flag-icon {
    font-size: 3rem;
    margin-right: 2rem;
}

.office-info h3 {
    font-size: 2.4rem;
    color: #002e5f;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.office-type {
    background: linear-gradient(45deg, #00bfff, #0099cc);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.detail-item i {
    color: #00bfff;
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.detail-item span {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #444;
}

.regional-coverage-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    text-align: center;
}

.coverage-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 600;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.country-item:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.country-name {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive adjustments for global presence */
@media (max-width: 1024px) and (min-width: 769px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .country-item {
        padding: 1.8rem;
    }
}

@media (max-width: 768px) {
    .office-header {
        flex-direction: column;
        text-align: center;
    }
    
    .flag-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .country-item {
        padding: 1.5rem;
    }
    
    .country-flag {
        font-size: 2.5rem;
    }
    
    .country-name {
        font-size: 1.2rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .coverage-title {
        font-size: 2rem;
    }
}

/* Additional Mobile Improvements for Centering and Spacing */
@media (max-width: 768px) {
    /* General section spacing improvements */
    section {
        padding: 4rem 1rem !important;
        margin: 0 auto !important;
    }
    
    /* Home page services section improvements */
    .pt-5 {
        padding: 4rem 0 !important;
    }
    
    .pt-5 h2 {
        text-align: center !important;
        margin-bottom: 3rem !important;
        font-size: 2.5rem !important;
    }
    
    /* Feature highlights section centering */
    .features-highlight .container {
        padding: 0 1rem !important;
    }
    
    .features-highlight .row {
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    
    .features-highlight .col-lg-3,
    .features-highlight .col-md-6 {
        width: 90% !important;
        max-width: 300px !important;
        margin: 0 auto 1.5rem auto !important;
    }
    
    .feature-highlight-item {
        text-align: center !important;
        padding: 2rem 1rem !important;
    }
    
    /* GCC Countries section mobile improvements */
    .gcc-presence-section .container {
        padding: 0 1rem !important;
    }
    
    .gcc-presence-section .row {
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .gcc-presence-section .col-lg-6 {
        width: 100% !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    /* Contact section improvements */
    .communicate {
        padding: 4rem 1rem !important;
        text-align: center !important;
    }
    
    .communicate .container {
        padding: 0 1rem !important;
    }
    
    .communicate .row {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Testimonials section centering */
    .testimonials-container {
        padding: 0 1rem !important;
    }
    
    .testimonial-item {
        margin: 0 auto 2rem auto !important;
        text-align: center !important;
        max-width: 350px !important;
    }
}

/* Ensure burger menu stays visible when active */
.burger-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.burger-menu.active .burger-line {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Prevent fa-times from hiding burger menu */
.burger-menu.fa-times {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* Mobile navigation menu styling improvements */
@media (max-width: 768px) {
    .navbar.nav-toggle {
        display: block !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(0, 46, 95, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        box-shadow: 0 5px 20px rgba(0, 46, 95, 0.3) !important;
        z-index: 1001 !important;
        padding: 2rem 0 !important;
    }
    
    .navbar.nav-toggle ul {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .navbar.nav-toggle ul li {
        width: 100% !important;
        text-align: center !important;
    }
    
    .navbar.nav-toggle ul li a {
        display: block !important;
        padding: 1rem 2rem !important;
        color: #fff !important;
        font-size: 1.8rem !important;
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .navbar.nav-toggle ul li a:hover,
    .navbar.nav-toggle ul li a.active {
        background: rgba(0, 191, 255, 0.2) !important;
        color: #00bfff !important;
        transform: translateX(10px) !important;
    }
}