* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --navy: #0a1f44;
    --navy-light: #122a5c;
    --gold: #c9a227;
    --gold-light: #e0b73a;
    --white: #fff;
    --gray: #f5f6f8;
    --text: #333;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

section {
    padding: 80px 0
}

h1,
h2,
h3 {
    font-weight: 700;
    color: var(--navy)
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 15px
}

h3 {
    font-size: 1.3rem
}

.section-title {
    text-align: center;
    margin-bottom: 50px
}

.section-title h2 {
    position: relative;
    display: inline-block
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px
}

.section-title p {
    color: #666;
    margin-top: 20px
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all .35s;
    margin: 6px;
    font-family: inherit
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: 0 6px 18px rgba(201, 162, 39, .4)
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, .6)
}

.btn-navy {
    background: var(--navy);
    color: var(--white)
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-3px)
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white)
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy)
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    transition: all .3s
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 15px 0 */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LOGO SIZE CONTROL */
.logo img {
    height: 300px;   /* 👈 yahan size control karo */
    width: auto;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--navy);
    font-size: 1.3rem
}

.logo-text h1 {
    font-size: 1.3rem;
    color: var(--navy);
    margin: 0
}

.logo-text span {
    font-size: .7rem;
    color: var(--gold);
    letter-spacing: 1px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-links>li>a {
   color: #0b1f3a !important; /* NAVY */
    padding: 10px 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all .3s;
    display: block
}

/* .nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--gold)
} */

.dropdown {
    position: relative
}



.dropdown-toggle::after {
    content: ' ▾';
    font-size: .8rem
    
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #ffffff !important;

    min-width: 250px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
    overflow: hidden
}


@media (max-width:768px){

    .nav-links{
        background:#ffffff !important;
    }

    .nav-links li a{
        color:#0b1f3a !important;
    }

}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu li a {
    display: block;
    padding: 13px 20px;
    color: var(--navy);
    font-size: .92rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all .3s
}

.dropdown-menu li a:hover {
    background: var(--gold);
    color: var(--navy);
    padding-left: 28px
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy) !important;
    border-radius: 50px;
    padding: 10px 20px !important;
    font-weight: 600
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
     background: #0b1f3a; /* NAVY */
    cursor: pointer
    
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: .3s;
    color: white;

}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 31, 68, .85), rgba(10, 31, 68, .9)), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: var(--white)
}

.hero-content {
    max-width: 720px
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px
}

.hero h1 span {
    color: var(--gold)
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: .95
}

.hero-tag {
    display: inline-block;
    background: rgba(201, 162, 39, .2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .85rem;
    margin-bottom: 20px
}

.page-banner {
    background: linear-gradient(rgba(10, 31, 68, .88), rgba(10, 31, 68, .92)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: var(--white);
    text-align: center;
    padding: 90px 0
}

.page-banner h1 {
    color: var(--white)
}

.page-banner p {
    opacity: .9;
    margin-top: 10px
}

.breadcrumb {
    margin-top: 15px;
    font-size: .9rem;
    color: var(--gold)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: var(--shadow);
    transition: all .4s;
    border-bottom: 4px solid transparent
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--gold)
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px
}

.service-card h3 {
    margin-bottom: 12px
}

.service-card p {
    color: #666;
    font-size: .95rem;
    margin-bottom: 18px
}

.service-card a {
    color: var(--gold);
    font-weight: 600;
    font-size: .9rem
}

.service-card a:hover {
    color: var(--navy)
}

.why-us {
    background: var(--gray)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.why-image img {
    border-radius: 16px;
    box-shadow: var(--shadow)
}

.feature-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px
}

.feature-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700
}

.feature-item h3 {
    margin-bottom: 5px
}

.feature-item p {
    color: #666;
    font-size: .93rem
}

.stats {
    background: var(--navy);
    color: var(--white)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center
}

.stat-item h2 {
    color: var(--gold);
    font-size: 2.8rem
}

.stat-item p {
    opacity: .85
}

.testimonials {
    background: var(--gray)
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow)
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 12px
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.testimonial-author h4 {
    color: var(--navy);
    font-size: 1rem
}

.testimonial-author small {
    color: #888
}

.cta-strip {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    text-align: center
}

.cta-strip h2 {
    color: var(--white)
}

.cta-strip p {
    opacity: .9;
    margin: 15px 0 25px
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.content-text p {
    color: #555;
    margin-bottom: 15px
}

.content-img img {
    border-radius: 16px;
    box-shadow: var(--shadow)
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.vm-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold)
}

.vm-card .icon {
    font-size: 2.2rem;
    margin-bottom: 15px
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #555
}

.benefits-list li::before {
    content: '✓';
    background: var(--gold);
    color: var(--navy);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: .8rem
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px
}

.contact-info-card {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start
}

.contact-info-card .icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0
}

.contact-info-card h4 {
    color: var(--navy);
    margin-bottom: 3px
}

.contact-info-card p {
    color: #666;
    font-size: .95rem
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow)
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--navy)
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: .95rem;
    transition: .3s
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, .15)
}

.form-message {
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    display: none
}

.form-message.success {
    background: #e6f7e9;
    color: #1a7d32;
    display: block
}

.map-box {
    margin-top: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.map-box iframe {
    width: 100%;
    height: 350px;
    border: 0
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
    overflow: hidden
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s
}

.faq-question:hover {
    color: var(--gold)
}

.faq-question span {
    font-size: 1.5rem;
    color: var(--gold);
    transition: .3s
}

.faq-item.active .faq-question span {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding: 0 25px;
    color: #666
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px
}

.footer {
    background: var(--navy);
    color: #cbd3e0;
    padding-top: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px
}

.footer h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem
}

.footer h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin-top: 8px
}

.footer .logo-text h1 {
    color: var(--white)
}

.footer-about p {
    margin: 18px 0;
    font-size: .92rem
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    font-size: .92rem;
    transition: .3s
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .92rem
}

.footer-contact .icon {
    color: var(--gold)
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    text-align: center;
    font-size: .88rem
}

.footer-bottom span {
    color: var(--gold)
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
    z-index: 999;
    animation: pulse 2s infinite
}

.whatsapp-float:hover {
    transform: scale(1.1)
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:992px) {

    .why-grid,
    .content-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    h1 {
        font-size: 2.2rem
    }
}

@media(max-width:768px) {
    .hamburger {
        display: flex
    }

    .nav-links {
        position: fixed;
        top: 76px;
        right: -100%;
        flex-direction: column;
        background: var(--navy);
        width: 80%;
        height: calc(100vh - 76px);
        padding: 20px;
        gap: 0;
        align-items: flex-start;
        transition: right .4s;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, .3)
    }

    .nav-links.active {
        right: 0
    }

    .nav-links>li {
        width: 100%
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, .05);
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s;
        margin-top: 5px
    }

    .dropdown.open .dropdown-menu {
        max-height: 300px
    }

    .dropdown-menu li a {
        color: var(--white);
        border-color: rgba(255, 255, 255, .1)
    }

    .dropdown-menu li a:hover {
        color: var(--navy)
    }

    .vm-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:500px) {

    .footer-grid,
    .stats-grid {
        grid-template-columns: 1fr
    }

    h1 {
        font-size: 1.9rem
    }

    h2 {
        font-size: 1.6rem
    }

    section {
        padding: 60px 0
    }

    .btn {
        width: 100%;
        text-align: center
    }
}





/* LOGO IMAGE */
.logo img {
    height: 70px;
    /* BIG size */
    width: auto;
    display: block;
    transition: 0.3s ease;
}

/* SCROLL PAR THODA CHOTA */
.navbar.scrolled .logo img {
    height: 55px;
}

/* MOBILE SIZE */
@media(max-width:991px) {
    .logo img {
        height: 60px;
    }
}