
        /* ================= BASE & MOBILE FIRST ================= */
        :root {
            --primary: #0a2a5c;
            --secondary: #c5a047;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
            font-size: 16px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lora', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        .container {
            width: 100%;
            padding: 0 20px;
            margin: 0 auto;
        }

        /* ================= MOBILE HEADER ================= */
        .mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            background: var(--primary);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        .logo-container {
            display: flex;
            /* flex-direction: column; */
        }

        .main-logo {
            font-size: 22px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            margin-bottom: 4px;
        }
        .main-logo span{
           color: var(--secondary);
        }

        .logo-subtitle {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
            font-weight: 300;
        }

        .mobile-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        /* ================= MOBILE NAVIGATION ================= */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            height: 100vh;
            background: white;
            z-index: 2000;
            transition: var(--transition);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
            /* border-top: solid 2px var(--secondary); */
        }

        .mobile-nav.active {
            right: 0;
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px;
            background: var(--primary);
            color: white;
            border-bottom: 4px solid var(--secondary);
        }

        .nav-header .main-logo {
            font-size: 20px;
            margin-bottom: 0;
        }

        .close-nav {
            background: none;
            border: none;
            color: white;
            font-size: 22px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 30px 20px;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            padding: 18px 0;
            text-decoration: none;
            color: var(--dark);
            font-size: 16px;
            font-weight: 500;
            border-bottom: 1px solid var(--light-gray);
            transition: var(--transition);
        }

        .mobile-nav-link i {
            margin-right: 15px;
            color: var(--secondary);
            font-size: 18px;
            width: 24px;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: var(--primary);
            padding-left: 10px;
        }

        .nav-contact {
            padding: 25px 20px;
            background: var(--light);
            margin-top: auto;
        }

        .nav-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--gray);
        }

        .nav-contact-item i {
            color: var(--secondary);
            margin-right: 12px;
            font-size: 16px;
            width: 20px;
        }

        /* ================= HERO SECTION ================= */
        /* .hero {
            padding: 60px 20px;
            background: linear-gradient(135deg, #0a2a5c, rgba(1, 88, 146, 0.7));
            color: white;
            position: relative;
            overflow: hidden;
            height: 60vh;
        } */
         .hero {
            min-height: 50vh;       /* 🔽 reduce height */
            padding: 40px 20px;     /* 🔽 smaller padding */
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(130deg, #0a2a5c, rgba(1, 88, 146, 0.3), rgba(225, 184, 0, 0.1));
            color: white;
        }

        .hero-slider {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slide.active {
            opacity: 0.25; /* controls darkness */
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* .hero h1 {
            font-size: 30px;
            margin-bottom: 20px;
            font-weight: 700;
        } */

        .hero h1 {
            font-size: 2rem;      /* smaller & professional */
            line-height: 1.2;
            max-width: 700px;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 25px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            transition: var(--transition);
            border: 2px solid transparent;
            gap: 12px;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
        }

        .btn-primary:hover {
            background: #b08d3a;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(197, 160, 71, 0.3);
        }
  
        .service-menu a{
            text-decoration: none !important;
            padding: 5px 0;
        }
        .service-menu a:hover{
            text-decoration: none !important;
            background: #b08d3a;
            color: white;
        }
        .service-menu:hover{
            background: #b08d3a;
            color: white;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border-color: white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* ================= SERVICES SECTION ================= */
        .section {
            padding: 70px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary);
        }

        .section-intro {
            text-align: center;
            color: var(--gray);
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
            
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 25px;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        /* .mains-serv{
            padding: 2rem 0;
            position: relative;
        } */
        .mains-serv {
            padding: 5rem 0;
            background: linear-gradient(
                to bottom,
                var(--primary) 0%,
                var(--primary) 40%,
                #ffffff 40%,
                #ffffff 100%
            );
        }        
        /* .mains-serv::before{
            content: '';
            background: var(--primary);
            width: 100%;
            height: 5rem;
            padding: 3rem 0;
            position: absolute;
            z-index: -1;
            bottom: 15rem;
        } */
        /* ================= FOOTER ================= */
        footer {
            background: var(--primary);
            color: white;
            padding-top: 50px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 0 20px 50px;
        }

        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }

        .footer-section p {
            margin-bottom: 20px;
            opacity: 0.9;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0.9;
        }

        .contact-item i {
            color: var(--secondary);
            font-size: 18px;
        }

        .copyright {
            text-align: center;
            padding: 25px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ================= ANIMATIONS ================= */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ================= TABLET STYLES ================= */
        @media screen and ( max-width: 768px){

            .desktop-header{
                display: none;
            }
            .desktop-nav{
                display: none;
            }
            
            .hero {
                    min-height: 45vh;
                    padding: 50px 30px;
    
            }
            .logo-container {
                display: flex;
                flex-direction: column;
            }
            .content-home{
                display: flex;
                align-items: center;
                flex-direction: column;
            }
            

        }


        @media (min-width: 768px) {
            .container {
                padding: 0 30px;
            }
            
            .mobile-header {
                padding: 20px 30px;
            }
            
            .main-logo {
                font-size: 24px;
            }
            
            .logo-subtitle {
                font-size: 12px;
            }
            
            .hero {
                padding: 100px 30px;
            }
            
            /* .hero h1 {
                font-size: 48px;
            } */
            .hero h1 {
                font-size: 2.4rem;
            }           
            .hero p {
                font-size: 20px;
            }
            
            .hero-actions {
                flex-direction: row;
                gap: 20px;
            }
            
            .btn {
                padding: 20px 35px;
            }
            
            .section {
                padding: 90px 30px;
            }
            
            .section-title {
                font-size: 40px;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
                padding: 0 30px 60px;
            }
            
            .mobile-nav {
                width: 350px;
            }
            .desktop-header{
                display: none;
            }
            .content-home{
                max-width: 1200px;
                margin: auto;
                display: flex;
                align-items: center;
            }


            
           
        }

        /* ================= DESKTOP STYLES ================= */
        @media (min-width: 1024px) {
            .container {
                max-width: 1200px;
                margin: 0 auto;
            }
            
            .mobile-header {
                display: none;
            }
            
            /* Desktop Header */
            .desktop-header {
                display: block;
                background: var(--primary);
                color: white;
                /* padding: 15px 0; */
                position: sticky;
                top: 0;
                z-index: 1000;
                box-shadow: var(--shadow);
            }
            
            .header-top {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 30px;
                margin-bottom: 15px;
            }
            
            .header-contact {
                display: flex;
                gap: 30px;
                font-size: 14px;
            }
            
            .header-contact-item {
                display: flex;
                align-items: center;
                gap: 8px;
            }
            
            .header-contact-item i {
                color: var(--secondary);
            }
            
            /* Desktop Navigation */
            .desktop-nav {
                background: white;
                padding: 20px 30px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            }
            
            .desktop-nav-menu {
                display: flex;
                list-style: none;
                justify-content: center;
                gap: 10px;
            }
            
            .desktop-nav-link {
                padding: 25px 25px;
                text-decoration: none;
                color: var(--dark);
                font-weight: 500;
                font-size: 15px;
                text-transform: uppercase;
                letter-spacing: 1px;
                position: relative;
                transition: var(--transition);
            }
            
            .desktop-nav-link::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 3px;
                background: var(--secondary);
                transition: var(--transition);
            }
            
            .desktop-nav-link:hover::after,
            .desktop-nav-link.active::after {
                width: 60%;
            }
            
            .desktop-nav-link:hover {
                color: var(--primary);
            }
            .logo-text {
                display: flex;
                flex-direction: column !important;
                line-height: 1.1;
            }
            /* .hero {
                padding: 150px 30px;
            } */

            .hero {
                min-height: 50vh;   /* desktop = slimmer hero */
                padding: 60px 30px;
            }            
            /* .hero h1 {
                font-size: 56px;
                max-width: 800px;
            } */
            .hero h1 {
                font-size: 2.8rem; /* desktop sweet spot */
            }            
            .hero p {
                max-width: 700px;
            }
            
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 35px;
            }
            
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 60px;
            }
            
            .mobile-nav {
                display: none;
            }
        }

        /* ================= LARGE DESKTOP ================= */
        @media (min-width: 1200px) {
            .container {
                max-width: 1400px;
            }
            
            .hero h1 {
                font-size: 2.8rem; /* desktop sweet spot */
            }
            
            .section-title {
                font-size: 48px;
            }
            .desktop-nav{
                border-top: solid 3px var(--secondary);
            }
        }

        /* ================= UTILITIES ================= */
        .mt-30 { margin-top: 30px; }
        .mb-30 { margin-bottom: 30px; }
        .text-center { text-align: center; }

        /* =========== HOME ============ */

        .content-home{
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
        }
        .content-industry{
            max-width: 1200px;
            margin: auto;
            display: flex;
            padding: 4rem 0;
        }
        .content-industry .side-1{
            flex-basis: 20%;
        }
       
        .content-industry h2{
            padding: 1rem 0;
        }
        .sector{
            padding: 1rem 15px;
        }
        .content-industry ul{
            padding: 10px 1rem;
        }

        /* .content-services{
            max-width: 1200px;
            margin: 20px auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            position: relative;
        } */

        .content-services {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        /* .content-services .card-services{
            flex: 1;
            overflow: hidden;
            height: 450px;
            background: #0a2a5c;
            box-shadow: #e9ecef 10px 5px 30px;
            border-radius: 5px;
            padding: 5px;

        } */

        .card-services {
            background: #0a2a5c;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
            /* box-shadow: 0 15px 40px rgba(0,0,0,0.15); */
        }        
        /* .content-services h2{
           color: white;
           position: absolute;
           opacity: 1;

        } */
        /* .content-services .card-services img{
           object-fit: cover;

        } */
         .card-services h2 {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            color: #fff;
            font-size: 1.3rem;
            z-index: 2;
        }

        .card-services::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0,0,0,0.6),
                transparent
            );
        }
         /* .card-services img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border: solid 5px linear-gradient(red, blue);
            padding: 3px;
        } */


        /* .card-services img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        } */
         .card-services img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease, filter 0.6s ease;
        }
        .card-services:hover img {
            transform: scale(1.08);
            filter: brightness(1.05);
            cursor: pointer;
        }
        .card-services h2 {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            color: #fff;
            font-size: 1.3rem;
            z-index: 2;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        .card-services:hover h2 {
            transform: translateY(-6px);
        }

        .card-services::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0,0,0,0.6),
                transparent
            );
            transition: background 0.4s ease;
        }

        .card-services:hover::after {
            background: linear-gradient(
                to top,
                rgba(0,0,0,0.45),
                transparent
            );
        }

        .content-home .card-home{
           flex: 1;
           padding: 3rem 2rem;
        }
        .content-home .card-home h1 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .content-home .card-home p {
            margin: 20px 0;
        }
        .content-home .card-home a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 700;
        }
        .footer-logo img {
            max-width: 180px;
            margin-bottom: 20px;
            display: block;
        }
        /* ======== */
        /* ===== HEADER LOGO FIX ===== */

.desktop-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

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

.desktop-logo .main-logo {
    font-size: 26px;
    font-weight: 700;
}

.desktop-logo .logo-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.85;
}

     /* ================= ABOUT SECTION ================= */

        .section-about {
            max-width:1200px;
            margin:0 auto;
            padding: 90px 0;
            background: #fff;
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 60px;
        }

        /* LEFT MENU */
        .about-menu {
            border-right: 1px solid var(--light-gray);
            padding-right: 30px;
        }

        .about-menu-title {
            font-size: 18px;
            color: var(--secondary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-menu ul {
            list-style: none;
        }

        .about-menu li {
            padding: 5px 15px;
            cursor: pointer;
            font-weight: 500;
            color: var(--dark);
            position: relative;
            transition: var(--transition);
            border-bottom: solid 1px var(--secondary);
        }
        .about-menu li:first-child  {
           border-top: solid 1px var(--secondary); 
        }

        .about-menu li::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
            opacity: 0;
            transition: var(--transition);
        }

        .about-menu li:hover,
        .about-menu li.active {
            color: #f2f2f2;
            background: #c5a047;
        }

        /* .about-menu li.active::after {
            opacity: 1;
        } */

        /* RIGHT CONTENT */
        .about-content {
            max-width: 800px;
        }

        .about-title {
            font-size: 34px;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
        }

        .about-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 2px;
            background: var(--secondary);
            margin-top: 12px;
        }

        .about-content p {
            margin-bottom: 22px;
            color: #333;
            line-height: 1.8;
            font-size: 16px;
        }

        .about-content .highlight {
            font-weight: 500;
            color: var(--dark);
        }

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

        @media (max-width: 900px) {
            .about-wrapper {
                grid-template-columns: 1fr;
            }

            .about-menu {
                border-right: none;
                border-bottom: 1px solid var(--light-gray);
                padding-bottom: 30px;
            }
        }


        /* ==================== */
        .about-menu ul li a {
            display: block;
            /* padding: 10px 14px; */
            text-decoration: none;
            color: #333;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        /* hover */
        .about-menu ul li a:hover {
            color: #f2f2f2;
        }

        /* active item */
        .about-menu ul li.active {
            background: #c5a047;    
            color: #fff;
            font-weight: 600;
        }
/* ===================== services ================================ */

       /* ================= SERVICES SECTION ================= */
        .section {
            padding: 70px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary);
        }

        .section-intro {
            text-align: center;
            color: var(--gray);
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 25px;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-card p {
            color: var(--gray);
            line-height: 1.7;
        }


        /* ================= SERVICES INNER PAGE – SAFE PREFIX ================= */

.svc-wrapper{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 260px 1fr 260px;
    gap:40px;
}

.svc-left,
.svc-right{
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:20px 18px;
    height:fit-content;
}

.svc-title{
    font-size:18px;
    margin-bottom:15px;
    color: var(--secondary);
}

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

.svc-list li{
    padding:10px 5px;
    border-bottom:1px solid #eee;
    font-size:14px;
    cursor:pointer;
}

.svc-list li:last-child{
    border-bottom:none;
}

.svc-list li.active{
    color:#0a2a5c;
    font-weight:600;
}
.svc-list li a{
    color:#0a2a5c;
    text-decoration: none;
}

/* MAIN */

.svc-main p{
    margin-bottom:18px;
    color:#444;
    line-height:1.7;
}

.svc-heading{
    font-size:32px;
    color:#0a2a5c;
    margin-bottom:25px;
}

.svc-subheading{
    margin-top:35px;
    margin-bottom:15px;
    color:#0a2a5c;
    font-size:22px;
}

/* Quote block */

.svc-quote-box{
    margin:35px 0;
    background:#f3f3f3;
    border-radius:12px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:25px;
}

.svc-quote-text{
    font-style:italic;
    font-weight:600;
    color:#7a5a18;
    flex:1;
}

.svc-quote-image img{
    width:160px;
    height:auto;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

/* bullets */

.svc-bullets{
    padding-left:18px;
}

.svc-bullets li{
    margin-bottom:10px;
}

/* Responsive */

@media(max-width:992px){
    .svc-wrapper{
        grid-template-columns:1fr;
    }

    .svc-left,
    .svc-right{
        order:2;
    }

    .svc-main{
        order:1;
    }
}

/* =========== contact ====================== */

 /* ================= CONTACT SECTION ================= */
    .section-contact {
        background: var(--light);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .contact-info,
    .contact-form {
        background: white;
        padding: 35px;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .contact-info h3,
    .contact-form h3 {
        color: var(--primary);
        margin-bottom: 25px;
        font-size: 24px;
    }

    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .contact-info-item i {
        font-size: 20px;
        color: var(--secondary);
        margin-top: 5px;
    }

    .contact-info-item span {
        font-weight: 600;
        color: var(--primary);
        display: block;
        margin-bottom: 3px;
    }

    .contact-info-item p {
        color: var(--gray);
        line-height: 1.6;
    }

    /* Form */
    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px 18px;
        border: 1px solid var(--light-gray);
        border-radius: 4px;
        font-family: inherit;
        font-size: 15px;
        transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--secondary);
        box-shadow: 0 0 0 3px rgba(197, 160, 71, 0.15);
    }

    .contact-form button {
        width: 100%;
    }

    /* Tablet & Desktop */
    @media (min-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
    }

