@charset "UTF-8";
/*
Theme Name: Foundation
Author: 
Author URI: 
Description: We are a full service webdesign and development company delivering high end design and development solution for our clients and delivering best solutions to attract more visibility and customization to your website.
Version: 3.0.0
*/


  * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Poppins', 'Noto Sans Gujarati', sans-serif; 
            color: #333; 
            overflow-x: hidden;
            background-color: #f9f9f9;
        }
        
        h1, h2, h3 { font-weight: 700; }
        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.8rem; margin-bottom: 1.5rem; color: #ff5722; }
        h3 { font-size: 1.8rem; margin-bottom: 1rem; }
        
        p { line-height: 1.8; font-size: 1.1rem; margin-bottom: 1.5rem; }
        
        .gujarati-text { font-family: 'Noto Sans Gujarati', sans-serif; }
        
        /* Preloader */
        #preloader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
            background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%); 
            display: flex; justify-content: center; align-items: center; 
            flex-direction: column; z-index: 9999; transition: opacity 1s ease;
        }
        
        .loader { 
            border: 5px solid rgba(255,255,255,0.3); 
            border-top: 5px solid white; 
            border-radius: 50%; width: 70px; height: 70px; 
            animation: spin 1.5s linear infinite; 
            margin-bottom: 20px;
        }
        
        .loader-text {
            color: white;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }
        
        @keyframes spin { 
            0% { transform: rotate(0deg); } 
            100% { transform: rotate(360deg); } 
        }
        
        /* Header with Hamburger Menu */
        header {
            background: rgba(255, 87, 34, 0.95);
            padding: 15px 20px; 
            position: fixed; 
            width: 100%; 
            top: 0; 
            z-index: 1000; 
            box-shadow: 0 5px 20px rgba(255, 87, 34, 0.2);
            transition: all 0.4s ease;
        }
        
        .header-content { 
            max-width: 1300px; 
            margin: auto; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        
        .logo { 
            display: flex; 
            align-items: center; 
            font-size: 1.8rem; 
            font-weight: bold; 
            color: white;
        }
        
        .logo img { 
            height: 60px; 
            margin-right: 15px; 
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(255,255,255,0.3);
        }
        
        .hamburger { 
            display: none; 
            font-size: 30px; 
            cursor: pointer; 
            color: white; 
            transition: transform 0.3s;
        }
        
        
        
        nav ul { display: flex; list-style: none; }
        nav ul li { margin-left: 30px; position: relative; }
        nav ul li a { 
            color: white; 
            text-decoration: none; 
            font-size: 1.1rem; 
            font-weight: 500;
            transition: color 0.3s; 
            padding: 5px 0;
        }
        
     
        
        nav ul li a:hover::after { width: 100%; }
        nav ul li a:hover { color: #ffeb3b; }
        
        /* Mobile Menu */
        @media (max-width: 992px) {
            .hamburger { display: block; }
            nav ul { 
                position: fixed; 
                top: 90px; 
                left: -100%; 
                width: 100%; 
                height: calc(100vh - 90px); 
                background: rgba(255, 87, 34, 0.98); 
                flex-direction: column; 
                align-items: center; 
                justify-content: flex-start; 
                padding-top: 60px; 
                transition: left 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0); 
                backdrop-filter: blur(10px);
            }
            
            nav ul.active { left: 0; }
            nav ul li { margin: 25px 0; }
            nav ul li a { font-size: 1.3rem; }
        }
        
      /* ====== MODERN HERO SLIDER STYLES ====== */
.banner-slider {
    width: 100%;
    height: 80vh; /* Taller for more impact */
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.banner-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.banner-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out; /* Long smooth zoom */
}

.banner-slider .swiper-slide-active img {
    transform: scale(1.15); /* Subtle Ken Burns zoom effect */
}

/* Gradient Overlay with animated subtle shift */
.banner-slider .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Content Styling */
.banner-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding: 30px;
    z-index: 2;
    width: 90%;
}

.banner-slider .slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    line-height: 1.2;
}

.banner-slider .slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.banner-slider .slide-content a {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255,107,0,0.4);
    transition: all 0.3s ease;
}

.banner-slider .slide-content a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,107,0,0.5);
    background: linear-gradient(45deg, #ff8c00, #ffa500);
}

/* Swiper Controls */
.banner-slider .swiper-pagination {
    bottom: 30px;
    z-index: 3;
}

.banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 0.7;
    transition: all 0.3s;
}

.banner-slider .swiper-pagination-bullet-active {
    background: #ff6b00;
    opacity: 1;
    transform: scale(1.3);
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,107,0,0.7);
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s;
    z-index: 3;
}

.banner-slider .swiper-button-next:hover,
.banner-slider .swiper-button-prev:hover {
    background: #ff6b00;
    transform: scale(1.1);
}

.banner-slider .swiper-button-next::after,
.banner-slider .swiper-button-prev::after {
    font-size: 20px;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .banner-slider {
        height: 70vh;
    }
    .banner-slider .slide-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 60vh;
        min-height: 400px;
    }
    .banner-slider .slide-content h2 {
        font-size: 32px;
    }
    .banner-slider .slide-content p {
        font-size: 18px;
    }
    .banner-slider .slide-content a {
        padding: 12px 24px;
        font-size: 16px;
    }
    .banner-slider .swiper-button-next,
    .banner-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .banner-slider .slide-content h2 {
        font-size: 28px;
    }
    .banner-slider .slide-content {
        padding: 20px;
    }
}

        .btn-primary {
            padding: 18px 50px;
            background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
            border-radius: 50px;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 35px rgba(255, 87, 34, 0.3);
            display: inline-block;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.2), 
                transparent);
            transition: left 0.6s;
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(255, 87, 34, 0.5);
            letter-spacing: 1px;
        }

        /* Swiper Controls */
        .swiper-pagination {
            bottom: 30px !important;
        }

        .swiper-pagination-bullet {
            width: 14px;
            height: 14px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
            transition: all 0.3s ease;
            margin: 0 8px !important;
        }

        .swiper-pagination-bullet:hover {
            transform: scale(1.3);
            background: rgba(255, 87, 34, 0.8);
        }

        .swiper-pagination-bullet-active {
            width: 40px;
            border-radius: 10px;
            background: linear-gradient(to right, #ff5722, #ff9800);
            box-shadow: 0 0 15px rgba(255, 87, 34, 0.8);
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            border: 2px solid rgba(255, 87, 34, 0.3);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(255, 87, 34, 0.9);
            transform: translateY(-50%) scale(1.1);
            border-color: #ff9800;
            box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
        }

        .swiper-button-next {
            right: 30px;
        }

        .swiper-button-prev {
            left: 30px;
        }

        /* Parallax Effect */
        .parallax-bg {
            position: absolute;
            width: 130%;
            height: 130%;
            top: -15%;
            left: -15%;
            z-index: 1;
            background-size: cover;
            background-position: center;
        }

        /* Content Stagger Animation */
        .slide-content > * {
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }

        .swiper-slide-active .slide-content > *:nth-child(1) {
            transition-delay: 0.3s;
        }

        .swiper-slide-active .slide-content > *:nth-child(2) {
            transition-delay: 0.5s;
        }

        .swiper-slide-active .slide-content > *:nth-child(3) {
            transition-delay: 0.7s;
        }

        .swiper-slide-active .slide-content > * {
            transform: translateY(0);
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .slide-title {
                font-size: 3.5rem;
            }
            
            .slide-text {
                font-size: 1.4rem;
            }
            
            .hero-logo {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 992px) {
            .slide-title {
                font-size: 2.8rem;
            }
            
            .slide-text {
                font-size: 1.2rem;
            }
            
            .btn-primary {
                padding: 16px 40px;
                font-size: 1.1rem;
            }
            
            .swiper-button-next,
            .swiper-button-prev {
                width: 60px;
                height: 60px;
            }
            
            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-slider {
                height: 90vh;
            }
            
            .slide-title {
                font-size: 2.2rem;
                padding-bottom: 15px;
            }
            
            .slide-title::after {
                width: 80px;
                height: 3px;
            }
            
            .slide-text {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .hero-logo {
                width: 120px;
                height: 120px;
                margin-bottom: 30px;
            }
            
            .btn-primary {
                padding: 14px 35px;
                font-size: 1rem;
            }
            
            .swiper-button-next,
            .swiper-button-prev {
                width: 50px;
                height: 50px;
                display: none; /* Hide arrows on mobile for cleaner look */
            }
            
            .swiper-pagination {
                bottom: 20px !important;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 85vh;
            }
            
            .slide-title {
                font-size: 1.8rem;
            }
            
            .slide-text {
                font-size: 1rem;
            }
            
            .hero-logo {
                width: 100px;
                height: 100px;
                margin-bottom: 20px;
            }
            
            .btn-primary {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
            
            .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                margin: 0 5px !important;
            }
            
            .swiper-pagination-bullet-active {
                width: 30px;
            }
        }

        /* Loading States */
        .slide-img {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Gradient Text Effects */
        .gradient-text {
            background: linear-gradient(135deg, #ff5722, #ffeb3b, #4caf50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(to right, #ff5722, #ff9800);
            z-index: 1001;
            transition: width 0.3s ease;
        }

        /* Demo Content (for context) */
        .demo-content {
            padding: 100px 20px;
            text-align: center;
            background: #0a192f;
            color: white;
        }

        .demo-content h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #ffeb3b;
        }

        .demo-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            color: #b0b7c3;
        }
        /* Buttons Section */
        .buttons-section { 
            padding: 30px 30px; 
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            text-align: center; 
            position: relative;
            overflow: hidden;
        }
        
        .buttons-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,87,34,0.1) 0%, transparent 0%);
            z-index: 0;
        }
        
        .buttons-container { 
      
            margin: auto; 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); 
            gap: 30px; 
            position: relative;
            z-index: 1;
        }
        
        .btn-card { 
            background: white;
            padding: 40px 20px; 
            border-radius: 20px; 
            box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
            cursor: pointer; 
            position: relative;
            overflow: hidden;
        }
        
        .btn-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #ff5722, #ff9800);
        }
        
        .btn-card:hover { 
            transform: translateY(-15px) scale(1.03); 
            box-shadow: 0 25px 50px rgba(255, 87, 34, 0.3); 
        }
        
        .btn-card i { 
            font-size: 70px; 
            margin-bottom: 25px; 
            background: linear-gradient(to right, #ff5722, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.4s;
        }
        
        .btn-card:hover i { 
            transform: scale(1.2) rotate(5deg);
        }
        
        .btn-card h3 { 
            font-size: 1.5rem; 
            color: #333;
            transition: color 0.4s;
        }
        
        .btn-card:hover h3 { color: #ff5722; }
        
        /* Activity Section */
        .activity-section { 
            padding: 120px 20px; 
            background: white; 
            position: relative;
            overflow: hidden;
        }
        
        .activity-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/connected.png');
            opacity: 0.05;
            z-index: 0;
        }
        
        .activity-content { 
         
            margin: auto; 
            display: flex; 
            flex-wrap: wrap; 
            align-items: center; 
            justify-content: space-between;
            gap: 60px; 
            position: relative;
            z-index: 1;
        }
        
        .activity-text { 
            flex: 1; 
            min-width: 300px; 
            font-size: 1.2rem; 
        }
        
        .activity-img { 
            flex: 1; 
            min-width: 300px; 
            border-radius: 20px; 
            box-shadow: 0 25px 50px rgba(255, 87, 34, 0.2);
            transition: transform 0.5s;
            filter: brightness(1.05);
        }
        
        .activity-img:hover { transform: scale(1.03); }
        
        /* Gallery */
        .gallery-section { 
            padding: 30px 30px; 
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
            text-align: center; 
            position: relative;
        }
        
        .gallery-title { 
            font-size: 3rem; 
            color: #ff5722; 
            margin-bottom: 30px; 
            position: relative;
            display: inline-block;
        }
        
        .gallery-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #ff5722, #ff9800);
            border-radius: 2px;
        }
        
        .swiper-slide img { 
            height: 300px; 
            width: 100%;
            object-fit: cover; 
            border-radius: 15px; 
            box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
            transition: all 0.5s;
        }
        
        .swiper-slide img:hover { 
            transform: scale(1.05); 
            box-shadow: 0 25px 50px rgba(255, 87, 34, 0.3);
        }
        
        /* Stats Counter */
        .stats-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
            color: white;
            text-align: center;
        }
        
        .stats-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .stat-item {
            padding: 30px 20px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-text {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95));
            padding: 30px 20px 40px; 
            color: white; 
            text-align: center;
            position: relative;
        }
        
        .footer-content { 
            max-width: 1200px; 
            margin: auto; 
            display: flex; 
            flex-wrap: wrap; 
            justify-content: space-between; 
            align-items: flex-start; 
       gap: 30px 60px;

            position: relative;
            z-index: 1;
        }
        
        .footer-left { 
            flex: 1; 
            min-width: 300px; 
            text-align: left; 
        }
        
        .footer-left .logo { 
            justify-content: flex-start; 
            margin-bottom: 30px; 
        }
        
        .footer-left p { 
            font-size: 16px; 
            opacity: 0.9; 
            margin-bottom: 30px;
        }
        
        .footer-right { 
            flex: 1; 
            min-width: 300px; 
            text-align: left; 
        }
        
        .footer-right h3 {
            color: #ff9800;
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-right h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #ff9800;
        }
        
        .contact-item { 
            margin-bottom: 25px; 
            display: flex; 
            align-items: center; 
            gap: 20px; 
             font-size: 16px; 
        }
        
        .contact-item i { 
            color: #ff9800; 
            font-size: 1.5rem; 
            width: 30px;
        }
        
        .social-icons { 
            margin-top: 40px; 
        }
        
        .social-icons a { 
            color: white; 
            font-size: 1.8rem; 
            margin-right: 25px; 
            transition: all 0.3s; 
            display: inline-block;
        }
        
        .social-icons a:hover { 
            color: #ff9800; 
            transform: translateY(-5px);
        }
        
        .copyright { 
            width: 100%;
          
            font-size: 1rem; 
            opacity: 0.8;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Scroll to top button */
        #scrollToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #ff5722;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 87, 34, 0.5);
            z-index: 100;
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
        }
        
        #scrollToTop.active {
            opacity: 1;
            visibility: visible;
        }
        
        #scrollToTop:hover {
            background: #ff9800;
            transform: translateY(-5px);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2.2rem; }
            
            .slide-title { font-size: 2.5rem; }
            .slide-text { font-size: 1.2rem; }
            
            .hero-person { 
                position: static; 
                width: 250px; 
                margin-top: 40px;
                display: block;
                margin-left: auto;
                margin-right: auto;
            }
            
            .footer-content { 
                flex-direction: column; 
                text-align: center; 
                gap: 50px;
            }
            
            .footer-left, .footer-right { 
                text-align: center; 
            }
            
            .footer-left .logo { 
                justify-content: center; 
            }
            
            .contact-item { 
                justify-content: center; 
            }
            
            .footer-right h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        /* Animation for elements */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pad_80 { padding: 80px 0 0 0;}

        .cf7-custom-form {
  max-width: 1000px;
  margin: 30px auto;
  font-family: Arial, Helvetica, sans-serif;
}


.cf7-section-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 35px;
  overflow: hidden;
}
.cf7-section-title {
  background: #ff5722;
  color: #fff;
  padding: 18px 25px;
  font-size: 19px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cf7-section-title i.mdi {
  font-size: 28px;
}
.cf7-section-content {
  padding: 30px;
}
.cf7-section-content label {
  display: block;
  margin-bottom: 25px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}
.cf7-section-content .required {
  color: #ff0000;
  font-weight: bold;
}
/* Inputs & Selects */
.cf7-input, .cf7-select, .cf7-file-input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 15px;
  box-sizing: border-box;
  background: #fff;
}
.cf7-select {
  height: 48px;
}
/* Placeholder color */
.cf7-input::placeholder, textarea::placeholder {
  color: #999;
  opacity: 1;
}
/* File preview */
.file-preview {
  margin-top: 12px;
  text-align: center;
}
.file-preview img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.file-preview .file-name {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  word-break: break-all;
}
/* Validation */
.wpcf7-not-valid {
  border-color: #ff0000 !important;
}
span.wpcf7-not-valid-tip {
  color: #ff0000;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}
/* Submit button */
.cf7-submit {
  background: #ff5722 !important;
  color: #fff !important;
  padding: 15px 50px !important;
  font-size: 18px !important;
  font-weight: bold;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer;
  display: block !important;
  margin: 20px auto 0 !important;
  min-width: 200px;
}
.cf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Flatpickr Theme */
.flatpickr-day.selected {
  background: #ff5722 !important;
  border-color: #ff5722 !important;
}
.flatpickr-day.today {
  border-color: #ff5722;
}
.footer-right a { color: #fff; text-decoration: none;}
.footer-right #menu { display: block;}
.footer-right #menu li{ margin:0 0 10px 0;}
.footer-right #menu li a{  font-size:16px;}
 #menu li a:hover { color:#ff9800; }
 .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    text-align: center;}
    .wpcf7-spinner {
    /* visibility: hidden; */
    display: block !important; margin: 0 auto !important;}



    h2.gallery-title.gujarati-text {
    margin-bottom: 32px;
}
header #menu li a:hover {
    color: #fff;
   text-decoration: underline;
}
.footer-right h3.gujarati-text {
    font-size: 20px;
}
.flatpickr-months .flatpickr-month,.flatpickr-current-month .flatpickr-monthDropdown-months,.flatpickr-weekdays ,span.flatpickr-weekday {
   
	background: #fe5925 !important;color:#fff!important;}


#menu-quick-menu{display: block;
    margin: 0 0;}

#menu-quick-menu li {
	margin-left: 0;}
#menu-quick-menu li a:hover {
    color: #fff;
    text-decoration: underline;
}
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 0;
}



    .pad_80 {
        padding: 100px 0 0 0;
    }

.header-content {
    position: relative; /* parent */
}

.hamburger {
    position: absolute;
    right: 15px;      /* right corner */
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .buttons-container {
        grid-template-columns: 2fr;
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .buttons-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

