/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Update all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.company-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.slide-title {
    font-family: 'Poppins', sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: #37236b;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #e91e63;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s;
    font-size: 14px;
}

.social-icons a:hover {
    background-color: #e91e63;
}
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #e91e63;
}

.dropdown-menu li a i {
    width: 20px;
    text-align: center;
    color: #4a148c;
}

/* Product Categories Section */
.product-categories-section {
    padding: 100px 0;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.product-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(74, 20, 140, 0.05)"/></svg>');
    z-index: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.category-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 90px;
    height: 90px;
background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s;
}

.category-card:hover .category-icon {
    background-color: transparent !important;
    transform: scale(1.1);
    /* box-shadow: 0 10px 25px rgba(74, 20, 140, 0.3); */
}

.category-icon i {
    font-size: 40px;
    color: #fff;
}

.category-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.category-count {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.9) 0%, rgba(106, 27, 154, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.category-card:hover .category-overlay {
    opacity: 1;
    visibility: visible;
}

.category-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #4a148c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transform: translateY(20px);
    transition: all 0.4s;
}

.category-card:hover .category-btn {
    transform: translateY(0);
}

.category-btn:hover {
    background-color: #e91e63;
    color: #fff;
}

/* Responsive adjustments for product categories */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-categories-section {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 30px;
    }
    
    .category-name {
        font-size: 20px;
    }
}
/* Main Header */
.main-header {
    background-color: #fff;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #4a148c;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.logo-text .tex {
    color: #4a148c;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li:first-child a {
    color: #e91e63;
}

.nav-menu li a:hover {
    color: #e91e63;
}

.nav-menu li a.dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

/* Help Section */
.help-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    margin-left: 20px;
    transition: all 0.3s;
}

.help-section i {
    color: #e91e63;
    font-size: 20px;
}

.help-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.help-text span:first-child {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

.help-text span:last-child {
    font-size: 16px;
    color: #e91e63;
    font-weight: 700;
}

.help-section:hover {
    background-color: #e91e63;
    border-color: #e91e63;
}

.help-section:hover i,
.help-section:hover .help-text span {
    color: #fff !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #4a148c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Header */
@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }
    
    .contact-info {
        gap: 15px;
    }

    .help-section {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    /* Top bar ko mobile mein hide kar dein */
    .top-bar {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }

    .contact-info {
        display: none;
    }

    .main-nav {
        position: relative;
    }

    .nav-menu {
        position: absolute;
        top: 50px;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 100;
        min-width: 200px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .help-section {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 50px !important;
        width: auto !important;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        padding: 8px 0;
    }

    .header-content {
        height: 70px;
        padding: 0 15px;
    }
    
    .main-header {
        padding: 0;
    }
}

/* Hero Slider Section - Enhanced */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.88) 0%, rgba(106, 27, 154, 0.82) 50%, rgba(74, 20, 140, 0.88) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 900px;
    z-index: 2;
}

.slide-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.slide-title {
    font-size: 58px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-title strong {
    font-weight: 700;
    display: block;
    position: relative;
}

.slide-title .luxury {
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.slide-title .luxury::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e91e63;
}

.slide-title .comfort {
    position: relative;
    display: inline-block;
    color: #64b5f6;
    font-weight: 800;
}

.slide-title .comfort::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #64b5f6;
}

.slide-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.98;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.discover-btn {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.discover-btn:hover {
    background: linear-gradient(135deg, #d81b60 0%, #c2185b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot.active {
    background-color: #e91e63;
    border-color: #fff;
    transform: scale(1.2);
}

/* Slider Responsive */
@media (max-width: 1200px) {
    .hero-slider {
        height: 580px;
    }

    .slide-title {
        font-size: 50px;
    }

    .slide-description {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 520px;
    }

    .slide-title {
        font-size: 44px;
        line-height: 1.3;
    }

    .slide-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .discover-btn {
        padding: 14px 40px;
        font-size: 15px;
    }

    .slide-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 480px;
    }

    .slide-content {
        top: 45%;
        width: 85%;
    }

    .slide-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .slide-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .discover-btn {
        padding: 12px 35px;
        font-size: 14px;
    }

    .slider-controls {
        bottom: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 480px;
    }

    .slide-content {
        top: 50%;
        width: 90%;
        padding: 0 15px;
    }

    .slide-title {
        font-size: 26px !important;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .slide-title br {
        display: none;
    }

    .slide-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .slide-description {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .slide-description br {
        display: none;
    }

    .discover-btn {
        padding: 12px 30px;
        font-size: 13px;
        width: auto;
        display: inline-block;
    }

    .slider-controls {
        bottom: 15px;
        gap: 8px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 400px) {
    .hero-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 22px !important;
    }

    .slide-subtitle {
        font-size: 9px;
    }

    .slide-description {
        font-size: 13px;
    }

    .discover-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
}

/* Company Section */
.company-section {
    background-color: #f5f5f5;
    padding: 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 70px 80px;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
}

.company-left {
    border-right: 1px solid #e8e8e8;
    padding-right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-subtitle {
    color: #e91e63;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.company-title {
    font-size: 38px;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Segoe UI', sans-serif;
}

.company-divider {
    width: 50px;
    height: 2px;
    background-color: #e91e63;
    margin-top: 15px;
}

.company-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 70px;
}

.company-text {
    color: #7a7a7a;
    font-size: 14.5px;
    line-height: 1.9;
    margin-bottom: 22px;
    font-weight: 400;
}

/* Company Section Responsive */
@media (max-width: 1200px) {
    .company-section {
        margin-top: -120px;
    }

    .company-card {
        padding: 60px 70px;
    }

    .company-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .company-section {
        margin-top: -70px !important;
    }
    
    .company-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 40px;
    }

    .company-left {
        border-right: none;
        border-bottom: 2px solid #e8e8e8;
        padding-right: 0;
        padding-bottom: 25px;
    }

    .company-right {
        padding-left: 0;
    }

    .company-title {
        font-size: 34px;
    }

    .company-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
     .company-section {
        margin-top: -50px !important;
    }

    .company-card {
        padding: 25px 15px !important;
        gap: 20px;
    grid-template-columns:none !important;
    }

    .company-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .company-text {
        font-size: 12.5px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .company-divider {
        width: 40px;
        height: 2px;
    }
    .company-left{
        padding-right: 0px !important;
    }
    .company-right{
        padding-left: 0px !important;
    }
}

@media (max-width: 576px) {
    .company-section {
        margin-top: -50px !important;
    }

    .company-card {
        padding: 25px 15px !important;
        gap: 20px;
    grid-template-columns:none !important;
    }

    .company-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .company-text {
        font-size: 12.5px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .company-divider {
        width: 40px;
        height: 2px;
    }
    .company-left{
        padding-right: 0px !important;
    }
    .company-right{
        padding-left: 0px !important;
    }
}

@media (max-width: 400px) {
     .company-section {
        margin-top: -50px !important;
    }

    .company-card {
        padding: 25px 15px !important;
        gap: 20px;
    grid-template-columns:none !important;
    }

    .company-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .company-text {
        font-size: 12.5px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .company-divider {
        width: 40px;
        height: 2px;
    }
    .company-left{
        padding-right: 0px !important;
    }
    .company-right{
        padding-left: 0px !important;
    }
}

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Images */
.who-left {
    position: relative;
}

.image-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.main-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 15%;
    left: 15%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.play-button i {
    color: #4a148c;
    font-size: 32px;
    margin-left: 5px;
}

.color-samples {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 320px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.color-samples img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side - Content */
.who-right {
    padding-left: 20px;
}

.section-subtitle {
    color: #e91e63;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 46px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-description {
    color: #7a7a7a;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 35px 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: #999;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stat-stars i {
    color: #ffa726;
    font-size: 18px;
}

.stat-text {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #e91e63;
}

.video-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 8px;
}

/* Who We Are Responsive */
@media (max-width: 992px) {
    .who-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .color-samples {
        width: 280px;
        height: 180px;
        bottom: -20px;
        right: -20px;
    }

    .who-right {
        padding-left: 0;
    }

    .section-title {
        font-size: 38px;
    }

    .stats-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .color-samples {
        width: 220px;
        height: 140px;
    }

    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .main-image img {
        height: 350px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button i {
        font-size: 24px;
    }

    .color-samples {
        display: none;
    }

    .video-container iframe {
        height: 300px;
    }
}

/* Video Section */
.video-section {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.88) 0%, rgba(106, 27, 154, 0.85) 50%, rgba(74, 20, 140, 0.88) 100%);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.video-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0.95;
}

.video-title {
    font-size: 52px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
}

.video-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.video-play-btn {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-play-btn:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.9);
}

.video-play-btn i {
    font-size: 28px;
    color: #fff;
    margin-left: 5px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 45px 35px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 60px;
    color: #1a1a1a;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.service-category {
    color: #e91e63;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-text {
    color: #7a7a7a;
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background-color: #4a148c;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.service-btn:hover {
    background-color: #6a1b9a;
    transform: translateX(5px);
}

.service-btn i {
    font-size: 12px;
}

/* Why Choose Us Section */
.why-section {
    padding: 100px 0;
    background-color: #fff;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-left {
    padding-right: 30px;
}

.why-title {
    font-size: 46px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 25px;
}

.why-description {
    color: #7a7a7a;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 45px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 42px;
    color: #e91e63;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-content p {
    color: #7a7a7a;
    font-size: 14.5px;
    line-height: 1.8;
}

.why-right {
    position: relative;
    height: 600px;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.modal-container .close-modal {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-container .close-modal:hover {
    color: #e91e63;
    transform: rotate(90deg);
}

.modal-container iframe {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 8px;
}

/* Services & Why Section Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-left {
        padding-right: 0;
    }

    .why-right {
        height: 500px;
    }

    .video-title {
        font-size: 42px;
    }

    .section-title,
    .why-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .video-section {
        height: 450px;
    }

    .video-title {
        font-size: 34px;
    }

    .section-title,
    .why-title {
        font-size: 32px;
    }

    .services-section,
    .why-section {
        padding: 60px 0;
    }

    .why-right {
        height: 400px;
    }

    .modal-container iframe {
        height: 350px;
    }

    .video-play-btn {
        width: 75px;
        height: 75px;
    }

    .video-play-btn i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .video-title {
        font-size: 28px;
    }

    .section-title,
    .why-title {
        font-size: 26px;
    }

    .video-section {
        height: 400px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .feature-item {
        gap: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 36px;
    }

    .modal-container iframe {
        height: 280px;
    }
}

/* Industries & Production Section */
.industries-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before,
.industries-section::after {
    content: '';
    position: absolute;
    border: 3px dashed #4ecdc4;
    border-radius: 50%;
}

.industries-section::before {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -50px;
    opacity: 0.3;
}

.industries-section::after {
    width: 450px;
    height: 450px;
    bottom: -150px;
    right: -100px;
    opacity: 0.3;
}

.industries-header {
    text-align: center;
    margin-bottom: 70px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.dashed-line {
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 3px;
    border-top: 3px dashed #4ecdc4;
    z-index: 0;
}

.step-card {
    background-color: #fff;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.step-label {
    color: #e91e63;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-name {
    font-size: 22px;
    font-weight: 700;
    color: #4a148c;
    margin-bottom: 18px;
}

.step-text {
    color: #7a7a7a;
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a148c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.step-link:hover {
    color: #e91e63;
    border-bottom-color: #e91e63;
    transform: translateX(5px);
}

.step-link i {
    font-size: 12px;
    transition: transform 0.3s;
}

.step-link:hover i {
    transform: translateX(5px);
}

/* Trusted Brands Section */
.brands-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b4e 0%, #4a148c 50%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.brands-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.brands-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.brands-left h2 {
    font-size: 42px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.brands-left p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.brand-card {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.brand-card img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

/* Services Stats Section */
.services-stats-section {
    padding: 100px 0;
    background-color: #f8f8f8;
    position: relative;
}

.stats-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}

.stats-left {
    position: relative;
}

.stats-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.stats-image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.experience-number {
    font-size: 56px;
    font-weight: 800;
    color: #e91e63;
    line-height: 1;
    margin-bottom: 8px;
}

.experience-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
}

.stats-right {
    padding-left: 20px;
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stats-mini-card {
    background-color: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stats-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.stats-mini-number {
    font-size: 42px;
    font-weight: 800;
    color: #4a148c;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-mini-label {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Industries, Brands & Stats Responsive */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .brands-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashed-line {
        display: none;
    }

    .brands-left h2 {
        font-size: 38px;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-right {
        padding-left: 0;
    }

    .stats-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-image-wrapper img {
        height: 450px;
    }

    .experience-badge {
        top: 30px;
        left: 30px;
        padding: 25px 35px;
    }

    .experience-number {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }

    .brands-section {
        padding: 60px 0;
    }

    .brands-left h2 {
        font-size: 32px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 35px 25px;
    }

    .services-stats-section {
        padding: 60px 0;
    }

    .stats-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-image-wrapper img {
        height: 400px;
    }

    .experience-badge {
        top: 20px;
        left: 20px;
        padding: 20px 30px;
    }

    .experience-number {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .brands-left h2 {
        font-size: 26px;
    }

    .stats-image-wrapper img {
        height: 350px;
    }

    .experience-badge {
        padding: 18px 25px;
    }

    .experience-number {
        font-size: 36px;
    }

    .experience-text {
        font-size: 10px;
    }

    .stats-mini-number {
        font-size: 36px;
    }
}

/* Newsletter Section */
.newsletter-section {
    background-color: #1a0e2e;
    padding: 50px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 28px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-input {
    width: 320px;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 15px 35px;
    background-color: #4a148c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    background-color: #6a1b9a;
    transform: translateY(-2px);
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 15px;
}

/* Footer */
.footer {
    background-color: #1a0e2e;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about {
    padding-right: 30px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-logo .tex {
    color: #4a148c;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
}

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #e91e63;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #e91e63;
    font-size: 16px;
    margin-top: 3px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #e91e63;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.copyright a {
    color: #e91e63;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #e91e63;
    transform: translateY(-3px);
}

.success-message {
    display: none;
    padding: 12px 20px;
    background-color: #4caf50;
    color: #fff;
    border-radius: 6px;
    margin-top: 15px;
    animation: fadeIn 0.3s;
}

.success-message.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Newsletter & Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-text h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 0;
    }
}

/* General Mobile Improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.7;
    }

    button, .btn, a.btn {
        width: auto;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}
/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   contact.css file mein save karein
======================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 50%, #4a148c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.85) 0%, rgba(106, 27, 154, 0.85) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero-content p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon i {
    font-size: 36px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-card p {
    color: #7a7a7a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info-card a {
    color: #7a7a7a;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: #e91e63;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: #f0f0f0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Form Container */
.form-container {
    padding: 60px 50px;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-header p {
    color: #7a7a7a;
    font-size: 15px;
    line-height: 1.7;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    padding: 18px 45px;
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #6a1b9a 0%, #8e24aa 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 20, 140, 0.3);
}

.submit-btn i {
    font-size: 18px;
}

/* Success Alert */
.success-alert {
    display: none;
    padding: 15px 20px;
    background-color: #4caf50;
    color: #fff;
    border-radius: 6px;
    margin-top: 20px;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    animation: slideDown 0.4s ease-out;
}

.success-alert.show {
    display: flex;
}

.success-alert i {
    font-size: 20px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map Container */
.map-container {
    position: relative;
    height: 100%;
    min-height: 700px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 50px 40px;
    }

    .map-container {
        min-height: 450px;
    }

    .contact-hero-content h1 {
        font-size: 46px;
    }

    .form-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 350px;
    }

    .contact-hero-content h1 {
        font-size: 38px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-info-section {
        padding: 60px 0;
        margin-top: -30px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .form-container {
        padding: 40px 30px;
    }

    .form-header h2 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-container {
        min-height: 400px;
    }

    .contact-info-card {
        padding: 40px 25px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
    }

    .contact-card-icon i {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 300px;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-hero-content p {
        font-size: 14px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .form-header p {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 15px 35px;
        font-size: 15px;
    }

    .map-container {
        min-height: 350px;
    }

    .contact-info-card {
        padding: 35px 20px;
    }

    .contact-info-card h3 {
        font-size: 12px;
    }

    .contact-info-card p {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .submit-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Success and Error Alerts */
.success-alert,
.error-alert {
    display: none;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 16px;
    animation: slideDown 0.3s ease;
}

.success-alert {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-alert {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.success-alert i,
.error-alert i {
    margin-right: 10px;
    font-size: 18px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}