@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;600;700;800&family=Poppins:wght@400;700&display=swap');

.hero-static-wrp {
    font-family: 'Mukta', sans-serif;
    background-color: #fff9f2;
    overflow: hidden;
}



.hero-slide-bg-clean {
    background-size: cover !important;
    background-position: center right !important;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.slide-one {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.4) 100%),
        url('../images/homepage-1/bg05.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slide-two {
    background:
         linear-gradient(90deg, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.4) 100%),
        url('../images/homepage-1/bg05.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Typography - Increased Sizes */
.hero-title-clean {
    color: #3E2723;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    /* मोठा आणि स्पष्ट फोंट */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.highlight-text {
    color: #E65100;
    /* Deep Orange */
}

.hero-desc-clean {
    font-size: 1.35rem;
    /* मोठा फोंट */
    color: #5D4037;
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.6;
    font-weight: 500;
}

/* Badges & Buttons */
.custom-badge {
    background: #FFF3E0;
    color: #E65100;
    border: 1px solid #FFE0B2;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-orange {
    background: linear-gradient(45deg, #FF8C00, #FFB300);
    color: #fff !important;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-outline-orange {
    background: #fff;
    color: #FF8C00 !important;
    padding: 16px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: 3px solid #FF8C00;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-orange:hover,
.btn-outline-orange:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4);
}


@keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Images & Badges */
.main-img-clean {
    max-height: 550px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: rotateWheel 20s linear infinite;
}

.exp-badge-white {
    position: absolute;
    bottom: 50px;
    left: -10px;
    background: #fff;
    padding: 20px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #FF8C00;
}

.exp-badge-white .num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FF8C00;
    display: block;
}

.exp-badge-white .txt {
    font-size: 1rem;
    font-weight: 700;
    color: #3E2723;
}

/* Dots */
.custom-hero-dots-gold .swiper-pagination-bullet {
    background: #FFB300;
    width: 14px;
    height: 14px;
}

.custom-hero-dots-gold .swiper-pagination-bullet-active {
    width: 45px;
    background: #FF8C00 !important;
}

/* THIS IS THE HERO SECTION CSS ---------------------------------------------------------------------------

/* Heading Underline */
.title-line {
    width: 60px;
    height: 3px;
    background-color: #ff8c00;
    margin-top: 15px;
    border-radius: 2px;
}

/* Service Card Design */
.service-icon-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.service-icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.1);
    border-color: #ffd8b2;
}

/* Icon Circle */
.icon-circle {
    width: 100px;
    height: 100px;
    background-color: #fff9f2;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
    border: 1px solid #ffe0b2;
}



/* Typography */
.service-card-body h3 {
    color: #2c3e50;
    font-size: 1.5rem;
}

.service-card-body p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .service-icon-card {
        margin-bottom: 20px;
    }
}

/* THIS IS THE SECOND SECTION CSS ---------------------------------------------------------------------------

/* About Section Base */
.about-section-premium {
    background-color: #ffffff;
    font-family: 'Mukta', sans-serif;
    overflow: hidden;
}

/* Titles */
.about-subtitle {
    color: #FF8C00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3E2723;
}

.about-main-title .highlight {
    color: #FF8C00;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: #FF8C00;
    margin-top: 10px;
    border-radius: 2px;
}

/* Image Styling */
.about-img-wrapper {
    position: relative;
    padding: 15px;
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Content Styling */
.intro-para {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.focus-box {
    background: #FFF3E0;
    padding: 25px;
    border-left: 5px solid #FF8C00;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #5D4037;
}

.guruji-note {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 25px;
}

.quote-box {
    font-style: italic;
    font-weight: 600;
    color: #E65100;
    border-top: 1px solid #FFE0B2;
    padding-top: 20px;
    margin-bottom: 35px;
}

/* Button */
.btn-modern-about {
    display: inline-block;
    background: linear-gradient(45deg, #FF8C00, #FFA000);
    color: #fff !important;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-modern-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 2rem;
    }

    .about-content-box {
        margin-top: 30px;
    }
}

/* THIS IS THE Third SECTION CSS ---------------------------------------------------------------------------

/* Card Base Design */
.premium-service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid #f1f1f1;
}

/* Image Container with Soft Overlay */
.service-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img-box img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(195, 155, 46, 0.25));
}

.service-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    color: #c39b2e;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Professional Hover Animation */
.premium-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(195, 155, 46, 0.15);
    border-color: #c39b2e;
}

.premium-service-card:hover .service-img-box img {
    transform: scale(1.1);
}

/* Title and Description Styling */
.service-info h3 {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.premium-service-card:hover .service-info h3 {
    color: #c39b2e;
}

/* Button Styling */
.service-link-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #c39b2e;
    border: 2px solid #c39b2e;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-link-btn:hover {
    background-color: #c39b2e;
    color: #fff;
    box-shadow: 0 5px 15px rgba(195, 155, 46, 0.4);
}

/* THIS IS THE Third SECTION CSS ---------------------------------------------------------------------------

/* Custom Input Styling */
.custom-input {
    background-color: #fff9f2 !important;
    border: 1px solid #ffe0b2 !important;
    padding: 12px 15px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.custom-input:focus {
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2) !important;
    border-color: #ff8c00 !important;
}

/* Button Styling */
.btn-orange {
    background: linear-gradient(45deg, #ff8c00, #ffb300);
    color: white !important;
    border: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.4);
}

/* Slide Animation */
.testimonial-mini-card {
    transition: transform 0.3s ease;
}

.testimonial-mini-card:hover {
    transform: scale(1.02);
}

/* Swiper Adjustment */
.testimonial-swiper-mini .swiper-pagination-bullet-active {
    background: #ff8c00 !important;
}


/* contatct Form */

.classic-input {
        background-color: #fdfdfd !important;
        border: 1px solid #eee !important;
        padding: 15px 20px !important;
        border-radius: 12px !important;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        margin-bottom: 5px;
    }

    .classic-input:focus {
        background-color: #fff !important;
        border-color: #FFB300 !important;
        box-shadow: 0 5px 15px rgba(255, 179, 0, 0.1) !important;
    }

    /* Submit Button Custom Styling */
    .btn-classic-submit {
        background: linear-gradient(45deg, #D32F2F, #B71C1C);
        color: #fff !important;
        border: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
        transition: 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .btn-classic-submit:hover:not(:disabled) {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(211, 47, 47, 0.4);
        background: linear-gradient(45deg, #B71C1C, #D32F2F);
    }

    .btn-classic-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    /* Info Card Styling */
    .classic-info-card {
        border-radius: 15px;
        border: 1px solid #f1f1f1;
        transition: all 0.3s ease;
        border-left: 4px solid #FFB300;
    }

    .classic-info-card:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    }

    /* Info Icon Box */
    .info-icon-box {
        width: 50px;
        height: 50px;
        background: #FFF3E0;
        color: #D32F2F;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.2rem;
        flex-shrink: 0;
    }


    /* Small Action Button */
    .pbmit-btn-sm-classic {
        font-size: 0.8rem;
        font-weight: 700;
        color: #D32F2F;
        text-transform: uppercase;
        text-decoration: none;
        border-bottom: 2px solid #FFB300;
        padding-bottom: 3px;
        transition: 0.3s;
    }


    .pbmit-btn-sm-classic:hover {
        color: #FFB300;
    }

    /* Message styling */
    #form_response {
        padding: 10px 15px;
        border-radius: 8px;
        font-weight: 500;
        display: none;
    }

    #form_response.show {
        display: block;
    }

    #form_response.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    #form_response.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    /* Responsive Fixes */
    @media (max-width: 991px) {
        .contact-form-wrapper {
            padding: 30px 20px;
        }

        .contact-info-sidebar {
            margin-top: 30px;
        }
    }