
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Side scroll rokne ke liye */
}
/* header */



html {
    scroll-behavior: smooth;
}
/* this is header section */

/* Import Google Font for better look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');



.top-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid #f3f4f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    /* position: sticky; */
    top: 0;
    z-index: 1000;

}

.header-container {
    max-width: 1400px;
    margin: auto;
    /* margin-top: 0.7cm; */
    margin-bottom: -0.3cm;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo Styling */
.logo-area img {
    height:85px; /* Thoda bada logo better dikhta hai */
    width: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.logo-area img:hover {
    transform: scale(1.08);
}

/* Title Section Styling */
.company-title {
    text-align: center;
    flex: 1;
}

.company-title h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #0f172a;
    margin: 0;
    text-transform: uppercase;
}

/* Logo ke color se match karta hua accent color */
.company-title h1 span {
    color: #d4af37; /* Golden-Yellow Shade */
    background: linear-gradient(45deg, #b8860b, #e5c100);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-title p {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.line {
    display: inline-block;
    width: 20px;
    height: 1px;
    background: #cbd5e1;
}

/* Contact Area Modern Buttons */
.contact-area {
    display: flex;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 8px; /* Left padding kam kyunki icon circle hai */
    border-radius: 50px; /* Pill shape */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.email-btn .icon-circle { background: #0f172a; } /* Professional Dark Blue/Black */
.whatsapp-btn .icon-circle { background: #22c55e; }

.contact-btn:hover {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: #d4af37;
}

.contact-btn:hover .icon-circle {
    transform: rotate(360deg);
}

/* Responsive - Mobile Friendly */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        padding: 20px;
    }
    .company-title { margin: 15px 0; }
}

@media (max-width: 480px) {
    .logo-area img { height: 65px; }
    .company-title h1 { font-size: 20px; }
    .contact-area { flex-direction: column; width: 100%; }
    .contact-btn { justify-content: center; }
}


/* header section m gap km on phone display */

@media (max-width: 480px) {

    .header-container {
        gap: 12px;              /* 🔥 overall vertical gap kam */
        padding: 14px 16px;     /* padding bhi thodi kam */
    }

    .logo-area img {
        height: 85px;          /* logo thoda bada */
        width: auto;
        margin-bottom: 4px;     /* logo ke niche gap kam */
    }

    .company-title {
        margin: 4px 0;          /* pehle 15px tha */
    }

    .company-title p {
        margin-top: 4px;
        font-size: 12px;
    }

    .contact-area {
        gap: 8px;               /* buttons ke beech gap kam */
        margin-top: 6px;
    }

    .contact-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
}



/* hero section */
/* General Styling */
.service-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 50px 20px;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row; /* Laptop par Row */
}

/* Info Side Styling  */
 .info-div {
    flex: 1;
}

.badge {
    background: #d4af37;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.info-div h2 {
    font-size: 42px;
    color: #0f172a;
    margin: 20px 0;
    line-height: 1.2;
}

.info-div h2 span {
    color: #d4af37;
}

.info-div p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: #d4af37;
}

/* Form Side Styling */
.form-div {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
}

.form-card h3 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #0f172a;
    text-align: center;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #d4af37;
    background: #fff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
}
/* COUNTRY CODE SELECTOR */
/* Phone Group Container */
.phone-group {
    display: flex !important;
    align-items: center !important;
    background: #f8fbff;
    border: 1px solid #e2e8f0; 
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    /* padding: 0 !important; */
    /* gap: 0; */
}

.country-code {
    display: flex;
    align-items: center;
    /* background: #edf2f7; */
    /* border-right: 1px solid #e2e8f0; */
    flex-shrink: 0;
    min-width: 100px;
}

.country-code select {
    margin-left:0.1cm ;
    border: none !important; 
    background: transparent !important;
    padding: 8px 1px !important; /*Space for text and arrow*/
    /* width: 100%; */
    /* height: 100%; */
    /* font-size: 14px; */
    /* font-weight: 600; */
    /* color: #475569;*/
     cursor: pointer;
    outline: none !important;
    /* Arrow ko visible rakhne ke liye default appearance rehne denge */
}

/* Contact Number Section */
.phone-group input[type="tel"] {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    padding: 12px 15px !important;
    font-size: 15px; /* Mobile par readability ke liye */
    outline: none !important;
    width: 100%; /* auto ki jagah 100% */
    margin-left: -2.5cm !important; /* Margin ko zero karein */
}


/* Placeholder Fix */
.phone-group input::placeholder {
    text-align: left !important;
    color: #a0aec0;
}

/* Focus Border */
/* .phone-group:focus-within {
    border-color: #d4af37;
} */
/* Responsive: Mobile par Column */
@media (max-width: 992px) {
    .container {
        flex-direction: column; /* Phone par Column */
        text-align: center;
        gap: 30px;
    }

    .form-div {
        justify-content: center;
    }

    .info-div h2 {
        font-size: 32px;
    }

    .service-list {
        display: inline-block;
        text-align: left;
    }
}

/* Mobile Responsive - 390x844 and below */
@media (max-width: 480px) {
    .service-section {
        padding: 30px 15px;
    }

    .info-div h2 {
        font-size: 24px;
        margin: 15px 0;
    }

    .info-div p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .form-card {
        padding: 25px 20px;
        max-width: 100%;
    }

    .form-card h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .country-code {
        min-width: 90px;
    }

    .country-code select {
        padding: 10px 6px 10px 10px !important;
        font-size: 13px;
        padding-right: 28px !important;
        background-size: 14px;
    }

    .phone-group input[type="tel"] {
        padding: 10px 12px !important;
        font-size: 13px;
    }

    .phone-group {
        border-radius: 10px;
    }
}
/* --- PHONE GROUP OVERLAP FIX --- */
@media (max-width: 480px) {
    .phone-group {
        border-radius: 10px;
        display: flex !important; /* Side-by-side alignment ensure karne ke liye */
        align-items: center !important;
    }

    .country-code {
        min-width: 85px; /* Thoda space kam kiya mobile ke liye */
        border-right: 1px solid #e2e8f0;
    }

    .country-code select {
        padding: 10px 5px !important;
        font-size: 13px;
        width: 100%;
    }

    .phone-group input[type="tel"] {
        padding: 10px 12px !important;
        font-size: 14px;
        margin-left: 0 !important; /* YAHAN CHANGE HAI: Negative margin bilkul hata diya */
        flex: 1 !important;
        width: 100%;
    }
}
/* marque tag */

.marquee-container {
    width: 100%;
    background-color: #8b751e; /* Image jaisa golden-brown color */
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden; /* Bahar jane wala text chhupane ke liye */
    white-space: nowrap;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 480px) {
    .marquee-container {
        padding: 10px 0;
        font-size: 14px;
    }
    .marquee-content span {
        margin: 0 10px;
    }
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-text 25s linear infinite; /* Speed yahan se control karein */
}

.marquee-content span {
    margin: 0 15px; /* Text ke beech ka space */
    letter-spacing: 1px;
}

/* Animation Script */
@keyframes scroll-text {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* Hover par rokne ke liye */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}


/* pop open */

.modal-overlay {
    display: none; /* Default mein chhupa rahega */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Background dhundhla karne ke liye */
    z-index: 10000; /* Sabse upar dikhne ke liye */
    justify-content: center;
    align-items: center;
}

/* Jab modal open ho tab dikhane ke liye class */
.modal-overlay.active {
    display: flex;
}



/* our services */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');

.services-modern {
    margin-top: 0;
    padding: 40px 0;
    background: #fdfdfd;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Heading */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.sub-heading {
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin: 10px 0;
}

.section-title h2 span {
    color: #d4af37;
}

.line {
    width: 60px;
    height: 4px;
    background: #1a1a1a;
    margin: 0 auto;
    border-radius: 2px;
}

/* Services Grid */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card Styling */
.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    z-index: 1;
    animation: fadeInUp 0.8s ease backwards;
    animation-delay: calc(var(--i) * 0.15s);
}

.services-modern .icon-circle {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #1a1a1a;
    transition: 0.5s;
    border: 1px solid #eee; 
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hover Animations */
.service-box:hover {
    transform: translateY(-15px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.service-box:hover .icon-circle {
    background: #d4af37;
    color: #fff;
    transform: rotateY(360deg);
}

/* Professional Footer Text */
.service-footer {
    margin-top: 40px;
    text-align: center;
    opacity: 0.8;
}

.service-footer p {
    font-style: italic;
    font-size: 18px;
    color: #444;
}

@media (max-width: 768px) {
    .services-modern {
        padding: 30px 0;
    }
    .service-footer {
        margin-top: 30px;
    }
    .service-footer p {
        font-size: 16px;
    }
    .service-box {
        padding: 30px 20px;
    }
    .services-modern .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
    .service-box h3 {
        font-size: 18px;
    }
    .service-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-modern {
        padding: 25px 0;
    }
    .services-wrapper {
        gap: 20px;
    }
    .service-box {
        padding: 25px 18px;
        border-radius: 20px;
    }
    .services-modern .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    .service-box h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .service-box h3 a {
        font-size: 16px;
    }
    .service-box p {
        font-size: 13px;
        line-height: 1.5;
    }
    .service-footer {
        margin-top: 25px;
    }
    .service-footer p {
        font-size: 14px;
    }
}

/* Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating Animation for boxes */
.service-box {
    animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}




/* our services review */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Great+Vibes&display=swap');

:root {
    --brand-gold: #917b2b; /* Image se milta-julta color */
    --light-gold: #b5a04d;
    --text-dark: #333;
}

.stats-section {
    padding: 40px 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styling */


.stat-number, .exp-number {
    display: inline-block;
}

.stat-card span, .exp-plus {
    font-size: 24px;
    font-weight: 700;
    vertical-align: top;
    margin-left: 2px;
}

.exp-plus {
    font-size: 50px;
    color: var(--brand-gold);
}

/* Smooth transition for numbers */
.stat-number {
    transition: all 0.3s ease-in-out;
}




.stats-header h2 {
    color: var(--brand-gold);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-header p {
    color: #666;
    font-size: 15px;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Stats Layout */
.stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Rounded Cards Styling */
.stat-card {
    background-color: var(--brand-gold);
    color: white;
    padding: 30px 20px;
    border-radius: 25px; /* Rounded corners as per image */
    width: 200px;
    box-shadow: 0 10px 20px rgba(145, 123, 43, 0.2);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: var(--delay);
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: var(--light-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 35px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

/* Large Experience Box */
.exp-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: var(--delay);
}

.exp-number {
    font-size: 80px;
    font-weight: 700;
    color: var(--brand-gold);
    line-height: 1;
}

.exp-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.cursive {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: var(--brand-gold);
    line-height: 0.8;
}

.sub-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: 30px 15px;
    }
    .stats-header h2 {
        font-size: 28px;
    }
    .stats-header p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .stats-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .stat-card {
        width: 100%;
        max-width: 250px;
    }
    .exp-box {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }
    .exp-number {
        font-size: 60px;
    }
    .cursive {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 25px 10px;
    }
    .stats-header h2 {
        font-size: 24px;
    }
    .stats-header p {
        font-size: 13px;
        margin-bottom: 25px;
    }
    .stat-card {
        padding: 25px 15px;
        max-width: 100%;
    }
    .stat-icon {
        font-size: 28px;
    }
    .stat-number {
        font-size: 24px;
    }
    .stat-label {
        font-size: 12px;
    }
    .exp-number {
        font-size: 48px;
    }
    .cursive {
        font-size: 28px;
    }
    .sub-text {
        font-size: 14px;
    }
}



/* Honored Partners */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Great+Vibes&display=swap');

:root {
    --gold: #8d7a31;
    --dark: #121212;
    --light-gold: #f9f7f0;
}

.corporate-section {
    padding: 40px 5%;
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.full-container { max-width: 1300px; margin: 0 auto; }

/* Header Animation */
.main-header { text-align: center; margin-bottom: 60px; }
.top-badge { color: var(--gold); font-weight: 800; font-size: 12px; letter-spacing: 2px; }
.main-header h2 { font-size: clamp(32px, 5vw, 48px); color: var(--dark); margin: 15px 0; }
.main-header h2 span { color: var(--gold); position: relative; }
.main-header p { color: #666; font-size: 18px; max-width: 700px; margin: 0 auto; }

/* Hero Layout (Laptop: Row, Phone: Column) */
.hero-layout { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }

.hero-image-box { flex: 1.2; position: relative; border-radius: 40px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.12); }
.hero-image-box img { width: 100%; transition: 0.8s; }
.hero-image-box:hover img { transform: scale(1.08); }

.floating-exp {
    position: absolute; bottom: 30px; left: 30px;
    background: var(--gold); color: #fff; padding: 25px;
    border-radius: 25px; display: flex; align-items: center; gap: 15px;
    animation: float 3s infinite alternate;
}
.floating-exp .num { font-size: 42px; font-weight: 800; }
.floating-exp .txt { font-size: 13px; font-weight: 600; line-height: 1.2; text-transform: uppercase; }

/* Stats (Vertical List) */
.stats-list { flex: 0.8; display: flex; flex-direction: column; gap: 25px; }
.s-item {
    display: flex; align-items: center; gap: 20px;
    padding: 20px; border-radius: 20px; border: 1px solid #eee;
    background: #fff; transition: 0.4s;
    animation: slideRight 0.8s ease backwards; animation-delay: var(--d);
}
.s-item:hover { border-color: var(--gold); background: var(--light-gold); transform: translateX(15px); }
.s-icon { font-size: 28px; color: var(--gold); width: 40px; }
.s-txt h3 { font-size: 26px; margin: 0; color: var(--dark); }
.s-txt p { font-size: 14px; margin: 0; color: #777; font-weight: 600; }

/* Service Pills Animation */
.service-bubbles-wrap { margin-bottom: 80px; }
.sub-heading { text-align: center; color: #999; text-transform: uppercase; letter-spacing: 3px; font-size: 14px; margin-bottom: 30px; }
.bubble-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.b-pill {
    padding: 18px 30px; background: #fff; border: 1px solid #eee; border-radius: 100px;
    font-size: 15px; font-weight: 600; color: #444; cursor: pointer; transition: 0.4s;
}
.b-pill:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: scale(1.1); box-shadow: 0 15px 30px rgba(141, 122, 49, 0.2); }

/* Partner Bar */
/* Container Style */
.partner-section {
    padding: 40px 0;
    background: #fdfdfd; /* Light background */
    overflow: hidden;
    text-align: center;
}

.partner-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Slider Logic */
.logo-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-flex {
    display: flex;
    width: calc(250px * 8); /* Logos ki width ke hisaab se */
    animation: scroll 20s linear infinite;
    align-items: center;
}

.logos-flex img {
    width: 130px; /* Bada size */
    height: auto;
    margin: 0 80px;
    object-fit: contain;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .partner-section {
        padding: 30px 0;
    }
    .partner-title {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .logos-flex img {
        width: 100px;
        margin: 0 50px;
    }
}

@media (max-width: 480px) {
    .partner-section {
        padding: 25px 0;
    }
    .partner-title {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    .logos-flex img {
        width: 80px;
        margin: 0 30px;
    }
}

/* Animation Effects */
/* @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 4)); }
} */

/* Hover Effects & Color Pop */
/* .logo-slider:hover .logos-flex {
    animation-play-state: paused; /* Hover par scroll ruk jayega */
/* } */

/* .logos-flex img:hover {
    transform: scale(1.2); */
    /* Animation ke time ya hover par neon color glow */
    /* filter: drop-shadow(0px 0px 8px rgba(212, 175, 55, 0.5)); 
} */

/* Animation ke waqt halka sa blue tint agar aap chahen */
/* .logos-flex {
    filter: saturate(1.2); Colors ko aur bright karne ke liye */
/* } */

/* Animations Keyframes */
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-15px); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }

/* Responsiveness */
@media (max-width: 992px) {
    .hero-layout { 
        flex-direction: column; 
        text-align: center;
        gap: 30px;
    }
    .stats-list { 
        width: 100%; 
    }
    .s-item { 
        justify-content: center; 
    }
    .floating-exp { 
        position: relative; 
        left: 0; 
        bottom: 0; 
        margin-top: -50px; 
        justify-content: center; 
        border-radius: 0 0 40px 40px; 
    }
    .main-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .corporate-section {
        padding: 30px 15px;
    }
    .main-header h2 {
        font-size: 24px;
    }
    .main-header p {
        font-size: 14px;
    }
    .hero-image-box {
        border-radius: 20px;
    }
    .floating-exp {
        padding: 15px;
        border-radius: 0 0 20px 20px;
    }
    .floating-exp .num {
        font-size: 32px;
    }
    .floating-exp .txt {
        font-size: 11px;
    }
    .s-item {
        padding: 15px;
    }
    .s-icon {
        font-size: 24px;
        width: 35px;
    }
    .s-txt h3 {
        font-size: 22px;
    }
    .s-txt p {
        font-size: 12px;
    }
}











/* review section */
.reviews-section {
    padding: 40px 20px;
    background: #fff;
}

.reviews-section .section-title {
    font-size: 32px;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: center;
    color: #0f172a;
}

.slider-viewport {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 30px 10px;
}

.reviews-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
}

.review-card {
    flex: 0 0 calc(33.33% - 20px); /* Desktop pe 3 dikhenge */
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(50% - 20px); /* Tablet pe 2 dikhenge */
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 30px 15px;
    }
    .reviews-section .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .slider-viewport {
        padding: 20px 5px;
    }
    .review-card {
        flex: 0 0 calc(100% - 10px) !important;
        padding: 20px;
    }
    .profile-pic {
        width: 50px;
        height: 50px;
    }
    .header-info h3 {
        font-size: 14px;
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #947a26;
}

.header-info h3 {
    font-size: 16px;
    margin: 0;
    color: #333;
}

.stars { color: #947a26; font-size: 12px; }

.quote-icon {
    position: absolute;
    right: 0;
    top: 0;
    color: #2478b5;
    font-size: 30px;
    opacity: 0.2;
}

/* Dots */
.dots { text-align: center; }
.dot {
    height: 12px; width: 12px;
    background-color: #ddd;
    display: inline-block;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active { background-color: #2478b5; transform: scale(1.3); }





/* location */

.location-section {
    padding: 40px 20px;
    background-color: #fcfcfc;
    overflow: hidden;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.map-box {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.details-box {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card, .contact-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-title h3 { margin: 0; color: #2c3e50; }
.loc-icon { color: #27ae60; font-size: 24px; }

.rating { margin-top: 15px; font-size: 14px; }
.stars { color: #f1c40f; margin: 0 5px; }

.contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid #27ae60;
}

.call-icon-bg {
    background: #eafaf1;
    color: #27ae60;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.direction-btn {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.direction-btn:hover { background: #1a252f; transform: translateY(-3px); }

/* --- Animations --- */
.animate-left {
    animation: slideInLeft 1s ease-out;
}

.animate-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    .location-section {
        padding: 30px 15px;
    }
    .details-box { 
        flex: 1 0 100%; 
    }
    .map-box {
        min-width: 100%;
        border-radius: 12px;
    }
    .info-card, .contact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 25px 10px;
    }
    .location-container {
        gap: 20px;
    }
    .card-title h3 {
        font-size: 18px;
    }
    .call-info h3 {
        font-size: 18px;
    }
    .direction-btn {
        padding: 12px;
        font-size: 14px;
    }
}


/* footer */
.footer {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), 
                url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1920&q=80'); /* Business/Dubai Background */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 50px 20px 20px 20px;
    margin: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 0;
}

/* Stylish Footer Logo */
.footer-col h3 {
    color: #c5a059; /* Gold color from image */
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}

/* Underline decoration */
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #c5a059;
    padding-left: 5px;
}

/* Contact List Improvements */
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 10px;
}
.about-text {
    max-width: 250px;
}
/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: #c5a059;
}

/* Divider */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px 0;
}

/* Bottom Footer */
.footer-bottom {
    max-width: 1200px;
    margin: 25px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: 0.85rem;
    color: #888;
}

.bottom-links a {
    color: #888;
    text-decoration: none;
    margin-right: 20px;
}

/* --- Floating Contact Icons (Refined) --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10000;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-icon:hover {
    transform: translateY(-10px) scale(1.1);
}

.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.phone { background: linear-gradient(135deg, #2c3e50, #000000); }

@media (max-width: 480px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 15px;
    }
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    .contact-icon img {
        width: 28px;
        height: 28px;
    }
    .phone-emoji {
        font-size: 24px;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 15px 15px;
    }
    
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 25px;
    }
    
    .footer-col h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-col ul li {
        margin-bottom: 8px;
    }
    
    .footer-col ul li a {
        font-size: 0.85rem;
    }
    
    .footer-col p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-top: 20px;
    }
    
    .bottom-links {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 10px 15px 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h3 {
        font-size: 0.95rem;
    }
    
    .footer-col ul li a {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .footer-col p {
        font-size: 0.8rem;
    }
    
    .about-text {
        max-width: 100%;
    }
}



/* phone number k ye header m */


/* form */

/* Side Panel Base */
.side-panel {
    position: fixed;
    border-radius: 0.5cm;
    top: 0;
    right: -450px; /* Shuruat mein screen ke bahar */
    width: 400px;
    height: 70%;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 10001;
    transition: right 0.4s ease-in-out; /* Smooth slide animation */
    padding: 30px;
}

/* Panel active hone par position */
.side-panel.open {
    right: 0;
}

/* Background Overlay */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 10000;
}

.panel-overlay.show {
    display: block;
}

/* Form Styles */
.panel-header h2 { color: #8b7a32; margin-bottom: 5px; }
.close-panel { font-size: 30px; cursor: pointer; float: right; color: #333; }

.side-form input, .side-form select, .side-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.phone-group { display: flex; gap: 5px; }
.phone-group select { width: 40%; }

.submit-btn-gold {
    background: #8b7a32;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

@media (max-width: 500px) {
    .side-panel { 
        width: 100%; 
        right: -100%;
        height: 100%;
        padding: 20px 15px;
    }
    
    .side-panel .phone-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .side-panel .country-code {
        width: 100%;
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .side-panel .country-code select {
        width: 100%;
        padding: 12px 35px 12px 12px !important;
    }
    
    .side-panel .phone-group input[type="tel"] {
        width: 100%;
    }
    
    .panel-header h2 {
        font-size: 20px;
    }
}



/* Registered Authorities Section */
.authorities-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title h2 {
    font-size: 32px;
    color: #0f172a; /* Dark Navy */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: #8b7a32; /* Golden */
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* Grid Layout */
.authorities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Desktop par 4 columns, Tablet par 3, Mobile par 2 */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

/* Individual Logo Card */
.auth-box {
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* Subtle shadow like image */
    transition: transform 0.3s ease;
    height: 120px; /* Increased height for better visibility */
    overflow: hidden;
}

.auth-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Logo stretch nahi hoga */
    filter: grayscale(20%); /* Thoda professional look ke liye */
    padding: 5px;
}

.auth-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(139, 122, 50, 0.2);
}

/* "Many More" box style */
.many-more {
    background: transparent;
    box-shadow: none;
    border: 2px dashed #8b7a32;
}

.many-more p {
    font-family: 'Cursive', serif;
    font-size: 18px;
    color: #8b7a32;
    line-height: 1;
}

.many-more span {
    font-size: 24px;
    font-weight: bold;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .authorities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .authorities-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .auth-box { 
        height: 100px; 
        padding: 8px;
    }
    .auth-box img {
        padding: 3px;
    }
}

@media (max-width: 480px) {
    .authorities-section {
        padding: 30px 15px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .title-underline {
        margin-bottom: 30px;
    }
    .authorities-grid {
        gap: 12px;
    }
    .auth-box {
        height: 90px;
    }
}





/* Google Rating Header */


/* our impact section counters reviewed in index.html */
.s-txt h3, .floating-exp .num {
    display: inline-block;
}

.s-txt span, .floating-exp span {
    font-size: inherit; /* h3 ka font size le lega */
    font-weight: bold;
    color: inherit;
}


/* counting number or grade */
.achievements-strip {
    background: linear-gradient(135deg, #f8efd4 0%, #fff9e6 100%);
    padding: 50px 20px;
    margin: 30px 0;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.achievements-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.achieve-item {
    flex: 1;
    text-align: center;
    color: #000000;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achieve-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #f4d03f);
}

.achieve-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.counter-num {
    display: inline-block;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.plus {
    font-size: 40px;
    background: linear-gradient(135deg, #D4AF37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.achieve-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333333;
    margin-top: 12px;
    font-weight: 700;
}

.divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

@media (max-width: 768px) {
    .achievements-container { 
        flex-direction: column; 
        gap: 20px;
    }
    .achieve-item {
        width: 100%;
        max-width: 300px;
    }
    .counter-num {
        font-size: 42px;
    }
    .plus {
        font-size: 30px;
    }
    .divider { 
        display: none; 
    }
    .achievements-strip {
        padding: 35px 15px;
        margin: 20px 0;
    }
}