 :root {
            --primary: #0f2c59;
            --secondary: #c5a880;
            --dark: #222222;
            --light: #f8f9fa;
            --gray: #666666;
            --white: #ffffff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-family:'Poppins',sans-serif;
            font-family: 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--dark);
            background-color: var(--white);
            line-height: 1.6;
        }

        /* Header & Navigation */
        header {
            background-color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

        .logo {
            color: var(--white);
            text-decoration: none;
            display: flex;
            flex-direction: column;
        }

        .logo .brand-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    width: 350px;
}
        .logo .brand-name img {
            width: 100%;
            height: auto;
            float: left;
        }
        .logo .brand-tagline {
            font-size: 11px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 25px;
        }

        .nav-link {
            color: #145887;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #145887;
        }

        /* Hero Section */
        .hero {
    background: linear-gradient(rgb(10 40 61 / 40%), rgb(0 0 0 / 10%)), url(../images/banner-image.jpg) no-repeat center center / cover;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: left;
    padding: 0 20px;
}

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 54px;
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 70px;
        }

        .hero-content h1 span {
            color: #f27920;
        }

       .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    max-width: 100%;
    font-weight: 300;
}

       .btn {
    display: inline-block;
    background-color: #f27920;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 14px;
    letter-spacing: 1px;
}
h2 {
    font-weight: 300;
}

        .btn:hover {
            background-color: var(--white);
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Section Global Settings */
        section {
            padding: 80px 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 50px;
            color: var(--primary);
            font-weight: 300;
            margin-bottom: 15px;
        }
        h3 {
            font-weight: 300;
        }
        h4 {
            font-weight: 300;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
            margin: 0 auto;
        }

        /* About Section */
  

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

   
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .stat-card {
            background-color: var(--light);
            padding: 20px;
            border-left: 4px solid var(--secondary);
            border-radius: 0 4px 4px 0;
        }

        .stat-card h4 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-card p {
            font-size: 14px;
            margin-bottom: 0;
        }

        /* Services Section */
        .services {
            background-color: var(--light);
        }

        .services-category-title {
            font-size: 20px;
            color: var(--primary);
            margin: 40px 0 20px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #e0e0e0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .service-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 6px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .service-card h4 {
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .service-card h4::before {
            content: '•';
            color: var(--secondary);
            font-size: 24px;
            margin-right: 10px;
        }

        .service-card ul {
            list-style: none;
            color: var(--gray);
            font-size: 14px;
        }

        .service-card ul li {
            margin-bottom: 8px;
            padding-left: 12px;
            position: relative;
        }

        .service-card ul li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--secondary);
        }

        /* Industry Expertise */
        .industries {
            background-color: var(--white);
            text-align: center;
        }

        .industry-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 900px;
            margin: 0 auto 40px auto;
        }

        .industry-tag {
            background-color: var(--light);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid #e0e0e0;
        }
        .specialized-domains {
            background-color: var(--primary);
            color: var(--white);
            padding: 40px;
            border-radius: 8px;
            max-width: 100%;
            margin: 0 auto;
        }

.specialized-domains h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 34px;
    font-weight: 400;
}

        /* Team Section */
        .team {
            background-color: var(--light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .member-card {
            background-color: var(--white);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            padding: 35px;
        }

        .member-header {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

       .member-name {
    font-size: 23px;
    color: var(--primary);
    font-weight: 300;
    line-height: 30px;
}

        .member-title {
            font-size: 14px;
            color: var(--secondary);
            font-weight: 600;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .member-bio {
            font-size: 14px;
            color: var(--gray);
            text-align: justify;
        }

        /* Contact Section */
        .contact {
            background-color: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .contact-detail-item {
            margin-bottom: 25px;
        }

        .contact-detail-item h4 {
            font-size: 14px;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .contact-detail-item p {
            color: var(--dark);
            font-size: 16px;
        }

        .contact-form {
            background-color: var(--light);
            padding: 40px;
            border-radius: 6px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 40px 20px;
            text-align: center;
            border-top: 3px solid var(--secondary);
            font-size: 14px;
        }

        footer p {
            color: #b0b0b0;
        }
.about{
    padding:90px 0;
    background:#f8f9fb;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:70px;
    margin-top:60px;
}

.about-images{
    flex:1;
    position:relative;
}

.img-large{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:18px;
}

.small-images{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.small-images img{
    width:50%;
    height:180px;
    object-fit:cover;
    border-radius:15px;
}

.experience-box{
    position:absolute;
    left:-25px;
    top:35px;
    background:#f27920;
    color:#fff;
    width:150px;
    height:150px;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.experience-box h3{
    font-size:48px;
    margin:0;
}

.experience-box span{
    font-size:14px;
    text-align:center;
    line-height:22px;
}

.about-content{
    flex:1;
}

.about-tag{
    color:#f27920;
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
}

.about-content h2{
    font-size:42px;
    margin:15px 0 25px;
    color:#0f2c59;
    line-height:1.3;
}

.about-content p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

.feature-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin:35px 0;
}

.feature{
    background:#fff;
    padding:15px 18px;
    border-radius:10px;
    font-weight:500;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.about-stats{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    text-align:center;
    padding:40px 20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h3{
    font-size:42px;
    color:#f27920;
    margin-bottom:10px;
}

.stat-box p{
    color:#666;
    margin:0;
}

@media(max-width:992px){

    .about-wrapper {
        flex-direction: column;
        margin-top: 30px;
    }

.about-stats{
    grid-template-columns:repeat(2,1fr);
}

.feature-list{
    grid-template-columns:1fr;
}

.experience-box{
    left:15px;
    top:15px;
}

}

@media(max-width:768px){

.about-stats{
    grid-template-columns:1fr;
}

.about-content h2{
    font-size:32px;
}

.img-large{
    height:350px;
}

.small-images img{
    height:130px;
}

}
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                text-align: center;
            }
            .nav-menu {
                margin-top: 20px;
            }
            .nav-item {
                margin: 0 10px;
            }
      .hero h1 {
        font-size: 37px;
        line-height: 50px;
    }
            .about {
    padding: 30px 0;
    background: #f8f9fb;
}
.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
    max-width: 100%;
    font-weight: 300;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 90%;
} 
.feature {
    background: #102d63;
    padding: 15px 18px;
    border-radius: 10px;
    font-weight: 300;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    color: #fff;
}           
        }
        .menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:32px;
    cursor:pointer;
    color:#145887;
}

.desktop-btn{
    display:block;
}

.mobile-btn{
    display:none;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
}
.nav-menu li a {
    text-decoration: none;
    color: #002a5e;
    font-weight: 400;
    font-size: 17px;
}

@media(max-width:992px){

.nav-container {
        padding: 15px 20px;
        position: relative;
        flex-direction: row;
    }

.menu-toggle{
    display:block;
}

.desktop-btn{
    display:none;
}

.nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.nav-menu.active {
        max-height: 600px;
        margin-top: 0;
    }

.nav-menu li{
    width:100%;
    border-bottom:1px solid #eee;
}

.nav-menu li a{
    display:block;
    width:100%;
    padding:16px 20px;
}

.mobile-btn{
    display:block;
    padding:20px;
    border:none!important;
    width:100%;
}

.mobile-btn .btn{
    display:block;
    text-align:center;
}
#nav-menu li.mobile-btn {
    display: none;
}
}
.about-stats{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    background:#102d63;
    border:1px solid #e8e8e8;
    padding:45px 35px;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.stat-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:#c5a880;
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.stat-box:hover::before{
    width:100%;
    opacity:.04;
}

.stat-number{
    font-size:50px;
    font-weight:300;
    color:#0f2c59;
    line-height:1;
    margin-bottom:20px;
}

.stat-line {
    width: 55px;
    height: 3px;
    background: #c5a880;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box h4{
    font-size:22px;
    color:#fff;
    margin-bottom:12px;
    font-weight:600;
}

.stat-box p{
    color:#fff;
    line-height:1.8;
    font-size:15px;
    margin:0;
}

@media(max-width:992px){

.about-stats{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.about-stats{
    grid-template-columns:1fr;
}

.stat-box{
    padding:35px 25px;
}

.stat-number{
    font-size:36px;
}
.stat-box h4 {
    font-size: 22px;
    color: #0f2c59;
    margin-bottom: 12px;
    font-weight: 300;
}
}
.services {
    padding: 50px 0;
    background: #f7f8fa;
}

.service-list {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-item{

    display:grid;
    grid-template-columns:140px 1fr;
    margin-bottom:35px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border-left:6px solid #c5a880;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
    transition:.35s;
}

.service-item:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 70px rgba(0,0,0,.12);

}

.service-no{
    background:#0f2c59;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:50px;
    font-weight:300;
}

.service-content{
    padding:45px;
    position:relative;
}

.service-content h3{
    color:#0f2c59;
    font-size:30px;
    margin-bottom:15px;
}

.service-content p{
    color:#444;
    line-height:1.9;
    margin-bottom:25px;
}

.service-content ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    list-style:none;
}

.service-content ul li{
    position:relative;
    padding-left:28px;
    color:#444;
}

.service-content ul li:before{
    content:"";
    width:10px;
    height:10px;
    border-radius:50%;
    background:#c5a880;
    position:absolute;
    left:0;
    top:8px;

}

@media(max-width:992px){

.service-item{

grid-template-columns:100px 1fr;

}

.service-content ul{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.service-item{

grid-template-columns:1fr;

}
.section-title h2 {
    font-size: 32px;
    color: var(--primary);
    font-weight: 300;
    margin-bottom: 15px;
}
.section-title h2 {
    font-size: 32px;
    color: var(--primary);
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 40px;
    margin-top: 15px;
}
.service-no{

height:90px;

font-size:40px;

}

.service-content{

padding:30px;

}
    .service-no {
        height: 70px;
        font-size: 40px;
        font-weight: 300;
        font-size: 32px;
    }
    .service-content h3 {
    color: #0f2c59;
    font-size: 24px;
    margin-bottom: 15px;
}
.services {
    padding: 20px 0;
    background: #f7f8fa;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.contact-form {
    background-color: #002d64;
    padding: 15px;
    border-radius: 6px;
    color: #fff;
    font-weight: 300;
}
.experience-box {
        left: 15px;
        top: 15px;
        width: 100px;
        height: 100px;
    }
.experience-box span {
    font-size: 10px;
    text-align: center;
    line-height: 22px;
}
.experience-box h3 {
    font-size: 34px;
    margin: 0;
    line-height: 40px;
}
section {
    padding: 80px 0;
}
.contact {
    background-color: var(--white);
    padding-top: 30px;
    padding-bottom: 40px;
}
}
.partners-section{
    padding:100px 0;
    background:#f5f8fc;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;
    color:#0b63ce;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title h2{
    font-size:42px;
    font-weight:300;
    color:#1d2b45;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#6c757d;
    line-height:1.8;
}

.partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.partner-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.partner-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:linear-gradient(180deg,#0b63ce,#20b2ff);
}

.partner-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.partner-top{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

.partner-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(180deg, #002b5d, #3394e0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.partner-info h3{
    margin:0;
    color:#1d2b45;
    font-size:22px;
    line-height:1.4;
}

.designation{
    display:inline-block;
    margin-top:8px;
    background:#edf4ff;
    color:#0b63ce;
    padding:7px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:600;
}

.partner-card p{
    color:#555;
    line-height:1.9;
    font-size:15px;
}

@media(max-width:768px){

.section-title h2{
    font-size:32px;
}

.partner-card{
    padding:28px;
}

.partner-info h3{
    font-size:19px;
}

.partner-top{
    align-items:flex-start;
}
}
.about-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.stat-box{
    background:#102d63;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    transition:.35s;
    border:1px solid #ececec;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.stat-box::before{
    content:"";
    position:absolute;
    left:0;
    top:25px;
    width:4px;
    height:70px;
    background:#c79b58;
    border-radius:10px;
}

.stat-icon{
    width:64px;
    height:64px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#fbf6ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.stat-icon i{
    color:#f87916;
    font-size:26px;
}

.stat-number{
    font-size:42px;
    font-weight:300;
    color:#fff;
    margin-bottom:10px;
}

.stat-line{
    width:45px;
    height:3px;
    background:#c79b58;
    margin:0 auto 18px;
    border-radius:20px;
}

.stat-box h4{
    font-size:20px;
    margin-bottom:12px;
    color:#fff;
}

.stat-box p{
    color:#fff;
    line-height:1.8;
    font-size:15px;
}

.active{
    background:#102d63;
    color:#fff;
}

.active h4,
.active .stat-number,
.active p{
    color:#fff;
}

.active .stat-icon{
    background: #fbf6ef;
}

.active .stat-icon i{
    color:#f87916;
}

.active .stat-line{
    background:#d8b26a;
}
.desktop-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background-color: #f5f5f5;
    color: #012a5f;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1.5px solid #012b60a6;
}

.desktop-btn i{
    font-size:15px;
}
@media(max-width:991px){
    .about-stats{
        grid-template-columns:repeat(2,1fr);
    }
    .desktop-btn{
    display:none;
}
.logo .brand-name {
    width: 260px;
}
.service-list {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 16px 20px;
        color: #fff;
        font-size: 16px;
        font-weight: 300;
    }
    .stat-number {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}
.section-title h2 {
        font-size: 32px;
        font-weight: 300;
    }
    .partners-section {
    padding: 40px 0;
    background: #f5f8fc;
}
section#contact .section-title {
    margin-bottom: 30px;
}
.industries {
    background-color: var(--white);
    text-align: center;
    padding: 30px 0;
}
section#expertise .section-title {
    margin-bottom: 30px;
}
section#about .section-title {
    margin-bottom: 0;
}
}

@media(max-width:600px){
    .about-stats{
        grid-template-columns:1fr;
    }

}
.contact-section{
    padding:100px 0;
    background:#f6f9fc;
}

.section-heading{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:60px;
}

.section-heading span{
    color:#c79c4a;
    font-weight:700;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:42px;
    margin:15px 0;
    color:#0f172a;
}

.section-heading p{
    color:#666;
    line-height:1.8;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
}

.contact-card,
.form-card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.contact-card h3,
.form-card h3{
    margin-bottom:35px;
    color:#0f172a;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    align-items:flex-start;
}

.info-box i{
    width:60px;
    height:60px;
    background:#c79c4a;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}

.info-box h4{
    margin-bottom:8px;
    color:#0f172a;
}

.info-box p{
    color:#666;
    line-height:1.8;
}

.input-group{
    margin-bottom:22px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    transition:.3s;
    outline:none;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#c79c4a;
    box-shadow:0 0 10px rgba(199,156,74,.2);
}

.contact-btn{
    width:100%;
    padding:16px;
    background:#c79c4a;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    background:#0f172a;
}

.contact-card:hover,
.form-card:hover{
    transform:translateY(-5px);
    transition:.3s;
}
.nav-menu li a.active{
    background: #f57111;
    color: #fff;
    padding: 5px 25px;
    padding-bottom: 8px;
    border-radius: 20px;
    }

@media(max-width:768px){

.contact-wrapper{
grid-template-columns:1fr;
}
    .hero {
        background: url(../images/mobile-banner.jpeg);
        background: linear-gradient(rgb(0 43 93 / 16%), rgb(0 0 0 / 10%)), url(../images/mobile-banner.jpeg) no-repeat center center / cover;
        background-size: cover;
        height: calc(100vh - 87px);
    }
.section-heading h2{
font-size:30px;
}
.nav-menu li a.active {
    background: transparent;
    color: #fff;
    padding: 16px 20px;
    padding-bottom: 16px;
    border-radius: 20px;
}
.specialized-domains h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 34px;
    font-weight: 300;
    line-height: 40px;
}
.contact-card,
.form-card{
padding:30px;
}

}
#about-banner {
    height: 370px;
    min-height: inherit;
}
#service-banner {
    height: 370px;
    min-height: inherit;
}
#team-banner {
    height: 370px;
    min-height: inherit;
}
#contact-banner {
    height: 370px;
    min-height: inherit;
}
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #c79c4a;
    font-size: 14px;
}
footer p {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}