:root {
            --primary: #0a1733;
            --secondary: #d4af37;
            --light: #f8f5ee;
            --text: #5f6470;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1d2433;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
        }

        .section-padding {
            padding: 100px 0;
        }

        .text-gold {
            color: var(--secondary);
        }

        .btn-gold {
            background: var(--secondary);
            color: #fff;
            border: none;
            padding: 14px 32px;
            font-weight: 600;
            border-radius: 8px;
        }

        .btn-gold:hover {
            background: #c49d26;
            color: #fff;
        }

        /* Navbar */
        .navbar {
            padding: 10px 0;
            transition: all .3s;
            z-index: 999;
        }

        .navbar-dark .navbar-nav .nav-link {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            margin-left: 20px;
            text-transform: uppercase;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            background:
                linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
                url('/img/hero_banner.jpg') center/cover;
            display: flex;
            align-items: center;
            color: #fff;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(212, 175, 55, .15);
            border: 1px solid rgba(212, 175, 55, .35);
            color: #f6d46a;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 13px;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.15rem;
            max-width: 850px;
            margin: auto;
        }

        /* About */
        .subtitle {
            color: var(--secondary);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
        }

        .stat-box {
            background: #fff8e8;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: .3s;
        }

        .stat-box:hover {
            transform: translateY(-5px);
        }

        .stat-box h3 {
            color: var(--secondary);
            margin: 0;
        }

        /* Highlights */
        .dark-section {
            background: linear-gradient(135deg, #07132b, #0b1d43);
            color: #fff;
        }

        .feature-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 20px;
            padding: 35px 30px;
            height: 100%;
            transition: .4s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, .08);
        }

        .feature-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: rgba(212, 175, 55, .15);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 25px;
        }

        /* Gallery */
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 18px;
            transition: .4s;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 18px;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        /* Investment */
        .number-circle {
            width: 42px;
            height: 42px;
            background: #fff4d4;
            color: #b58a16;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Testimonials */
        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
            height: 100%;
        }

        /* Contact */
        .contact-card {
            background: #fff;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, .15);
        }

        .contact-card h3 {
            color: var(--secondary) !important;
        }

        .form-control {
            padding: 15px;
            border-radius: 10px;
        }

        /* Footer */
        footer {
            background: #050f24;
            color: rgba(255, 255, 255, .75);
        }

        footer a {
            color: rgba(255, 255, 255, .75);
            text-decoration: none;
        }

        footer a:hover {
            color: #fff;
        }

        @media(max-width:991px) {
            .section-padding {
                padding: 70px 0;
            }

            .hero {
                min-height: 90vh;
            }

            .hero h1 {
                font-size: 4rem;
            }
            body{margin-top:85px;}
            .fixed-top{
  padding: 10px 0;background:#0a1628f2 !important;}  
  .hero {
    padding-top: 20px;
    padding-bottom: 20px;
}
        }

        .form-container {
        padding: 40px;
    } 

    .form-group {
        margin-bottom: 20px;
    }

    label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }

    .required {
        color: #e74c3c;
        margin-left: 5px;
    }

    input, textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e0e0e0;
        border-radius: 5px;
        font-size: 14px;
        transition: all 0.3s;
    }

    input:focus, textarea:focus {
        outline: none;
        border-color: #667eea;
    }

    textarea {
        resize: vertical;
        min-height: 100px;
    }

    /*button {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s;
    }
.navbar-toggler{margin-right: 15px;}*/

    button:hover {
        transform: translateY(-2px);
    }

    .alert {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 5px;
        display: none;
    }

    .alert-success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        display: block;
    }

    .alert-error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        display: block;
    }

    .error {
        color: #e74c3c;
        font-size: 12px;
        margin-top: 5px;
        display: block;
    }

    input.error-field, textarea.error-field {
        border-color: #e74c3c;
    }

    .loading {
        display: none;
        text-align: center;
        margin-top: 20px;
    }

    .spinner {
        border: 3px solid #f3f3f3;
        border-top: 3px solid #667eea;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin: 0 auto;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
  
/* Background After Scroll */
.fixed-top.scrolled {
    background: #0a1628f2 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.why-choose-us {
    padding: 30px 0;
}
 .reason-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 35px;
            transition: all 0.3s ease;
        }

        .reason-item:hover .reason-title {
            color: #d4af37;
        }
.group-item {
    transition: all 0.3s ease;
}

.reason-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.reason-number span {
    font-size: 15px;
    font-weight: 700;
    color: #0c2340;
}

.reason-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.reason-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

.group-item:hover .reason-title {
    color: #d4af37;
}

@media (max-width: 767.98px) {
    .reason-title {
        font-size: 1.1rem;
    }

    .reason-text {
        font-size: 0.9rem;
    }

    .reason-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 630px; /* optional: keeps original max width */
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 = 0.5625) */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}