/* ==============================
   AMIT DECOR & EVENT - CUSTOM CSS
   ============================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #d4326b;
    --secondary-color: #f9a826;
    --dark-color: #1a1a2e;
    --light-color: #ffffff;
    --gray-color: #6c757d;
    --bg-light: #fff5f8;
    --bg-section: #fdfafa;
    --text-color: #444444;
    --heading-color: #1a1a2e;
    --gradient-primary: linear-gradient(135deg, #d4326b 0%, #f9a826 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 15px 45px rgba(212, 50, 107, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container,
.container-fluid {
    overflow: hidden;
}

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

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
}

p {
    margin-bottom: 0;
}

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

a:hover {
    color: var(--secondary-color);
}

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

::selection {
    background: var(--primary-color);
    color: var(--light-color);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* ===== UTILITY CLASSES ===== */
.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px;
}

.section-title .subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-title.text-center .subtitle {
    padding-left: 0;
    padding-top: 25px;
}

.section-title.text-center .subtitle::before {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

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

.section-title h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 16px;
    color: var(--gray-color);
    max-width: 700px;
}

.section-title.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--light-color) !important;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 20px rgba(212, 50, 107, 0.3);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 50, 107, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--light-color);
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--light-color);
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--gradient-dark);
    color: var(--light-color);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-info span {
    margin-right: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-info i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.top-bar-social a {
    color: var(--light-color);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 6px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* ===== HEADER / NAVBAR ===== */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: var(--shadow-sm);
    background: var(--light-color);
    transition: var(--transition);
}

.header-wrapper.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 18px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--heading-color);
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--light-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(212, 50, 107, 0.3);
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.brand-text small {
    font-size: 13px;
    color: var(--gray-color);
    -webkit-text-fill-color: var(--gray-color);
    font-weight: 400;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--heading-color) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 25px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4326b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO CAROUSEL ===== */
.hero-section {
    position: relative;
}

.carousel-item {
    height: 90vh;
    min-height: 600px;
    position: relative;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomBg 20s linear infinite;
}

@keyframes zoomBg {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.carousel-item .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-caption-custom {
    max-width: 700px;
    color: var(--light-color);
    text-align: left;
    padding: 50px 0;
}

.hero-subtitle {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 70px;
    font-weight: 800;
    color: var(--light-color);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 40px !important;
    height: 4px !important;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: none !important;
    margin: 0 5px !important;
}

.carousel-indicators .active {
    background-color: var(--primary-color) !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 0.8;
    margin: 0 30px;
    backdrop-filter: blur(10px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--bg-section);
}

.about-img-wrapper {
    position: relative;
    padding: 30px;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 8px solid var(--light-color);
    box-shadow: var(--shadow-lg);
}

.about-experience {
    position: absolute;
    top: 30px;
    left: 0;
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience h3 {
    color: var(--light-color);
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: 800;
}

.about-experience p {
    font-size: 13px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-desc {
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-color);
}

.about-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--heading-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 22px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--light-color);
}

.service-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.185);
    height: 100%;
}

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

.service-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-icon {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(212, 50, 107, 0.4);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-content {
    padding: 35px 25px 25px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
}

.service-content p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 18px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: var(--bg-section);
    position: relative;
}

.why-box {
    background: var(--light-color);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.116);
    height: 100%;
}

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

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-box:hover .why-icon {
    transform: rotate(-10deg);
}

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

.why-box p {
    color: var(--gray-color);
    font-size: 14px;
}

.why-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn a {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.play-btn a:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    background: var(--gradient-dark);
    background-image: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    padding: 80px 0;
    position: relative;
}

.counter-box {
    text-align: center;
    color: var(--light-color);
    padding: 20px;
    transition: var(--transition);
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--light-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(212, 50, 107, 0.4);
}

.counter-num {
    color: var(--light-color);
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.counter-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--light-color);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 50, 107, 0.85), rgba(249, 168, 38, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--light-color);
}

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

.gallery-overlay i {
    font-size: 40px;
    margin-bottom: 10px;
    transform: scale(0);
    transition: transform 0.4s 0.1s;
}

.gallery-overlay h5 {
    color: var(--light-color);
    font-size: 22px;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s 0.2s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--light-color);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-quote {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 70px;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: 18px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 18px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author h5 {
    font-size: 16px;
    margin: 0 0 3px;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--gray-color);
    font-size: 13px;
}

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(212, 50, 107, 0.3);
    border: none;
    transition: var(--transition);
}

.carousel-indicators-custom .active {
    background-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--light-color);
}

.faq-img {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.accordion-item {
    background: var(--light-color);
    border: 1px solid rgba(0, 0, 0, 0.13) !important;
    border-radius: var(--border-radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 16px;
    color: var(--heading-color);
    background: var(--light-color) !important;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: var(--bg-light) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4326b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 25px 22px;
    color: var(--gray-color);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-section);
}

.contact-info {
    background: var(--gradient-dark);
    color: var(--light-color);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.15;
}

.contact-info h3 {
    color: var(--light-color);
    font-size: 28px;
    margin-bottom: 12px;
    position: relative;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    position: relative;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.contact-text h5 {
    color: var(--light-color);
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-text p,
.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-group label {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control,
.form-select {
    padding: 12px 18px;
    font-size: 14.5px;
    border: 1.5px solid #e6e6e6;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 50, 107, 0.1);
    outline: none;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    position: relative;
}

.footer-widget h4 {
    color: var(--light-color);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    color: var(--light-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

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

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 50px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FLOATING ICONS ===== */
.floating-icon {
    position: fixed;
    bottom: 130px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--light-color);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: floatIcon 2s ease-in-out infinite;
}

.whatsapp-icon {
    left: 25px;
    background: #25D366;
}

.call-icon {
    right: 25px;
    background: var(--gradient-primary);
}

.floating-icon:hover {
    color: var(--light-color);
    transform: scale(1.15);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.whatsapp-icon::before,
.call-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: ringRipple 2s linear infinite;
    z-index: -1;
}

.whatsapp-icon::before {
    background: rgba(37, 211, 102, 0.5);
}

.call-icon::before {
    background: rgba(212, 50, 107, 0.5);
}

@keyframes ringRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--dark-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* ============================================
   ===== RESPONSIVE / MEDIA QUERIES ============
   ============================================ */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title h2 {
        font-size: 36px;
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .top-bar {
        text-align: center;
    }

    .top-bar-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 8px;
    }

    .top-bar-info span {
        margin-right: 0;
    }

    .navbar-collapse {
        background: var(--light-color);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        padding: 10px 16px !important;
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: var(--bg-light);
        border-radius: 8px;
    }

    .carousel-item {
        height: auto;
        min-height: 550px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .carousel-caption-custom {
        padding: 70px 0;
    }

    .about-img-main {
        height: 400px;
    }

    .about-img-secondary {
        display: none;
    }

    .about-experience {
        padding: 15px 20px;
    }

    .about-experience h3 {
        font-size: 28px;
    }

    .why-img-wrapper img {
        height: 400px;
    }

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

    .section-title {
        margin-bottom: 40px;
    }

    .counter-num {
        font-size: 38px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Small Devices (Phones, less than 768px) */
@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }
.cu-ds-nn{
	display:none!important
}
    .section-padding {
        padding: 60px 0;
    }

    .top-bar {
        font-size: 12px;
        padding: 10px 0;
    }

    .top-bar-info span {
        font-size: 12px;
    }

    .top-bar-social a {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .brand-text small {
        font-size: 11px;
    }

    .carousel-item {
        min-height: 500px;
    }

    .carousel-caption-custom {
        padding: 50px 0;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 12px;
        padding: 6px 18px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 24px;
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title .subtitle {
        font-size: 12px;
        padding-left: 50px;
    }

    .section-title .subtitle::before {
        width: 35px;
    }

    .section-desc {
        font-size: 14px;
    }

    .about-img-main {
        height: 320px;
    }

    .about-experience {
        padding: 12px 18px;
        top: 15px;
    }

    .about-experience h3 {
        font-size: 24px;
    }

    .about-experience p {
        font-size: 11px;
    }

    .service-img {
        height: 200px;
    }

    .service-content {
        padding: 30px 20px 22px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .why-img-wrapper img {
        height: 320px;
    }

    .play-btn a {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .counter-section {
        padding: 60px 0;
    }

    .counter-num {
        font-size: 32px;
    }

    .counter-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .counter-box p {
        font-size: 13px;
    }

    .gallery-item {
        height: 240px;
    }

    .testimonial-card {
        padding: 25px 22px;
    }

    .testimonial-author img {
        width: 48px;
        height: 48px;
    }

    .accordion-button {
        padding: 16px 18px;
        font-size: 14px;
    }

    .accordion-body {
        padding: 0 18px 18px;
        font-size: 13.5px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-section {
        padding: 60px 0 0;
    }

    .footer-widget h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 130px;
    }

    .whatsapp-icon {
        left: 18px;
    }

    .call-icon {
        right: 18px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
        right: 18px;
        bottom: 10px;
    }
}

/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575.98px) {
    .section-padding {
        padding: 50px 0;
    }

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

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 220px;
    }

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

    .section-title.text-center .subtitle {
        padding-top: 20px;
        padding-left: 0;
    }

    .navbar-brand {
        font-size: 19px;
    }

    .brand-text small {
        display: none;
    }

    .about-img-main {
        height: 260px;
    }

    .about-img-wrapper {
        padding: 15px;
    }

    .service-img {
        height: 180px;
    }

    .gallery-item {
        height: 200px;
    }

    .why-img-wrapper img {
        height: 260px;
    }

    .play-btn a {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .counter-num {
        font-size: 26px;
    }

    .counter-box {
        padding: 15px 10px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .col-md-6 {
        margin-bottom: 5px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}