/* CSS Reset and Variables */

:root {

    --primary-blue: #143e8c; /* Deep blue from mockup */

    --secondary-blue: #235fb6; 

    --accent-orange: #f26f21; /* Vibrant orange from mockup */

    --text-dark: #1f2937;

    --text-muted: #4b5563;

    --bg-light: #f9fafb;

    --white: #ffffff;

    

    --font-heading: 'Outfit', sans-serif;

    --font-body: 'Inter', sans-serif;

    

    --transition: all 0.3s ease;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: var(--font-body);

    color: var(--text-dark);

    line-height: 1.5;

    overflow-x: hidden;

    background-color: var(--white);

}



h1, h2, h3, h4 {

    font-family: var(--font-heading);

}



a {

    text-decoration: none;

    color: inherit;

    transition: var(--transition);

}



img {

    max-width: 100%;

    height: auto;

}



.container {

    width: 100%;

    max-width: 1400px; /* Wider container for this design */

    margin: 0 auto;

    padding: 0 20px;

}



.text-orange {

    color: var(--accent-orange);

}



.text-center {

    text-align: center;

}



/* Navbar */

.navbar {

    background: var(--white);

    padding: 15px 0;

    position: relative;

    z-index: 100;

}



.nav-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}



.logo img {

    height: 70px;

}


.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-heading {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(180deg, #3DA9E4 0%, #1A3E92 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 1rem;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 4px;
    text-transform: uppercase;
}



.nav-links {

    display: flex;

    gap: 30px;

}



.nav-links a {

    font-size: 15px;

    font-weight: 600;

    color: var(--text-dark);

    position: relative;

    padding-bottom: 5px;

}



.nav-links a.active,

.nav-links a:hover {

    color: var(--primary-blue);

}



.nav-links a.active::after,

.nav-links a:hover::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 20px;

    height: 2px;

    background: var(--accent-orange);

}



/* Navbar Dropdown */

.nav-dropdown {

    position: relative;

    display: inline-block;

}



.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}



.dropdown-menu {

    position: absolute;

    top: 40px;

    left: 0;

    background-color: var(--white);

    min-width: 160px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.05);

    border-radius: 4px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.3s ease;

    z-index: 100;

    padding: 10px 0;

}



.nav-links .dropdown-menu a {

    display: block;

    padding: 10px 20px;

    color: var(--text-dark);

    font-size: 0.9rem;

    font-weight: 500;

    text-transform: none;

}



.nav-links .dropdown-menu a:hover {

    background-color: rgba(15, 44, 102, 0.05);

    color: var(--accent-orange);

}



.nav-links .dropdown-menu a::after,

.nav-links .dropdown-menu a:hover::after,

.nav-links .dropdown-menu a.active::after {

    display: none !important; /* prevent the orange line hover effect on dropdown items */

}



.btn-primary {

    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));

    color: var(--white);

    padding: 12px 24px;

    border-radius: 30px;

    font-weight: 600;

    font-size: 15px;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow: 0 4px 10px rgba(20, 62, 140, 0.3);

}



.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(20, 62, 140, 0.4);

}



.mobile-menu-btn {

    display: none;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

}



.mobile-menu-btn span {

    width: 25px;

    height: 3px;

    background: var(--primary-blue);

}



/* Hero Section */

.hero {

    position: relative;

    padding-top: 40px;

    padding-bottom: 160px; /* space for wave */

    overflow: hidden;

}



.hero-slider {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 0;

}



.hero-slider .slide {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center center;

    opacity: 0;

    transition: opacity 1.5s ease-in-out;

}



.hero-slider .slide.active {

    opacity: 1;

}



.hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    /* Gradient fade from white on left to transparent on right */

    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(244,249,255,0.95) 45%, rgba(255,255,255,0) 75%);

    z-index: 1;

}



.hero-container {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

}



.hero-content {

    flex: 0 0 60%;

    max-width: 60%;

    padding-right: 20px;

}



.hero-logo {

    margin-bottom: 20px;

}



.hero-logo img {

    height: 120px;

}



.hero h1 {

    font-size: 4rem;

    color: var(--primary-blue);

    line-height: 1.05;

    margin-bottom: 25px;

    font-weight: 800;

    letter-spacing: -1px;

    position: relative;

}



.hero h1::after {

    content: '';

    display: block;

    width: 60px;

    height: 4px;

    background: var(--accent-orange);

    margin-top: 20px;

    border-radius: 2px;

}



.hero h1 .text-orange {

    font-size: 4.5rem;

    display: block;

    margin-top: 5px;

}



.hero-description {

    font-size: 1.2rem;

    color: var(--primary-blue);

    font-weight: 500;

    margin-bottom: 50px;

    line-height: 1.6;

    max-width: 90%;

}



.hero-features {

    display: flex;

    gap: 30px;

}



.feature-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}



.feature-icon {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: var(--white);

    border: 2px solid #e2e8f0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-blue);

    font-size: 22px;

    margin-bottom: 12px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.05);

    transition: var(--transition);

}



.feature-item:hover .feature-icon {

    border-color: var(--primary-blue);

    transform: translateY(-5px);

    box-shadow: 0 8px 15px rgba(20, 62, 140, 0.15);

}



.feature-item p {

    font-size: 0.85rem;

    font-weight: 600;

    color: var(--text-dark);

    line-height: 1.3;

}



/* Wave Divider */

.hero-wave {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 120px;

    overflow: hidden;

    line-height: 0;

}



.hero-wave svg {

    display: block;

    width: calc(100% + 1.3px);

    height: 100%;

}



.wave-orange {

    fill: var(--accent-orange);

}



.wave-blue {

    fill: var(--primary-blue);

}



/* Services Section */

.services-section {

    padding: 60px 0;

    background: var(--white);

}



.section-title {

    font-size: 1.8rem;

    color: var(--primary-blue);

    margin-bottom: 40px;

}



/* Compact Services Grid (Homepage) */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}



.service-card-compact {

    background: var(--white);

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0,0,0,0.05);

    transition: var(--transition);

}



.service-card-compact:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

}



.service-card-compact img {

    width: 100%;

    height: 200px;

    object-fit: cover;

}



.scc-content {

    padding: 25px;

}



.scc-content h3 {

    font-size: 1.25rem;

    color: var(--primary-blue);

    margin-bottom: 10px;

}



.scc-content p {

    font-size: 0.9rem;

    color: var(--text-muted);

    margin-bottom: 20px;

    line-height: 1.5;

}



.read-more {

    font-size: 0.9rem;

    font-weight: 700;

    color: var(--accent-orange);

    display: flex;

    align-items: center;

    gap: 8px;

}



.read-more:hover {

    color: #d15610;

}



/* Detailed Services (Services Page) */

.services-detailed {

    display: flex;

    flex-direction: column;

    gap: 50px;

}



.service-detail-block {

    display: flex;

    align-items: stretch;

    gap: 40px;

    background: var(--white);

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

}



.service-detail-block.reverse {

    flex-direction: row-reverse;

}



.sdb-image {

    flex: 1;

    min-height: 350px;

}



.sdb-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.sdb-content {

    flex: 1.2;

    padding: 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}



.sdb-content h3 {

    font-size: 2rem;

    color: var(--primary-blue);

    margin-bottom: 20px;

}



.sdb-content p {

    font-size: 1rem;

    color: var(--text-muted);

    line-height: 1.6;

    margin-bottom: 15px;

}



.pdf-list {

    list-style: none;

    margin-bottom: 15px;

}



.pdf-list li {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 10px;

    font-size: 0.95rem;

    color: var(--text-dark);

}



.pdf-list li i {

    color: var(--accent-orange);

    margin-top: 4px;

}



/* Info Bar Section */

.info-bar-section {

    padding: 40px 0 60px;

}



.info-bar {

    background: var(--primary-blue);

    border-radius: 16px;

    padding: 30px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: var(--white);

    box-shadow: 0 15px 30px rgba(20, 62, 140, 0.2);

}



.info-item {

    display: flex;

    gap: 15px;

    align-items: flex-start;

    flex: 1;

    border-right: 1px solid rgba(255, 255, 255, 0.1);

    padding-right: 20px;

}



.info-item:last-child {

    border-right: none;

    padding-right: 0;

}



.info-icon {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.3);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

}



.info-icon.bg-orange {

    background: var(--accent-orange);

    border-color: var(--accent-orange);

}



.info-text h4 {

    font-size: 0.75rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 5px;

    color: rgba(255,255,255,0.7);

}



.info-text strong {

    font-size: 1.1rem;

    display: block;

    margin-bottom: 5px;

    font-family: var(--font-heading);

}



.info-text p {

    font-size: 0.85rem;

    color: rgba(255,255,255,0.85);

    line-height: 1.4;

}



/* Why Choose Us Section */

.why-choose-us {

    background: linear-gradient(rgba(26, 62, 146, 0.6), rgba(15, 44, 102, 0.75)), url('assests/why_us_bg.jpg') no-repeat center center/cover;

    color: var(--white);

    padding: 60px 0;

}



.wcu-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}



.wcu-left {

    flex: 1;

}



.wcu-left h2 {

    font-size: 2rem;

    margin-bottom: 30px;

}



.wcu-subtitle {

    font-size: 0.95rem;

    color: var(--accent-orange);

    font-weight: 700;

    margin-bottom: 30px;

    letter-spacing: 1px;

}



.wcu-features-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}



.wcu-feature {

    background: rgba(255,255,255,0.05);

    padding: 20px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.1);

}



.wcu-feature.full-width {

    grid-column: 1 / -1;

}



.wcu-feature h4 {

    font-size: 1.15rem;

    color: var(--white);

    margin-bottom: 10px;

}



.wcu-feature p {

    font-size: 0.85rem;

    color: rgba(255,255,255,0.8);

    line-height: 1.5;

}



.wcu-right {

    flex: 1.2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    text-align: center;

    border-left: 1px solid rgba(255,255,255,0.2);

    padding-left: 40px;

}



.stat-item {

    border-right: 1px solid rgba(255,255,255,0.2);

    padding: 0 10px;

}



.stat-item:last-child {

    border-right: none;

}



.stat-item i {

    font-size: 2rem;

    margin-bottom: 15px;

    opacity: 0.8;

}



.stat-item h3 {

    font-size: 2rem;

    color: var(--accent-orange);

    margin-bottom: 5px;

}



.stat-item p {

    font-size: 0.8rem;

    font-weight: 600;

    color: rgba(255, 255, 255, 0.8);

}



/* Why Work With Us Section */

.why-work-with-us {

    padding: 80px 0;

    background: #fdfdfd;

}



.www-container {

    display: flex;

    align-items: center;

    gap: 50px;

}



.www-image {

    flex: 1;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    height: 400px;

}



.www-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.www-content {

    flex: 1;

}



.www-content h2 {

    font-size: 2.5rem;

    color: var(--primary-blue);

    margin-bottom: 25px;

}



.www-content p {

    font-size: 1.1rem;

    color: var(--text-muted);

    line-height: 1.7;

}



/* Industries Section */

.industries-section {

    padding: 80px 0;

    background: #fdfdfd;

}



.industries-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 20px;

}



.industry-card {

    position: relative;

    border-radius: 12px;

    overflow: hidden;

    height: 180px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.05);

}



.industry-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: var(--transition);

}



.industry-card:hover img {

    transform: scale(1.1);

}



.industry-overlay {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    background: var(--white);

    padding: 10px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-top: 2px solid var(--accent-orange);

}



.industry-icon {

    width: 30px;

    height: 30px;

    background: var(--primary-blue);

    color: var(--white);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

}



.industry-overlay h4 {

    font-size: 0.85rem;

    color: var(--text-dark);

}



/* Our Process Section */

.process-section {

    padding: 60px 0 80px;

    background: var(--white);

}



.process-steps {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-top: 40px;

}



.step {

    text-align: center;

    flex: 1;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

}



.step-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    border: 2px solid var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    color: var(--primary-blue);

    margin-bottom: 15px;

    background: var(--white);

    position: relative;

    z-index: 2;

}



.step-num {

    font-family: var(--font-heading);

    font-size: 1.2rem;

    font-weight: 800;

    color: var(--primary-blue);

    margin-bottom: 5px;

}



.step h4 {

    font-size: 1rem;

    margin-bottom: 8px;

    text-transform: uppercase;

}



.step p {

    font-size: 0.8rem;

    color: var(--text-muted);

}



.step-line {

    flex: 1;

    height: 2px;

    border-bottom: 2px dashed #cbd5e1;

    margin-top: 30px;

}



/* CTA Section */

.cta-section {

    background: linear-gradient(rgba(20, 62, 140, 0.85), rgba(20, 62, 140, 0.95)), url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?q=80&w=2070&auto=format&fit=crop') center/cover;

    padding: 80px 0;

    text-align: center;

    color: var(--white);

}



.cta-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.cta-container h2 {

    font-size: 2rem;

    text-align: left;

    line-height: 1.3;

}



.btn-orange {

    background: var(--accent-orange);

    color: var(--white);

    padding: 15px 35px;

    border-radius: 8px;

    font-weight: 700;

    font-size: 1.1rem;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow: 0 4px 15px rgba(242, 111, 33, 0.4);

}



.btn-orange:hover {

    background: #e0601a;

}



/* Footer Section */

.footer {

    background: linear-gradient(rgba(15, 44, 102, 0.7), rgba(10, 30, 75, 0.85)), url('assests/bg.png') no-repeat center center/cover;

    color: rgba(255,255,255,0.8);

    padding: 80px 0 20px;

    font-size: 0.9rem;

    border-top: 4px solid var(--accent-orange);

}



.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr 2.5fr 1.5fr 1.5fr;

    gap: 30px;

    margin-bottom: 60px;

}



.presence-item {

    margin-bottom: 15px;

}



.presence-title {

    font-weight: 700;

    color: var(--accent-orange);

    font-size: 0.85rem;

    display: block;

    margin-bottom: 4px;

}
.footer-logo{
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-text{
    display: flex;
    align-items: center;
}

.footer-logo-heading{
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-title{
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(180deg,#3DA9E4 0%,#1A3E92 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo-subtitle{
    font-size: 15px;
    font-weight: 700;
    color: #fff; /* footer background dark hai */
    letter-spacing: 2px;
    margin-top: 4px;
}

.footer-logo img{
    width: 110px;
}
.footer-logo{
    display:flex;
    align-items:center;
    gap:20px;
    margin: 10px 0;
}

.footer-logo-heading{
    justify-content:center;
}


.brand-col p {

    margin-bottom: 20px;

}



.social-links {

    display: flex;

    gap: 15px;

}



.footer-col .social-links a {

    width: 35px;

    height: 35px;

    background: rgba(255,255,255,0.1);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    margin-bottom: 0; /* Override margin-bottom from .footer-col a */

    text-decoration: none;

}



.footer-col .social-links a:hover {

    background: var(--accent-orange);

}



.footer-col h4 {

    color: var(--white);

    font-size: 1rem;

    margin-bottom: 25px;

}



.footer-col a {

    display: block;

    margin-bottom: 12px;

}



.footer-col a:hover {

    color: var(--accent-orange);

}



.footer-col p {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 15px;

}



.footer-col p i {

    color: var(--accent-orange);

    margin-top: 4px;

}



.newsletter-form {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 20px;

}



.newsletter-form input {

    padding: 12px 15px;

    border: none;

    border-radius: 6px;

    outline: none;

}



.newsletter-form button {

    background: var(--accent-orange);

    color: var(--white);

    border: none;

    padding: 12px;

    border-radius: 6px;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);

}



.newsletter-form button:hover {

    background: #e0601a;

}



.footer-bottom {

    text-align: center;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.1);

}



/* Responsive */

@media (max-width: 1024px) {

    .hero-container {

        flex-direction: column;

    }

    

    .hero-image {

        width: 100%;

        height: 400px;

        border-radius: 0;

    }

    

    .hero-image img {

        clip-path: none;

    }

    

    .hero-features {

        flex-wrap: wrap;

    }

    

    .services-grid {

        grid-template-columns: 1fr;

    }

    

    .info-item {

        min-width: 45%;

        border-right: none;

        margin-bottom: 20px;

    }



    .wcu-container {

        flex-direction: column;

    }



    .wcu-right {

        border-left: none;

        padding-left: 0;

        grid-template-columns: repeat(2, 1fr);

        margin-top: 30px;

    }



    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .industries-grid {

        grid-template-columns: repeat(3, 1fr);

    }



    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (max-width: 768px) {

    .nav-links, .nav-action {

        display: none;

    }

    

    .mobile-menu-btn {

        display: flex;

    }

    

    .hero h1 {

        font-size: 2.5rem;

    }

    

    .hero h1 .text-orange {

        font-size: 2.8rem;

    }

    

    .hero-features {

        flex-wrap: wrap;

    }

    

    .services-row {

        flex-direction: column;

        align-items: center;

    }

    

    .service-card {

        max-width: 100%;

        width: 100%;

    }

    

    .info-item {

        min-width: 100%;

    }



    .industries-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .process-steps {

        flex-direction: column;

        align-items: center;

        gap: 30px;

    }



    .step-line {

        display: none;

    }



    .cta-container {

        flex-direction: column;

        text-align: center;

        gap: 30px;

    }



    .cta-container h2 {

        text-align: center;

    }



    .footer-grid {

        grid-template-columns: 1fr;

    }

}

.footer-col .social-links a:hover i{
    color: #fff;
}

/* ===============================
   Hero Section
================================= */

.hero2 {
    background: linear-gradient(
            rgba(14, 54, 122, 0.82),
            rgba(14, 54, 122, 0.82)
        ),
        url("assets/about-banner.png") center center / cover no-repeat;

    padding: 110px 0;
    color: #fff;
}


/* ===============================
   Common Styles
================================= */

.title {
    font-weight: 700;
}

.orange {
    color: #f57c20;
}

.section {
    padding: 80px 0;
}


/* ===============================
   Cards
================================= */

.shadow-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;

    height: 100%;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
}

.shadow-card:hover {
    transform: translateY(-8px);
}


/* ===============================
   Icon Box
================================= */

.icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #123a84;
    color: #fff;

    font-size: 28px;
}


/* ===============================
   Feature List
================================= */

.feature {
    padding-left: 0;
}

.feature li {
    list-style: none;
    margin-bottom: 14px;
}

.feature li i {
    color: #f57c20;
    margin-right: 10px;
}


/* ===============================
   Timeline
================================= */

.timeline {
    position: relative;

    padding-left: 30px;

    border-left: 4px solid #123a84;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: "";

    position: absolute;

    left: -40px;
    top: 6px;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #f57c20;
}


/* ===============================
   Counter Section
================================= */

.counter {
    padding: 70px 0;

    /* background: #123a84; */
    /* color: #fff; */
}

.dropdown-toggle::after {
    display: none !important;
}

.counter h2 {
    margin-bottom: 10px;

    font-size: 42px;
    font-weight: 700;
}


/* ===============================
   CTA Section
================================= */

.cta {
    padding: 70px 0;

    background: #123a84;
    color: #fff;
}


/* ===============================
   Buttons
================================= */

.btn-orange {
    display: inline-block;

    padding: 12px 30px;

    border-radius: 50px;

    background: #f57c20;
    color: #fff;

    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: #e56f16;
    color: #fff;

    transform: translateY(-2px);
}

/*==============================
WHY CHOOSE US
==============================*/

.why-us{
    padding:90px 0;
    background:#f8fbff;
}

.section-subtitle{
    color:#f57c20;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#123a84;
}

.section-title span{
    color:#f57c20;
}

.section-text{
    color:#666;
    max-width:650px;
    margin:auto;
}

.why-img{
    position:relative;
}

.why-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.experience-box{

    position:absolute;
    right:-20px;
    bottom:40px;

    background:#123a84;
    color:#fff;

    width:180px;
    height:180px;

    border-radius:50%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    border:8px solid #fff;

    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.experience-box h3{
    font-size:46px;
    font-weight:700;
    margin:0;
}

.feature-box{

    background:#fff;
    border-radius:18px;

    padding:30px;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.07);
}

.feature-box:hover{

    transform:translateY(-10px);

    background:#123a84;

    color:#fff;
}

.feature-box:hover p{
    color:#fff;
}

.feature-box .icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:#edf4ff;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:20px;

    color:#123a84;

    font-size:30px;

    transition:.35s;
}

.feature-box:hover .icon{

    background:#fff;

    color:#f57c20;
}

.feature-box h5{

    font-weight:700;

    margin-bottom:15px;
}

.feature-box p{

    color:#666;

    margin:0;
}

.counter-box{

    background:#fff;

    border-radius:18px;

    padding:35px 20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.07);

    transition:.35s;
}

.counter-box:hover{

    background:#123a84;

    color:#fff;

    transform:translateY(-8px);
}

.counter-box:hover p{

    color:#fff;
}

.counter-box h2{

    font-size:44px;

    color:#f57c20;

    font-weight:700;

    margin-bottom:10px;
}

.counter-box p{

    color:#666;

    margin:0;
}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.experience-box{

position:relative;

right:auto;

bottom:auto;

margin:20px auto 0;
}

.section-title{

font-size:34px;
}

}

/*==========================
Hero
===========================*/

.service-hero{

padding:120px 0;

background:linear-gradient(135deg,#123A84,#0B275B);

color:#fff;

}

.hero-subtitle{

letter-spacing:3px;

color:#F57C20;

font-weight:600;

}

.service-hero h1{

font-size:55px;

font-weight:700;

margin:20px 0;

}

.service-hero h1 span{

color:#F57C20;

}

.service-hero p{

font-size:17px;

opacity:.9;

line-height:30px;

}

/*==========================
Breadcrumb
===========================*/

.breadcrumb-section{

padding:15px 0;

background:#f5f7fa;

}

/*==========================
Service Card
===========================*/

.service-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.service-card img{

height:220px;

width:100%;

object-fit:cover;

transition:.5s;

}

.service-content{

padding:30px;

text-align:center;

}

.service-icon{

width:75px;

height:75px;

margin:-65px auto 20px;

background:#123A84;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:30px;

border:6px solid #fff;

transition:.4s;

position: relative;
z-index: 999999;

}

.service-card:hover{

transform:translateY(-12px);

}

.service-card:hover img{

transform:scale(1.08);

}

.service-card:hover .service-icon{

background:#F57C20;

transform:rotate(360deg);

}

.service-card h4{

font-weight:700;

margin-bottom:15px;

}

.service-card p{

color:#666;

font-size:15px;

}

.service-card a{

text-decoration:none;

color:#123A84;

font-weight:600;

}

.service-card:hover a{

color:#F57C20;

}


/*=============================
QUALITY HERO
==============================*/

.quality-hero{

padding:120px 0;

background:linear-gradient(135deg,#123A84,#0D2E69);

color:#fff;

}

.hero-subtitle{

color:#F57C20;

letter-spacing:3px;

font-weight:600;

}

.quality-hero h1{

font-size:56px;

font-weight:700;

margin:20px 0;

}

.quality-hero h1 span{

color:#F57C20;

}

.quality-hero p{

font-size:17px;

line-height:30px;

opacity:.9;

}

/*=============================
QUALITY CARD
==============================*/

.quality-card{

padding:40px;

background:#fff;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

text-align:center;

}

.quality-card:hover{

transform:translateY(-10px);

}

.quality-icon{

width:80px;

height:80px;

background:#123A84;

color:#fff;

font-size:34px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto auto 25px;

transition:.4s;

}

.quality-card:hover .quality-icon{

background:#F57C20;

transform:rotate(360deg);

}

.quality-mini{

display:flex;

align-items:center;

margin-bottom:20px;

}

.quality-mini i{

color:#F57C20;

font-size:24px;

margin-right:12px;

}

/*=========================================
   CONTACT HERO SECTION
=========================================*/

.contact-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #123A84, #0B2A63);
    color: #fff;
}

.contact-hero h1 {
    margin: 20px 0;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-hero h1 span {
    color: #F57C20;
}

.contact-hero p {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 30px;
    opacity: 0.9;
}

.hero-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    color: #F57C20;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/*=========================================
   CONTACT INFO SECTION
=========================================*/

.contact-info {
    background: #f8f9fc;
}


/*=========================================
   CONTACT CARD
=========================================*/

.contact-card {
    height: 100%;
    padding: 40px 25px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}


/*=========================================
   CONTACT ICON
=========================================*/

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #123A84;
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    background: #F57C20;
    transform: rotate(360deg);
}


/*=========================================
   CARD CONTENT
=========================================*/

.contact-card h4 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    color: #123A84;
}

.contact-card p {
    /* min-height: 80px; */
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 28px;
    color: #666;
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #123A84;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover,
.contact-card:hover a {
    color: #F57C20;
}


/*=========================================
   RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .contact-hero {
        padding: 80px 0;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-hero img {
        margin-top: 40px;
    }

}

@media (max-width: 576px) {

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

}

/*=========================================
    CONTACT FORM SECTION
=========================================*/

.contact-form-section {
    background: #F8FAFC;
}


/*=========================================
    CONTACT FORM BOX
=========================================*/

.contact-form-box {
    padding: 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


/*=========================================
    FORM CONTROLS
=========================================*/

.form-control {
    height: 55px;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    border-color: #123A84;
    box-shadow: 0 0 0 0.15rem rgba(18, 58, 132, 0.15);
}


/*=========================================
    TEXTAREA
=========================================*/

textarea.form-control {
    height: auto;
    min-height: 180px;
    padding-top: 15px;
    resize: none;
}


/*=========================================
    OFFICE INFORMATION
=========================================*/

.office-box {
    height: 100%;
    padding: 50px;
    background: #123A84;
    color: #fff;
    border-radius: 20px;
}

.office-box h3 {
    color: #fff;
    font-weight: 700;
}

.office-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.office-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    line-height: 28px;
}

.office-list li:last-child {
    margin-bottom: 0;
}

.office-list i {
    min-width: 25px;
    color: #F57C20;
    font-size: 22px;
}


/*=========================================
    GOOGLE MAP
=========================================*/

.map-section {
    overflow: hidden;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}


/*=========================================
    RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .contact-form-box,
    .office-box {
        padding: 35px;
    }

    .office-box {
        margin-top: 30px;
    }

}

@media (max-width: 576px) {

    .contact-form-box,
    .office-box {
        padding: 25px;
        border-radius: 15px;
    }

    .form-control {
        height: 50px;
    }

    textarea.form-control {
        min-height: 150px;
    }

    .office-list li {
        gap: 12px;
        font-size: 15px;
        line-height: 24px;
    }

    .office-list i {
        font-size: 20px;
    }

    .map-section iframe {
        height: 350px;
    }

}

.side-card {
    padding: 35px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.side-card li {
    margin-bottom: 15px;
}

/*=========================================
    INDUSTRIES
=========================================*/

.industry-box{
    overflow:hidden;
    background:#fff;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.industry-box:hover{
    transform:translateY(-8px);
}

.industry-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.industry-box:hover img{
    transform:scale(1.08);
}

.industry-content{
    padding:18px;
    display:flex;
    align-items:center;
    gap:12px;
}

.industry-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#123A84;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.industry-content h6{
    margin:0;
    font-size:17px;
    font-weight:600;
    color:#123A84;
}


/*=========================================
    SECTION TITLE
=========================================*/

.section-title {
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 700;
    color: #123A84;
}

.section-title span {
    color: #F57C20;
}


/*=========================================
    NETWORK SECTION
=========================================*/

.network-section {
    background: #F8FAFC;
}


/*=========================================
    NETWORK CARD
=========================================*/

.network-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.network-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #F57C20;
    transform: scaleX(0);
    transition: .35s;
}

.network-card:hover::before {
    transform: scaleX(1);
}

.network-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}


/*=========================================
    ICON
=========================================*/

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #123A84;
    color: #fff;
    font-size: 34px;
    border-radius: 50%;
    transition: all .5s ease;
}

.network-card:hover .icon {
    background: #F57C20;
    transform: rotateY(360deg);
}


/*=========================================
    CARD CONTENT
=========================================*/

.network-card h4 {
    margin-bottom: 15px;
    color: #123A84;
    font-size: 24px;
    font-weight: 700;
}

.network-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 28px;
}


/*=========================================
    NETWORK PROCESS
=========================================*/

.network-process {
    background: #fff;
}

.network-process img {
    border-radius: 20px;
}


/*=========================================
    TIMELINE
=========================================*/

.timeline {
    position: relative;
    margin-top: 30px;
    padding-left: 35px;
    border-left: 4px solid #123A84;
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -44px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #F57C20;
    border-radius: 50%;
}

.timeline-item h5 {
    margin-bottom: 8px;
    color: #123A84;
    font-weight: 700;
}

.timeline-item p {
    margin: 0;
    color: #666;
    line-height: 28px;
}


/*=========================================
    COUNTER
=========================================*/
.counter{
    padding:80px 0;
    background:#123A84;
}

.counter .col-lg-3{
    margin-bottom:30px;
}

.counter h2{
    margin-bottom:10px;
    color:#F57C20;
    font-size:48px;
    font-weight:700;
    line-height:1;
}

.counter p{
    margin:0;
    color:#fff;
    font-size:17px;
    font-weight:500;
}


/*=========================================
    CTA SECTION
=========================================*/

.cta {
    padding: 90px 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #123A84, #0B2A63);
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700;
}

.cta p {
    max-width: 720px;
    margin: 0 auto 35px;
    font-size: 17px;
    line-height: 30px;
    color: rgba(255, 255, 255, .9);
}

.cta .btn {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #F57C20;
    border: none;
    border-radius: 50px;
    transition: all .3s ease;
}

.cta .btn:hover {
    color: #fff;
    background: #E46D11;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(245, 124, 32, .35);
}


/*=========================================
    RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero img {
        margin-top: 40px;
    }

    .section-title {
        font-size: 34px;
    }

    .counter {
        padding: 70px 0;
    }

    .cta {
        padding: 70px 0;
    }

}

@media (max-width: 767px) {
.hero-content {
    flex: 0 0 60%;
    max-width: 100%;
    padding-right: 20px;
}
    .network-card {
        padding: 30px 25px;
    }

    .icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .network-card h4 {
        font-size: 22px;
    }

    .counter h2 {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 30px;
    }

}

@media (max-width: 576px) {

    .hero h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 28px;
    }

    .timeline {
        padding-left: 25px;
    }

    .timeline-item::before {
        left: -34px;
    }

    .cta .btn {
        width: 100%;
        max-width: 280px;
    }

}


/* Remove bullet */
.navbar-nav,
.navbar-nav li{
    list-style: none;
    padding-left: 0;
}

/* Custom dropdown arrow */
.navbar .dropdown-toggle::after{
    content: "\F282";          /* Bootstrap Icons chevron-down */
    font-family: "bootstrap-icons";
    border: none;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 12px;
    transition: .3s;
}

/* Rotate on open */
.navbar .dropdown.show .dropdown-toggle::after,
.navbar .dropdown:hover .dropdown-toggle::after{
    transform: rotate(180deg);
}

.navbar .dropdown-toggle::after{
    content: "\F229";   /* chevron-down */
    font-family: "bootstrap-icons";
    border: none;
}

/*=============================
NAVBAR HOVER EFFECT
=============================*/

.navbar .nav-link{
    position: relative;
    color: #123A84;
    font-weight: 600;
    transition: .3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
    color: #F57C20;
}

/* Underline Animation */

.navbar .nav-link::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #F57C20;
    transition: .35s ease;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before{
    width: 100%;
}


/*=============================
DROPDOWN HOVER
=============================*/

.navbar .dropdown-menu{
    border: 0;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.navbar .dropdown-item{
    padding: 12px 22px;
    transition: .3s;
}

.navbar .dropdown-item:hover{
    background: #123A84;
    color: #fff;
    padding-left: 30px;
}


/*=============================
ANGLE ICON ROTATE
=============================*/

.navbar .dropdown-toggle::after{
    border: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 12px;
    margin-left: 8px;
    transition: .3s;
}

.navbar .dropdown:hover .dropdown-toggle::after{
    transform: rotate(180deg);
}

.navbar .dropdown-menu{
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
}

.navbar .dropdown-menu.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width:992px){

    .navbar .dropdown:hover > .dropdown-menu{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}

/*=========================
        ACCORDION
        =========================*/

        .accordion-item{

            margin-bottom:20px;

            border:none;

            border-radius:15px !important;

            overflow:hidden;

            box-shadow:0 10px 25px rgba(0,0,0,.08);

        }

        .accordion-button{

            padding:20px 25px;

            font-weight:600;

            font-size:17px;

        }

        .accordion-button:focus{

            box-shadow:none;

        }

        .accordion-button:not(.collapsed){

            background:#123A84;

            color:#fff;

        }

        /*=========================
        CTA
        =========================*/

        .cta{

            padding:80px 0;

            color:#fff;

            background:#123A84;

        }

        /* Accordion Arrow White */

.accordion-button::after{
    filter: brightness(0) invert(0);
    transition: all .3s ease;
}

/* Open State */

.accordion-button:not(.collapsed)::after{
    filter: brightness(0) invert(1);
}

/* Optional: closed state dark blue */

.accordion-button.collapsed::after{
    filter: brightness(0) saturate(100%) invert(18%) sepia(79%) saturate(1457%) hue-rotate(207deg) brightness(94%) contrast(94%);
}

.nav-links.active{
    left:0 !important;
    transform:translateX(0) !important;
    opacity:1 !important;
    visibility:visible !important;
    display:flex !important;
}
.dropdown-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.dropdown-icon{
    cursor:pointer;
    padding:0px;
}

.dropdown.active .dropdown-icon i{
    transform:rotate(180deg);
    transition:.3s;
}

/*=========================
Mobile Navbar
=========================*/

@media (max-width:991px){

    .nav-links {

        display: flex;

        gap: 0px;

    }

    .nav-links{

        position: fixed;

        top: 0;

        left: -100%;

        width: 280px;

        height: calc(100vh - 85px);

        background: #fff;

        display: flex;

        flex-direction: column;

        padding: 20px;

        transition: .35s ease;

        z-index: 9999;

        box-shadow: 0 10px 30px rgba(0,0,0,.15);

    }

    .nav-links.active{

        left: 0;

    }

    .nav-links a,
    .dropdown-toggle{

        width:100%;

        padding:15px 0;

        border-bottom:1px solid #eee;

    }

    .mobile-menu-btn{

        display:flex;

    }

    /* div.dropdown{
    padding: 15px 0;
    } */

}


@media (min-width:992px){

    .mobile-menu-btn{
        display:none;
    }

    .nav-links{
        display:flex;
        position:static;
        width:auto;
        height:auto;
        padding:0;
        box-shadow:none;
    }

}

.services-list{

    background:#fff;

}

.service-item{

    padding:40px;

    border-radius:25px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.service-item:hover{

    transform:translateY(-8px);

}

.service-img{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:20px;

}

.service-number{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    color:#F57C20;

    margin-bottom:15px;

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#123A84;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:20px;

}

.service-item h2{

    font-size:40px;

    font-weight:700;

    margin-bottom:20px;

    color:#123A84;

}

.service-item p{

    color:#666;

    line-height:30px;

}

.service-features{

    padding:0;

    margin:25px 0;

    list-style:none;

}

.service-features li{

    margin-bottom:12px;

    font-weight:500;

}

.service-features i{

    color:#F57C20;

    margin-right:10px;

}

.btn-theme{

    background:#F57C20;

    color:#fff;

    border-radius:50px;

    padding:14px 35px;

}

.btn-theme:hover{

    background:#123A84;

    color:#fff;

}

@media(max-width:991px){

    .service-item{

        padding:25px;

    }

    .service-img{

        height:260px;

    }

    .service-item h2{

        font-size:30px;

    }

}