
        /* =====================================================
           GLOBAL
        ====================================================== */

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


        html {
            scroll-behavior: smooth;
        }


        body {
            font-family: "Poppins", sans-serif;
            color: #333;
            background: #fff;
            line-height: 1.7;
        }


        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: "Playfair Display", serif;
        }


        a {
            text-decoration: none;
        }


        .section-padding {
            padding: 90px 0;
        }


        .section-heading {
            text-align: center;
            margin-bottom: 55px;
        }


        .section-heading .small-title {
            color: #b08a3e;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }


        .section-heading h2 {
            color: #123b63;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
        }


        .section-heading p {
            max-width: 700px;
            margin: auto;
            color: #777;
        }


        /* =====================================================
           TOP HEADER
        ====================================================== */

        .top-header {
            background: #fff;
            border-bottom: 1px solid #eaeaea;
            padding: 17px 0;
        }


        .logo {
            font-family: "Playfair Display", serif;
            font-size: 30px;
            font-weight: 700;
            color: #123b63;
        }


        .logo span {
            color: #b08a3e;
        }


        .top-menu {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 28px;
        }


        .top-menu a {
            color: #333;
            font-size: 14px;
            font-weight: 500;
            transition: 0.3s;
        }


        .top-menu a:hover {
            color: #b08a3e;
        }


        /* =====================================================
           MAIN NAVIGATION
        ====================================================== */

        .main-navbar {
            background: #123b63;
            padding: 0;
            position: relative;
            z-index: 1000;
        }


        .main-navbar .navbar-nav {
            margin: auto;
        }


        .main-navbar .nav-link {
            color: #fff;
            padding: 17px 28px !important;
            font-size: 15px;
            font-weight: 500;
            transition: 0.3s;
        }


        .main-navbar .nav-link:hover,
        .main-navbar .nav-link.active {
            background: #b08a3e;
            color: #fff;
        }


        .mobile-logo {
            color: #fff;
            font-family: "Playfair Display", serif;
            font-size: 22px;
            font-weight: 700;
        }


        .navbar-toggler {
            border: 1px solid rgba(255,255,255,.5);
        }


        .navbar-toggler:focus {
            box-shadow: none;
        }


        /* =====================================================
           HERO SLIDER
        ====================================================== */

        .hero-slider {
            position: relative;
        }


        .hero-slider .carousel-item {
            height: 650px;
            position: relative;
        }


        .hero-slider .carousel-item img {
            width: 100%;
            height: 650px;
            object-fit: cover;
        }


        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                linear-gradient(
                    90deg,
                    rgba(8, 31, 52, .88),
                    rgba(8, 31, 52, .45),
                    rgba(8, 31, 52, .15)
                );
        }


        .hero-content {
            position: absolute;
            top: 50%;
            left: 9%;
            transform: translateY(-50%);
            max-width: 720px;
            color: #fff;
        }


        .hero-content .small-title {
            color: #d2ad67;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }


        .hero-content h1 {
            font-size: 58px;
            line-height: 1.15;
            font-weight: 700;
            margin-bottom: 25px;
        }


        .hero-content p {
            font-size: 18px;
            max-width: 650px;
            color: #eee;
            margin-bottom: 32px;
        }


        .btn-gold {
            display: inline-block;
            background: #b08a3e;
            border: 2px solid #b08a3e;
            color: #fff;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 600;
            transition: .3s;
        }


        .btn-gold:hover {
            background: transparent;
            border-color: #fff;
            color: #fff;
        }


        .btn-outline-gold {
            display: inline-block;
            background: transparent;
            border: 2px solid #b08a3e;
            color: #b08a3e;
            padding: 11px 28px;
            font-size: 14px;
            font-weight: 600;
            transition: .3s;
        }


        .btn-outline-gold:hover {
            background: #b08a3e;
            color: #fff;
        }
        
        /*========= contact form ========== */
        
         .contact-section {
            padding: 70px 0;
        }

        .contact-wrapper {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0,0,0,0.08);
        }

        .contact-info {
            background: #172033;
            color: #ffffff;
            padding: 45px 35px;
            height: 100%;
        }

        .contact-info h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-info p {
            color: #d5d9e2;
            line-height: 1.7;
        }

        .contact-info-item {
            margin-top: 30px;
        }

        .contact-info-item h6 {
            font-weight: 700;
            margin-bottom: 7px;
        }

        .contact-info-item p {
            margin: 0;
        }

        .contact-form {
            padding: 45px 40px;
        }

        .contact-form h2 {
            font-size: 30px;
            font-weight: 700;
            color: #172033;
            margin-bottom: 10px;
        }

        .form-label {
            font-weight: 600;
            color: #333;
        }

        .form-control,
        .form-select {
            min-height: 48px;
            border-radius: 6px;
        }

        textarea.form-control {
            min-height: 140px;
            resize: vertical;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #172033;
            box-shadow: 0 0 0 0.2rem rgba(23,32,51,.12);
        }

        .btn-submit {
            background: #172033;
            border: none;
            color: #fff;
            padding: 13px 30px;
            font-weight: 600;
            border-radius: 6px;
        }

        .btn-submit:hover {
            background: #283653;
            color: #fff;
        }

        label.error {
            color: #dc3545;
            font-size: 13px;
            margin-top: 5px;
        }

        .form-control.error,
        .form-select.error {
            border-color: #dc3545;
        }

        .required {
            color: #dc3545;
        }

        @media (max-width: 767px) {

            .contact-section {
                padding: 30px 15px;
            }

            .contact-info,
            .contact-form {
                padding: 30px 25px;
            }

        }


        /* =====================================================
           WHO WE ARE
        ====================================================== */

        .who-section {
            background: #fff;
        }


        .who-image-wrapper {
            position: relative;
            padding-right: 25px;
        }


        .who-image {
            width: 100%;
            height: 480px;
            object-fit: cover;
        }


        .who-image-box {
            position: absolute;
            bottom: -25px;
            right: 0;
            background: #123b63;
            color: #fff;
            padding: 22px 30px;
            text-align: center;
        }


        .who-image-box strong {
            display: block;
            font-size: 30px;
            color: #d2ad67;
        }


        .who-image-box span {
            font-size: 13px;
        }


        .who-content {
            padding-left: 30px;
        }


        .who-content .small-title {
            color: #b08a3e;
            letter-spacing: 3px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
        }


        .who-content h2 {
            color: #123b63;
            font-size: 42px;
            font-weight: 700;
            margin: 12px 0 22px;
        }


        .who-content p {
            color: #666;
            margin-bottom: 18px;
        }


        /* =====================================================
           TESTIMONIALS
        ====================================================== */

        .testimonial-section {
            background: #f7f8fa;
        }


        .testimonial-carousel {
            max-width: 950px;
            margin: auto;
        }


        .testimonial-box {
            background: #fff;
            padding: 50px 90px;
            text-align: center;
            box-shadow: 0 10px 35px rgba(0,0,0,.06);
            margin: 10px 40px;
        }


        .quote-icon {
            width: 60px;
            height: 60px;
            background: #123b63;
            color: #d2ad67;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 25px;
        }


        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            color: #666;
            line-height: 1.9;
        }


        .testimonial-name {
            margin-top: 25px;
            color: #123b63;
            font-size: 20px;
            font-weight: 700;
        }


        .testimonial-location {
            color: #999;
            font-size: 13px;
        }


        .testimonial-control {
            width: 45px;
            height: 45px;
            background: #123b63;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }


        .testimonial-control:hover {
            background: #b08a3e;
        }


        .testimonial-indicators {
            position: static;
            margin-top: 30px;
        }


        .testimonial-indicators button {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #123b63;
        }


        /* =====================================================
           WHAT WE DO
        ====================================================== */

        .works-section {
            background: #fff;
        }


        .service-card {
            height: 100%;
            background: #fff;
            border: 1px solid #eee;
            overflow: hidden;
            transition: .4s;
        }


        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,.12);
        }


        .service-image-wrapper {
            overflow: hidden;
        }


        .service-image {
            width: 100%;
            height: 235px;
            object-fit: cover;
            transition: .5s;
        }


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


        .service-content {
            padding: 28px;
        }


        .service-number {
            color: #b08a3e;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
        }


        .service-content h3 {
            color: #123b63;
            font-size: 24px;
            font-weight: 700;
            margin: 8px 0 15px;
        }


        .service-content p {
            color: #777;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 22px;
        }


        .read-more {
            color: #123b63;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: .3s;
        }


        .read-more i {
            margin-left: 6px;
            transition: .3s;
        }


        .read-more:hover {
            color: #b08a3e;
        }


        .read-more:hover i {
            margin-left: 12px;
        }


        /* =====================================================
           CALL TO ACTION
        ====================================================== */

        .cta-section {
            background:
                linear-gradient(
                    rgba(18,59,99,.94),
                    rgba(18,59,99,.94)
                ),
                url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1920&q=80");

            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 75px 0;
        }


        .cta-section h2 {
            font-size: 40px;
            margin-bottom: 15px;
        }


        .cta-section p {
            color: #ddd;
            margin-bottom: 25px;
        }


        /* =====================================================
           FOOTER
        ====================================================== */

        .footer {
            background: #0c263e;
            color: #fff;
            padding-top: 70px;
        }


        .footer-logo {
            font-family: "Playfair Display", serif;
            font-size: 30px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            display: block;
        }


        .footer-logo span {
            color: #d2ad67;
        }


        .footer p {
            color: #b9c2ca;
            font-size: 14px;
            line-height: 1.9;
        }


        .footer h4 {
            font-size: 20px;
            margin-bottom: 22px;
        }


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


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


        .footer-links a {
            color: #b9c2ca;
            font-size: 14px;
            transition: .3s;
        }


        .footer-links a:hover {
            color: #d2ad67;
            padding-left: 5px;
        }


        .contact-item {
            display: flex;
            margin-bottom: 14px;
        }


        .contact-item i {
            width: 30px;
            color: #d2ad67;
            padding-top: 4px;
        }


        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }


        .social-links a {
            width: 38px;
            height: 38px;
            border: 1px solid #52697c;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: .3s;
        }


        .social-links a:hover {
            background: #b08a3e;
            border-color: #b08a3e;
        }


        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.1);
            margin-top: 50px;
            padding: 22px 0;
            text-align: center;
            color: #8e9aa4;
            font-size: 13px;
        }


        /* =====================================================
           BACK TO TOP
        ====================================================== */

        #backToTop {
            display: none;
            position: fixed;
            right: 25px;
            bottom: 25px;
            width: 45px;
            height: 45px;
            border: 0;
            border-radius: 50%;
            background: #b08a3e;
            color: #fff;
            z-index: 9999;
            cursor: pointer;
            transition: .3s;
        }


        #backToTop:hover {
            background: #123b63;
        }


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

        @media (max-width: 991px) {

            .top-menu {
                display: none;
            }


            .hero-slider .carousel-item,
            .hero-slider .carousel-item img {
                height: 550px;
            }


            .hero-content {
                left: 7%;
                right: 7%;
            }


            .hero-content h1 {
                font-size: 44px;
            }


            .who-content {
                padding-left: 0;
                margin-top: 50px;
            }


            .who-image-wrapper {
                padding-right: 0;
            }


            .testimonial-box {
                padding: 40px 60px;
            }

        }


        @media (max-width: 767px) {

            .section-padding {
                padding: 65px 0;
            }


            .section-heading h2 {
                font-size: 34px;
            }


            .hero-slider .carousel-item,
            .hero-slider .carousel-item img {
                height: 480px;
            }


            .hero-content h1 {
                font-size: 36px;
            }


            .hero-content p {
                font-size: 15px;
            }


            .who-image {
                height: 350px;
            }


            .testimonial-box {
                padding: 35px 25px;
                margin: 10px 20px;
            }


            .testimonial-text {
                font-size: 16px;
            }


            .testimonial-control {
                width: 38px;
                height: 38px;
            }


            .cta-section h2 {
                font-size: 32px;
            }

        }


        @media (max-width: 575px) {

            .logo {
                font-size: 25px;
            }


            .hero-slider .carousel-item,
            .hero-slider .carousel-item img {
                height: 430px;
            }


            .hero-content {
                left: 6%;
                right: 6%;
            }


            .hero-content h1 {
                font-size: 30px;
            }


            .hero-content p {
                font-size: 14px;
            }


            .who-image {
                height: 300px;
            }


            .who-image-box {
                bottom: -20px;
            }


            .who-content h2 {
                font-size: 34px;
            }

        }