@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;
}

/* Gradient text for hero title */
.gradient-text{
    background: linear-gradient(90deg,#00bfff 0%, #7b61ff 50%, #00e3ae 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.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);
}

/* Enhanced Button Styles */
.row .btn,
.communicate .btn {
    outline: none;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #002e5f, #00bfff);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    height: 50px;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,191,255,0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.row .btn:hover,
.communicate .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,191,255,0.4);
    letter-spacing: 1.5px;
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    background: #002e5f;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled{
    background: #002e5f;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.4);
}

/* Mobile nav open state should also be dark */
.navbar.nav-toggle{
    background: #002e5f;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.35);
}
.navbar.nav-toggle ul li a{
    color: #fff;
}

.header .logo img{
    width: auto;
    height: 3rem;
    top: 0;
    left: 0;
}

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

.header .navbar ul li{
    margin: 0 1.5rem;
}

.header .navbar ul li a{
    font-size: 2rem;
    color: #fff;
}

.header .navbar ul li a:hover{
    color: #00bfff;
    text-decoration: underline;
}

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

.header .fa-bars{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

/* Legal links slim bar below header */
.legal-links-bar {
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.legal-links-bar a {
    color: #002e5f;
    font-size: 1.4rem;
}
.legal-links-bar a:hover {
    color: #00bfff;
    text-decoration: underline;
}

/* Modern Hero Section */
.home{
    min-height: 100vh;
    width: 100vw;
    background-image: linear-gradient(135deg, rgba(102,126,234,0.85), rgba(118,75,162,0.85)), url(../images/img1.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

.home h1{
    color: #fff;
    font-size: 6.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 3px 3px 6px rgba(0,0,0,0.4), 0 0 10px rgba(255,255,255,0.3); }
    to { text-shadow: 3px 3px 6px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.5); }
}

.home h2{
    color: #fff;
    font-size: 2.8rem;
    font-weight: 300;
    max-width: 800px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.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;
    }
}

/* Modern About Section */
.about{
    min-height: 60vh;
    width: 100vw;
    padding: 8rem 0 4rem 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

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

.about .row .content{
    text-align: center;
    max-width: 800px;
}

.about .row .content h3{
    font-size: 3.5rem;
    color: #002e5f;
    font-weight: 600;
    margin-bottom: 2rem;
}

.about .row .content p{
    font-size: 2rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}
/* Enhanced Services Section */
.pt-5.pb-5 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 8rem 0 !important;
}

.section-head {
    margin-bottom: 80px;
    text-align: center;
    margin-top: 0;
}

.section-head h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #764ba2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-head p {
    font-size: 2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.item {
    background: #ffffff;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(118,75,162,0.15);
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(118,75,162,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.item:hover::before {
    transform: translateY(0);
}

.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(118,75,162,0.25);
}

.item .icon {
    font-size: 48px;
    margin-bottom: 25px;
    color: #667eea;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    transition: all 0.4s ease;
}

.item:hover .icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2));
}

.item h6 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #764ba2;
    font-weight: 600;
}

.item p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #4a5568;
}   

/* Enhanced Counters Section */
.counters {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/img2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.counters .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.counters i {
    color: #fff;
    margin-bottom: 20px;
    font-size: 4rem;
    background: rgba(255,255,255,0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.counters i:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.counters .counter {
    font-size: 5rem;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.counters h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@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;
	}
}

/* Enhanced Projects Section */
.section-head-1 {
    margin-bottom: 80px;
    text-align: center;
    margin-top: 0;
}

.section-head-1 h4 {
    font-size: 4rem;
    font-weight: 700;
    color: #002e5f;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-head-1 h4 span {
    color: #00bfff;
}

.section-head-1 p {
    font-size: 2rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced project cards */
.item {
    background: #ffffff;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bfff, #7b61ff);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.item:hover::before {
    transform: translateY(0);
}

.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.item .icon {
    font-size: 48px;
    margin-bottom: 25px;
    color: #00bfff;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,191,255,0.1), rgba(123,97,255,0.1));
    transition: all 0.4s ease;
}

.item:hover .icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0,191,255,0.2), rgba(123,97,255,0.2));
}

.item h6 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #002e5f;
    font-weight: 600;
}

.item p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.item a {
    color: #00bfff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item a:hover {
    color: #002e5f;
    text-decoration: underline;
}

/* Enhanced Communicate Section */
.communicate {
    background: linear-gradient(135deg, rgba(0,46,95,0.9), rgba(0,191,255,0.9)), url(../images/img3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.communicate h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.communicate p {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Upwork CTA */
.upwork-cta {
    padding: 90px 20px;
    background: linear-gradient(135deg, #0f4c75 0%, #1b67c0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.upwork-cta::before,
.upwork-cta::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    filter: blur(1px);
}

.upwork-cta::before {
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
}

.upwork-cta::after {
    bottom: -140px;
    left: -140px;
    width: 320px;
    height: 320px;
    opacity: 0.6;
}

.upwork-inner {
    max-width: 880px;
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 26px;
    padding: 48px 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 70px rgba(0,0,0,0.22);
    backdrop-filter: blur(6px);
}

.upwork-inner h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    letter-spacing: 0.05em;
}

.upwork-inner p {
    font-size: 1.7rem;
    line-height: 1.7;
    margin-bottom: 2.6rem;
    opacity: 0.95;
}

.upwork-inner .upwork-btn, .upwork-btn {
    background: #14a800;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(20,168,0,0.35);
    padding: 16px 40px !important;
    width: auto;
    min-width: 260px;
    font-size: 2rem !important;
    border-radius: 9999px;
    display: inline-block;
    font-weight: 700;
}

.upwork-btn:hover {
    background: #0f7a00;
    box-shadow: 0 18px 40px rgba(15,122,0,0.45);
}

@media (max-width: 576px) {
  .upwork-inner .upwork-btn, .upwork-btn {
    width: 100%;
    min-width: 0;
    font-size: 2.2rem !important;
    padding: 18px 20px !important;
  }
}

/* Enhanced Testimonials Section */
.testimonials {
    position: relative;
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials .section-header h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #002e5f;
    margin-bottom: 1.5rem;
}

.testimonials .section-header p {
    font-size: 2rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials .testimonial-item {
    position: relative;
    margin: 0 15px 30px 15px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonials .testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonials .testimonial-img {
    position: relative;
    background: linear-gradient(135deg, #00bfff, #7b61ff);
    overflow: hidden;
    height: 200px;
}

.testimonials .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.testimonials .testimonial-img img:hover {
    opacity: 1;
}

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

.testimonials .testimonial-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #002e5f;
}

.testimonials .testimonial-text h4 {
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #00bfff;
    margin-bottom: 15px;
}

.testimonials .testimonial-text p {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
    font-style: italic;
}

.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;
}

.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;
}    

/* Enhanced Team Section */
.team {
    min-width: 100vw;
    min-height: 80vh;
    text-align: center;
    background: linear-gradient(135deg, #002e5f 0%, #00bfff 100%);
    padding: 80px 20px;
    position: relative;
}

.team .heading {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.team .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.team .row .card {
    height: auto;
    width: 280px;
    background-color: #ffffff;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

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

.team .row .card .image img {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team .row .card .image img:hover {
    transform: scale(1.05);
}

.team .row .card .info h3 {
    font-size: 2.2rem;
    color: #002e5f;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team .row .card .info span {
    font-size: 1.6rem;
    color: #00bfff;
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

.team .row .card .info .icons a {
    margin: 0 0.8rem;
    font-size: 2.2rem;
    color: #002e5f;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.team .row .card .info .icons a:hover {
    transform: translateY(-3px);
}

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

.team .row .card::before {
    background: linear-gradient(135deg, #00bfff, #7b61ff);
    top: -2rem;
    right: -2rem;
    opacity: 0.3;
}

.team .row .card::after {
    background: linear-gradient(135deg, #7b61ff, #00bfff);
    bottom: -2rem;
    left: -2rem;
    opacity: 0.3;
}

/* Enhanced Contact Section */
.contact {
    text-align: center;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.contact .heading {
    font-size: 4rem;
    font-weight: 700;
    color: #002e5f;
    margin-bottom: 3rem;
}

.contact-in {
    width: 90%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto 5rem auto;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-map {
    width: 100%;
    height: 400px;
    flex: 50%;
    border-radius: 15px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.contact-form {
    width: 100%;
    height: auto;
    flex: 50%;
    text-align: left;
    padding: 20px;
}

.contact-form-txt,
.contact-form-email,
.contact-form-phone {
    width: 100%;
    height: 50px;
    color: #000;
    border: 2px solid #e1e8ed;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px 20px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.contact-form-txt:focus,
.contact-form-email:focus,
.contact-form-phone:focus {
    border-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0,191,255,0.1);
}

.contact-form-txt::placeholder,
.contact-form-email::placeholder,
.contact-form-phone::placeholder {
    color: #999;
    font-size: 1.5rem;
}

.contact-form-txtarea {
    width: 100%;
    height: 150px;
    color: #000;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.contact-form-txtarea:focus {
    border-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0,191,255,0.1);
}

.contact-form-txtarea::placeholder {
    color: #999;
    font-size: 1.5rem;
}

.contact-form-btn {
    width: 100%;
    outline: none;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #002e5f, #00bfff);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    height: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,191,255,0.3);
}

.contact-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,191,255,0.4);
}

        .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;
        }

        /* Enhanced FAQ Section */
.faq {
    min-height: 70vh;
    width: 100vw;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.faq .heading {
    color: #002e5f;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.faq .heading::before,
.faq .heading::after {
    border-color: #002e5f;
}

.faq .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.faq .row .accordion-container {
    width: 80%;
    max-width: 800px;
    text-align: left;
}

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

.faq .row .accordion:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.faq .row .accordion-container .accordion .accordion-header {
    background: linear-gradient(135deg, #00bfff, #7b61ff);
    color: #ffffff;
    margin: 0;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq .row .accordion-container .accordion .accordion-header:hover {
    background: linear-gradient(135deg, #0099cc, #6b4bc7);
}

.faq .row .accordion-container .accordion .accordion-header span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq .row .accordion-container .accordion .accordion-header h3 {
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0;
    flex: 1;
    padding-left: 1rem;
}

.faq .row .accordion-container .accordion .accordion-body {
    padding: 25px;
    color: #444;
    background-color: #fff;
    font-size: 1.6rem;
    line-height: 1.6;
    border: 1px solid rgba(0,0,0,0.05);
    display: none;
}

.faq .row .accordion-container .accordion .accordion-body.active {
    display: block;
}
        
@media (max-width: 1200px){
    .faq{
        min-height: 70vh;
    }
}        

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

    .header .logo img{
        width: auto;
        height: 3.2rem;
        top: 0;
        left: 0;
    }

    .header .fa-bars{
        display: block;
        color: 	white;
        margin-right: 1rem;
    }

    .header .fa-bars:hover{
        color: #00bfff;
    }

    .header .navbar{
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: white;
        z-index: 1000;
        border-top: .1rem solid rgba(0,0,0,.3);
    }

    .header .navbar ul{
        height: 100%;
        width: 100%;
        flex-flow: column;
    }

    .header .navbar ul li{
        margin: 1rem 0;
    }

    .header .navbar ul li a{
        color: grey;
        font-size: 2.4rem;
    }

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

    .header .nav-toggle{
        top: calc(6rem + 40px); /* header height + legal bar */
    }

    /* Hide legal links bar on small screens to reduce clutter */
    .legal-links-bar{ display: none; }

    .home h1{
        color: #fff;
        font-size: 4rem;
    }
    
    .home h2{
        color: #fff;
        font-size: 2rem;
    }

    .about{
        min-height: 38vh;
        width: 100vw;
        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%;
        }
}