﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Segoe UI,Arial
}

body {
    background: #f5f7fb;
    color: #333
}

/* NAVBAR */
.navbar {
    background: #0a2a66;
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    font-size: 18px
}

.menu a {
    color: #fff;
    margin-left: 18px;
    text-decoration: none;
    font-weight: 600;
}

    .menu a:hover {
        color: #ffcc00
    }

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer
}

#menu-toggle {
    display: none
}

/* HERO */
.hero {
    background: #143d8f;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

    .hero h1 {
        font-size: 32px
    }

    .hero p {
        margin-top: 10px;
        font-size: 16px
    }

/* ==============================
   ABOUT SECTION – VECTOR + PADDING
   ============================== */

.about-section-clean {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient( 120deg, rgba(245,248,255,0.97), rgba(255,255,255,0.97) ), url('../images/about-vector.svg');
    background-size: cover;
    background-position: center;
}

/* CONTENT WIDTH */
.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: flex-start;
}

/* LEFT TEXT */
.about-left h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0a2a66;
    margin-bottom: 20px;
}

    .about-left h2::after {
        content: '';
        width: 55px;
        height: 3px;
        background: #caa24d;
        display: block;
        margin-top: 10px;
    }

.about-left p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

/* ===== CLEAN IMAGE CARDS (NO REFLECTION, NO HEAVY SHADOW) ===== */

.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARD */
.about-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 10px;
    border: 1px solid #e5e8f0; /* subtle professional border */
}

    /* IMAGE */
    .about-card img {
        width: 100%;
        display: block;
        border-radius: 10px;
    }

    /* REMOVE ALL EFFECTS */
    .about-card:hover {
        transform: none;
        box-shadow: none;
    }


/* ================= RESPONSIVE ================= */

@media(max-width:992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-right {
        flex-direction: row;
    }
}

@media(max-width:600px) {
    .about-section-clean {
        padding: 60px 15px;
    }

    .about-right {
        flex-direction: column;
    }

    .about-left {
        text-align: center;
    }

        .about-left h2::after {
            margin-left: auto;
            margin-right: auto;
        }
}






/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 60px 20px;
}

.founder-wrap {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* IMAGE */
.founder-img {
    flex: 0 0 260px;
    text-align: center;
}

    .founder-img img {
        width: 240px;
        height: auto;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        background: #fff;
    }

/* CONTENT */
.founder-content {
    flex: 1;
}

    .founder-content h2 {
        color: #0a2a66;
        font-size: 26px;
        margin-bottom: 6px;
    }

.designation {
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 14px;
}

.founder-content p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.founder-content ul {
    margin-top: 12px;
    padding-left: 18px;
}

.founder-content li {
    margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .founder-wrap {
        flex-direction: column;
        text-align: center;
    }

    .founder-content ul {
        text-align: left;
    }

    .founder-img img {
        width: 200px;
    }
}


/* ==============================
   GENERIC SECTION WITH VECTOR
   ============================== */

.section {
    position: relative;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 40px auto;
    background: linear-gradient( 120deg, rgba(245,248,255,0.97), rgba(255,255,255,0.97) ), url('../images/section-vector.svg');
    background-size: cover;
    background-position: center;
    border-radius: 12px; /* subtle card look */
}

    /* HEADINGS */
    .section h2 {
        color: #0a2a66;
        margin-bottom: 15px;
        font-size: 26px;
        font-weight: 700;
    }

    /* TEXT */
    .section p {
        margin-bottom: 12px;
        line-height: 1.7;
        color: #333;
    }


.light {
    background: #fff
}




/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 10px;
}

    .services li {
        background: #0a2a66;
        color: #fff;
        padding: 12px;
        border-radius: 6px;
        list-style: none;
    }

/* CLIENTS */
/* ===== CLIENTS SECTION ===== */
.clients-section {
    background: #f4f6fb;
    padding: 50px 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0a2a66;
    margin-bottom: 35px;
}

/* GRID */
.clients-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 30px;
}

/* CLIENT CARD */
.client-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

    .client-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }

    /* LOGO */
    .client-card img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        border-radius: 50%;
        border: 4px solid #0a2a66;
        padding: 10px;
        background: #fff;
        margin-bottom: 12px;
    }

    /* NAME */
    .client-card span {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #333;
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .section-title {
        font-size: 24px
    }

    .client-card img {
        width: 85px;
        height: 85px
    }
}

@media(max-width:480px) {
    .clients-section {
        padding: 40px 15px
    }

    .client-card span {
        font-size: 14px
    }
}


/* FOOTER */
.footer {
    background: #0a2a66;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #0a2a66;
        display: none;
        flex-direction: column;
    }

        .menu a {
            padding: 12px
        }

    #menu-toggle:checked + .menu-icon + .menu {
        display: flex
    }

    .menu-icon {
        display: block
    }
}


/* ===== HEADER ===== */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo-wrap img {
        height: 50px;
    }

.logo-text {
    display: flex;
    flex-direction: column;
}

.firm-name {
    font-weight: 700;
    font-size: 18px;
    color: #0a2a66;
}

.firm-tag {
    font-size: 12px;
    font-weight: 600;
    color: #b8860b;
    letter-spacing: 1px;
}

/* ===== MENU ===== */
.menu a {
    margin-left: 18px;
    text-decoration: none;
    font-weight: 600;
    color: #0a2a66;
}

    .menu a:hover {
        color: #b8860b;
    }

/* ===== MENU TOGGLE FIX ===== */
.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #0a2a66;
    user-select: none;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .menu-icon {
        display: block; /* 🔥 SHOW TOGGLE */
        position: relative;
        z-index: 1001; /* 🔥 ABOVE HEADER */
    }

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        display: none;
        flex-direction: column;
        border-top: 1px solid #ddd;
        z-index: 1000;
    }

        .menu a {
            padding: 14px;
            border-bottom: 1px solid #eee;
            color: #0a2a66;
        }

    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }
}


/* ===== SLIDER CONTAINER ===== */
.narrow-slider {
    position: relative;
    height: 260px;
    width: 100%;
    overflow: hidden;
}

/* ===== SLIDES ===== */
.slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFade 15s infinite;
}

/* TAX / LEGAL IMAGES */
.slide1 {
    background-image: url('../images/tax1.jpg');
    animation-delay: 0s;
}

.slide2 {
    background-image: url('../images/tax2.jpg');
    animation-delay: 5s;
}

.slide3 {
    background-image: url('../images/tax3.jpg');
    animation-delay: 10s;
}

/* DARK OVERLAY FOR READABILITY */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(10,42,102,0.85), rgba(20,61,143,0.85) );
}

/* ===== TEXT ===== */
.slider-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
}

    .slider-overlay h1 {
        font-size: 30px;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 6px;
        text-shadow: 0 2px 6px rgba(0,0,0,.5);
    }

    .slider-overlay h2 {
        font-size: 18px;
        font-weight: 600;
        color: #ffcc66;
        margin-bottom: 10px;
    }

.slider-desc {
    max-width: 900px;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.slider-tags {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
}

/* ===== ANIMATION ===== */
@keyframes slideFade {
    0% {
        opacity: 0
    }

    10% {
        opacity: 1
    }

    33% {
        opacity: 1
    }

    43% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .narrow-slider {
        height: 220px
    }

    .slider-overlay h1 {
        font-size: 24px
    }

    .slider-overlay h2 {
        font-size: 15px
    }

    .slider-desc {
        font-size: 13px
    }
}

@media(max-width:480px) {
    .narrow-slider {
        height: 200px
    }

    .slider-desc {
        display: none
    }
}

/* ===== ANNEXURE BUTTONS ===== */
.annexure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 15px;
    margin-top: 20px;
}

.annexure-btn {
    background: #0a2a66;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

    .annexure-btn:hover {
        background: #143d8f;
    }

/* ===== MODAL ===== */
.annexure-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* BOX */
.annexure-box {
    background: #f8f9fb;
    width: 90%;
    max-width: 900px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    overflow: hidden;
}

/* HEADER */
.annexure-header {
    background: linear-gradient(135deg,#f4f6f8,#ffffff);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    border-bottom: 2px solid #0a2a66;
}

    .annexure-header img {
        height: 45px;
    }

    .annexure-header h3 {
        margin: 0;
        font-size: 22px;
        color: #0a2a66;
    }

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
}

/* CONTENT */
.annexure-content {
    padding: 25px;
    max-height: 65vh;
    overflow: auto;
    background: url('../images/paper-texture.svg'), #ffffff;
}

    .annexure-content h4 {
        color: #0a2a66;
        margin-bottom: 12px;
    }

    .annexure-content ul {
        padding-left: 20px;
    }

    .annexure-content li {
        margin-bottom: 10px;
        line-height: 1.6;
    }
/* ==============================
   ANNEXURE TWO COLUMN LAYOUT
   ============================== */
/* ==============================
   ANNEXURE TWO COLUMN LAYOUT
   ============================== */

.annexure-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* COLUMN */
.annexure-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* BLOCK */
.annexure-block {
    border: 1px solid #cfd6e3;
    background: #ffffff;
    padding: 16px 18px;
}

    /* TITLE */
    .annexure-block h4 {
        margin: 0 0 10px;
        font-size: 16px;
        font-weight: 700;
        color: #0a2a66;
    }

    /* LIST */
    .annexure-block ul {
        padding-left: 18px;
        margin: 0;
    }

    .annexure-block li {
        margin-bottom: 8px;
        line-height: 1.55;
        font-size: 14.5px;
    }

/* ===== RESPONSIVE (TAB & MOBILE) ===== */
@media(max-width:768px) {
    .annexure-two-col {
        grid-template-columns: 1fr; /* 🔥 ONE COLUMN */
    }
}
/* ===== GALLERY ===== */
/* ===== GALLERY SECTION ===== */
.simple-gallery {
    padding: 60px 20px;
    background: #f5f7fb;
    text-align: center;
}

.gallery-title {
    font-size: 28px;
    color: #0a2a66;
    margin-bottom: 30px;
    font-weight: 700;
}

/* SLIDER */
.gallery-slider {
    max-width: 1200px;
    margin: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 33.33%;
    gap: 20px;
    padding-bottom: 10px;
}

    /* IMAGE */
    .gallery-track img {
        width: 100%;
        height: 260px; /* 👈 CONTROLLED HEIGHT */
        object-fit: cover; /* 👈 NO STRETCH */
        border-radius: 14px;
        scroll-snap-align: start;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        background: #fff;
    }

/* TABLET */
@media(max-width:992px) {
    .gallery-track {
        grid-auto-columns: 50%;
    }
}

/* MOBILE */
@media(max-width:576px) {
    .gallery-track {
        grid-auto-columns: 100%;
    }

        .gallery-track img {
            height: 220px;
        }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain; /* 👈 NO STRETCH */
        border-radius: 10px;
        background: #fff;
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 34px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}
/* ==============================
   BOOKING SECTION
   ============================== */

.booking-section {
    padding: 80px 20px;
    background: #f5f7fb;
}

.booking-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.booking-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #0a2a66;
    margin-bottom: 30px;
}

/* FORM GRID */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

    /* INPUTS */
    .form-grid input,
    .form-grid textarea {
        width: 100%;
        padding: 14px 16px;
        border-radius: 8px;
        border: 1px solid #ccd3e2;
        font-size: 15px;
        font-family: inherit;
    }

    .form-grid textarea {
        grid-column: 1 / -1;
        resize: none;
    }

/* BUTTON */
.booking-btn {
    margin: 30px auto 0;
    display: block;
    background: #0a2a66;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease;
}

    .booking-btn:hover {
        background: #143d8f;
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-container {
        padding: 40px 25px;
    }

    .booking-title {
        font-size: 26px;
    }
}


/* ==============================
   CUSTOM FOOTER
   ============================== */

.custom-footer {
    background: #0a2a66;
    color: #ffffff;
    padding: 60px 20px 30px;
    font-size: 14.5px;
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 30px;
    margin-bottom: 35px;
}

/* FOOTER BOX */
.footer-box {
    line-height: 1.7;
}

/* TITLES */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffcc66;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* LIST */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        margin-bottom: 8px;
    }

    /* LINKS */
    .footer-link,
    .footer-list a {
        color: #ffffff;
        text-decoration: none;
        transition: .3s;
    }

        .footer-list a:hover,
        .footer-link:hover {
            color: #ffcc66;
        }

/* ADDRESS TEXT */
.footer-box p {
    margin-bottom: 8px;
}

/* SOCIAL ICONS */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0a2a66;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .social-link:hover {
        background: #ffcc66;
        color: #0a2a66;
    }

/* COPYRIGHT */
.footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 13px;
    opacity: .85;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media(max-width:768px) {
    .custom-footer {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}
/* ===============================
   WHATSAPP FLOATING BUTTON
   =============================== */
/* ===============================
   WHATSAPP FLOAT BUTTON (FIXED)
   =============================== */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    z-index: 9999;
}

    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }

    /* HOVER */
    .whatsapp-float:hover {
        transform: scale(1.05);
        background: #1ebe57;
    }

/* MOBILE SAFE */
@media(max-width:768px) {
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }
}

