:root {
    --primary-color: #FF6B35;
    --secondary-color: #FF8C42;
    --dark-color: #1A1A2E;
    --light-color: #F5F5F5;
    --accent-gold: #FFD700;
    --accent-saffron: #FF9933;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --gold: #f6c400;
    --dark-green: #1f3d2b;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-2: linear-gradient(135deg, #FF9933 0%, #FFD700 100%);
    --gradient-3: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mukta', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.temple-icon {
    font-size: 80px;
    color: var(--accent-gold);
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    font-family: 'Poppins', cursive;
    font-size: 24px;
    color: white;
    margin-top: 20px;
    animation: fadeInUp 1s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 46, 1);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    font-size: 40px;
    color: var(--accent-gold);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: 'Poppins', cursive;
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.brand-sub {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 500;
}

.navbar-nav {
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-call {
    background: var(--gradient-1);
    color: white !important;
    border-radius: 25px;
    padding: 10px 24px !important;
    margin-left: 10px;
}

.btn-call::after {
    display: none;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Hero Section - See hero-styles.css */
    /* font-size: 20px;
} */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
    margin-bottom: 30px;
}

.hero-contact-numbers {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.contact-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-number:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    color: var(--accent-gold);
}

.contact-number i {
    font-size: 18px;
}

.btn-primary-custom {
    background: var(--gradient-1);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.hero-card {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-inner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.sculptor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.sculptor-image {
    position: relative;
    margin-bottom: 20px;
}

.image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--accent-gold);
    border-radius: 15px;
    animation: frameFloat 3s ease-in-out infinite;
}

@keyframes frameFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, -5px); }
}

.sculptor-image img {
    width: 100%;
    height: 300px;
    /* object-fit: cover; */
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.sculptor-info h3 {
    font-family: 'Poppins', cursive;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.sculptor-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Section Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    animation: slideInDown 0.8s ease;
}

.section-title {
    font-family: 'Poppins', cursive;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

/* About Section */
.about-section {
    background: var(--light-color);
}

.about-image-wrapper {
    position: relative;
}

.image-decoration {
    /* position: absolute; */
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: 0;
}

.about-main-image {
    width: 100%;
    height: 500px;
    /* object-fit: cover; */
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 5px;
}

.about-content {
    padding-left: 40px;
}

.about-heading {
    font-family: 'Poppins', cursive;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-content h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-content p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.founder-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    animation: fadeUp 1s ease forwards;
}

/* Image */
.founder-image {
    width: 220px;
    height: 220px;
    margin: auto;
    border-radius: 50%;
    padding: 6px;
    border: 3px solid #1f3d2b;
}

.founder-image img {
    width: 100%;
    height: 100%;
    border-radius: 43%;
    object-fit: cover;
}

.founder-name {
    margin-top: 18px;
    font-weight: 800;
    color: #f6c400;
}

.founder-role {
    color: #1f3d2b;
    font-weight: 600;
}

.founder-exprerience {
    color :#1f3d2b;
    font-weight: 600;
}

/* Contact */
.contact-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f5f4;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
}

.contact-box i {
    color: #1f3d2b;
}

/* Quote */
blockquote {
    position: relative;
    font-style: italic;
    line-height: 1.8;
    color: #333;
    padding: 20px 30px;
    margin: 20px 0 30px;
}

.quote-icon {
    font-size: 40px;
    color: #f6c400;
    position: absolute;
}

.quote-icon.left {
    top: -10px;
    left: 0;
}

.quote-icon.right {
    bottom: -20px;
    right: 0;
}

/* Buttons */
.founder-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.founder-buttons .btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 8px;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .founder-card {
        padding: 30px;
        text-align: center;
    }

    .contact-row {
        justify-content: center;
    }

    blockquote {
        padding: 20px;
    }
}

/* ===============================
   OUR STORY SECTION
================================ */

.story-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f7f8f9, #ffffff);
}

.story-section .section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1f3d2b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #f6c400;
    margin-bottom: 20px;
}

.story-lead {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Animation */
.story-section {
    animation: fadeUpStory 1s ease forwards;
}

@keyframes fadeUpStory {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .story-section {
        padding: 60px 20px;
    }

    .story-section .section-title {
        font-size: 30px;
    }

    .story-lead {
        font-size: 16px;
    }
}


/* ===============================
            WHY CHOOSE US 
================================ */

.why-choose-section {
    padding: 90px 0;
}

.why-card-advanced {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Icon */
.why-card-advanced .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--accent-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

/* Text */
.why-card-advanced h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f3d2b;
}

.why-card-advanced p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Hover effect */
.why-card-advanced:hover {
   
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 45px rgba(31,61,43,0.25);
    border-color: var(--gold);
}


.why-card-advanced:nth-child(1) { animation-delay: 0.1s; }
.why-card-advanced:nth-child(2) { animation-delay: 0.2s; }
.why-card-advanced:nth-child(3) { animation-delay: 0.3s; }
.why-card-advanced:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 15px;
    }
}


/* Services Section */
.services-section {
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    background: var(--gradient-1);
    color: white;
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-list li {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.2);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 40px;
    color: white;
}

.service-title {
    font-family: 'Poppins', cursive;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: var(--accent-gold);
    font-size: 16px;
}

.service-card.featured .service-list i {
    color: white;
}

/* Gallery Section */
.gallery-section {
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-content h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.gallery-content p {
    color: var(--accent-gold);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-color);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-info p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-heading {
    font-family: 'Poppins', cursive;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-content h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: var(--secondary-color);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--gradient-3);
    color: white;
    padding: 60px 0 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Poppins', cursive;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 36px;
    color: var(--accent-gold);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Poppins', cursive;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .hero-bg-image {
        width: 100%;
        opacity: 0.3;
    }
    
    .hero-overlay {
        background: rgba(26, 26, 46, 0.92);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-contact-numbers {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-number {
        width: 100%;
        justify-content: center;
    }
    
    .hero-bg-image {
        opacity: 0.2;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        font-size: 40px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
/* Hero Section - New Design */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/hero_setion_img.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(26, 26, 46, 1) 0%, 
        rgba(26, 26, 46, 0.95) 40%,
        rgba(26, 26, 46, 0.7) 60%,
        rgba(26, 26, 46, 0.3) 100%
    );
}

.min-vh-100 {
    min-height: 100vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    font-size: 24px;
    color: var(--accent-gold);
}

.hero-badge span {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 16px;
}

.hero-title {
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s both;
}

.title-main {
    display: block;
    font-family: 'Poppins', cursive;
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
}

.title-highlight {
    display: block;
    font-family: 'Poppins', cursive;
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.6s both;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 28px;
    color: white;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-value {
    font-size: 17px;
    color: white;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.hero-contact-bar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.contact-item-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-item-hero i {
    font-size: 18px;
    color: var(--accent-gold);
}

.contact-item-hero:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    color: var(--accent-gold);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-down span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
}

.scroll-down i {
    color: var(--accent-gold);
    font-size: 20px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =========================  index page ki card ki css =========== */

.stats-section {
    background: #ffffff;
}

.stat-card {
    background: #fff;
    border:1px solid;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    /* transform: translateY(-6px); */
     transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 45px rgba(31,61,43,0.25);
    border-color: var(--gold);
}

.stat-card i {
    font-size: 36px;
    color: var(--accent-saffron);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
}

/* =========================
   SERVICES PREVIEW SECTION
========================= */

.services-preview-section {
    background: #ffffff;
}

.service-preview-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image Part */
.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-preview-card:hover img {
    transform: scale(1.1);
}

/* Overlay Icon */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26,26,46,0.85),
        rgba(26,26,46,0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-overlay i {
    font-size: 48px;
    color: var(--accent-gold);
}

.service-preview-card:hover .service-overlay {
    opacity: 1;
}

/* Content Part */
.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-family: 'Poppins', cursive;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Link */
.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* ===============================
   OUR COMMITMENT
================================ */
.commitment-section {
    background: #ffffff;
}

.commitment-title {
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
}

.commitment-card {
    background: #fff;
    border: 1px solid #222222;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.commitment-card i {
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.commitment-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.commitment-card p {
    font-size: 14px;
    color: #555;
}

/* Hover Glow Effect */
.commitment-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 45px rgba(31,61,43,0.25);
    border-color: var(--gold);
}

/* ===============================
   CTA SECTION
================================ */
.cta-section {
    background: #f5f6f7;
}

.cta-box {
    background: var(--gradient-1);
    color: #fff;
    padding: 55px 30px;
    border-radius: 22px;
    text-align: center;
}

.cta-box h3 {
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    color: #e2e2e2;
    margin-bottom: 20px;
}

.cta-btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 26px;
}

/* ===============================   ANIMATIONS ================ */
.animate-top {
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDown 0.8s ease forwards;
}

.animate-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.animate-zoom {
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =====================    page-header  =============== */
.page-header-bg {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-header-bg .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.header-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease forwards;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: #f6c400;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}


.breadcrumb-item.active {
    color: #f6c400;
}

@media (max-width: 768px) {
    .page-header-bg {
        height: 300px;
    }

    .page-title {
        font-size: 32px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
