/* =============================================
   Infra Core Technical Services LLC - Main CSS
   ============================================= */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* === CSS Variables === */
:root {
    --primary-navy: #0a1f3f;
    --primary-blue: #143366;
    --accent-gold: #c9a84c;
    --accent-gold-light: #e0c56a;
    --accent-gold-dark: #a8872e;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0f2f5;
    --medium-gray: #e1e5eb;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-light: #7a7a8a;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 5px 30px rgba(201, 168, 76, 0.3);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===========================
   NAVBAR
=========================== */

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:transparent;
    padding:0 !important;
    min-height:auto;
    transition:all .4s ease;
}

.navbar > .container,
.navbar > .container-fluid{
    min-height:90px;      /* Apni requirement ke mutabiq 80-90px */
    padding-top:0;
    padding-bottom:0;
    display:flex;
    align-items:center;
}

.navbar.scrolled{
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    padding:0 !important;
}

/* ===========================
   LOGO
=========================== */

.navbar-brand{
    padding:0;
    margin:0;
    display:flex;
    align-items:center;
}

.navbar-logo{
    height:90px;      /* 125px bahut zyada hai */
    width:auto;
    display:block;
    transition:.35s;
}

.navbar.scrolled .navbar-logo{
    height:90px;
}

/* ===========================
   MENU
=========================== */

.navbar-nav{
    align-items:center;
}

.navbar .nav-link{
    padding:8px 12px !important;
    margin:0 4px;
    font-size:16px;
    font-weight:600;
    line-height:1.2;
    color:#fff !important;
}

.navbar.scrolled .nav-link{
    color:#1b1b1b !important;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:991px){

    .navbar{
        background:#fff;
    }

    .navbar > .container,
    .navbar > .container-fluid{
        min-height:75px;
    }

    .navbar-logo{
        height:70px;
    }

    .navbar.scrolled .navbar-logo{
        height:70px;
    }

    .navbar .nav-link{
        color:#1b1b1b !important;
        padding:10px 0 !important;
    }
}
.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--white) !important;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--primary-navy));
    z-index: -1;
    transition: var(--transition);
}

.btn-gold:hover::before {
    left: 0;
}

.btn-gold:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 10px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-white {
    background: var(--white);
    color: var(--primary-navy);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-navy);
}

/* === Hero Section === */
/* .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 31, 63, 0.75) 0%,
        rgba(20, 51, 102, 0.6) 50%,
        rgba(10, 31, 63, 0.7) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--accent-gold);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.scroll-indicator span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
} */

/* === Section Styles === */
.section {
    padding: 100px 0;
}

.section-gray {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    margin: 16px auto 0;
    border-radius: 10px;
}

/* === About Section === */
.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-experience-badge .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 13px;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 14px;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* === Counter Section === */
.counter-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    padding: 80px 0;
    position: relative;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
}

.counter-item {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.15);
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.counter-icon i {
    font-size: 28px;
    color: var(--accent-gold);
}

.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.counter-number span {
    color: var(--accent-gold);
}

.counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* === Services Section === */
.service-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.15);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(10, 31, 63, 0.85) 100%
    );
    transition: var(--transition);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 31, 63, 0.4) 0%,
        rgba(10, 31, 63, 0.95) 100%
    );
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-card:hover .service-card-content {
    transform: translateY(0);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-gold);
}

.service-card-icon i {
    font-size: 22px;
    color: var(--white);
}

.service-card h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover p {
    opacity: 1;
    max-height: 80px;
    margin-bottom: 12px;
}

.service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.service-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

.service-card .read-more i {
    transition: var(--transition-fast);
}

.service-card .read-more:hover i {
    transform: translateX(4px);
}

/* === Why Choose Us === */
.why-choose-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.why-choose-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-choose-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    box-shadow: var(--shadow-gold);
}

.why-choose-card .icon-wrapper i {
    font-size: 30px;
    color: var(--accent-gold);
    transition: var(--transition);
}

.why-choose-card:hover .icon-wrapper i {
    color: var(--white);
}

.why-choose-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* === Projects Section === */
.project-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(10, 31, 63, 0.9) 100%
    );
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.project-name {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    width: fit-content;
    transition: var(--transition-fast);
}

.project-btn:hover {
    background: var(--accent-gold);
}

/* === Testimonials === */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin: 20px 10px;
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--accent-gold);
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 500;
}

/* Swiper Customization */
.swiper {
    padding-bottom: 60px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--medium-gray);
    opacity: 1;
    transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold);
    width: 30px;
    border-radius: 10px;
}

/* === FAQ === */
.faq-accordion .accordion-item {
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--accent-gold);
}

.faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-navy);
    background: var(--white);
    padding: 20px 24px;
    border: none;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-gold);
    background: rgba(201, 168, 76, 0.05);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.faq-accordion .accordion-body {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
}

/* === CTA Section === */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        rgba(10, 31, 63, 0.9),
        rgba(20, 51, 102, 0.85)
    ),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80') center/cover no-repeat;
}

.cta-section h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
}

/* === Footer === */
.footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
}

.footer-logo .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer h5 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--accent-gold);
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
    color: var(--accent-gold);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-newsletter .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--white);
    padding: 12px 20px;
    font-size: 14px;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter .btn {
    background: var(--accent-gold);
    border: none;
    color: var(--white);
    padding: 12px 24px;
    font-weight: 600;
}

/* === Floating Buttons === */
.floating-btn {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    z-index: 1040;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    background: #25d366;
    bottom: 130px;
    right: 24px;
}

.call-btn {
    background:blue;
    bottom: 200px;
    right: 24px;
}

.back-to-top {
    background: var(--accent-gold);
    bottom: 60px;
    right: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* === Page Header (Inner Pages) === */
.page-header {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0,0,0,0.25),
            rgba(0,0,0,0.25)
        ),
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.03) 0%,
            rgba(0,0,0,0.35) 100%
        );
}
.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}


@media (max-width: 768px) {
    .page-header {
        margin-top: 90px; /* Header ki height ke barabar */
        height: 600px;
    }

    .page-header-content h1 {
        font-size: 32px;
    }
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb a,
.breadcrumb span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .separator {
    color: var(--accent-gold);
}

/* === About Page === */
.about-page-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.about-page-content p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.mission-vision-card {
    padding: 30px;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--medium-gray);
    height: 100%;
    transition: var(--transition);
}

.mission-vision-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.mission-vision-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mission-vision-card .icon i {
    font-size: 24px;
    color: var(--accent-gold);
}

.mission-vision-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.mission-vision-card p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.7;
}

/* === Services Page === */
.service-detail-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-detail-card .card-image {
    height: 220px;
    overflow: hidden;
}

.service-detail-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail-card:hover .card-image img {
    transform: scale(1.1);
}

.service-detail-card .card-body-custom {
    padding: 24px;
}

.service-detail-card .card-body-custom h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-detail-card .card-body-custom p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-detail-card .features-list {
    margin: 0;
}

.service-detail-card .features-list li {
    font-size: 13px;
    color: var(--text-body);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-card .features-list li i {
    color: var(--accent-gold);
    font-size: 12px;
}

/* === Gallery Page === */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 8px 24px;
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 24px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 63, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.gallery-item-overlay span {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background: var(--accent-gold);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* === Contact Page === */
.contact-info-card {
    padding: 30px;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--medium-gray);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-info-card .icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-info-card h5 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-blue);
}

.contact-info-card a:hover {
    color: var(--accent-gold);
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
}

.contact-form .form-control {
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    transition: var(--transition-fast);
    font-family: 'Poppins', sans-serif;
}

.contact-form .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.email-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    margin-bottom: 10px;
}

.email-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.email-card .email-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-card .email-icon i {
    color: var(--accent-gold);
}

.email-card .email-info span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.email-card .email-info a {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-navy);
}

.email-card .email-info a:hover {
    color: var(--accent-gold);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
}

/* === 404 Page === */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light-gray);
}

.error-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 150px;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.error-code span {
    color: var(--accent-gold);
}

.error-message {
    font-size: 24px;
    color: var(--text-body);
    margin-bottom: 10px;
}

.error-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === Responsive === */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .section-title {
        font-size: 32px;
    }

    .section {
        padding: 70px 0;
    }

    .service-card {
        height: 320px;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .about-experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 18px;
    }

    .about-experience-badge .number {
        font-size: 36px;
    }

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

    .page-header {
        height: 300px;
    }

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

    .counter-number {
        font-size: 36px;
    }

    .error-code {
        font-size: 100px;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 30px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .footer {
        padding-top: 60px;
    }

    .cta-section {
        padding: 80px 0;
    }

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

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .whatsapp-btn { bottom: 110px; right: 16px; }
    .call-btn { bottom: 170px; right: 16px; }
    .back-to-top { bottom: 50px; right: 16px; }

    .error-code {
        font-size: 80px;
    }

    .gallery-item img {
        height: 220px;
    }

    .service-card {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline-gold {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 24px;
    }

    .page-header-content h1 {
        font-size: 28px;
    }
}
