/* ============================================
   Global Styles & Variables
   ============================================ */

:root {
    /* Color Palette */
    --primary-color: #b71c1c; /* deep red */
    --secondary-color: #ffffff;
    --accent-color: #e53935; /* brighter red */
    --gradient-start: #0e0000;
    --gradient-end: #616161;
    --gold: #f39c12;
    --light-gold: #f8b739;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #000000;
    --text-light: rgba(0,0,0,0.6);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family:'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding: 15px;
    background: var(--white);
}

/* ============================================
   Loading Screen
   ============================================ */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 8px;
    margin-bottom: 30px;
    font-family:'Montserrat', sans-serif;
}

.loader-logo span {
    font-size: 24px;
    vertical-align: super;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    animation: loading 1.5s infinite;
    border-radius: 10px;
}

@keyframes loading {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* ============================================
   Custom Cursor
   ============================================ */

.cursor,
.cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    display: none;
}

.cursor {
    background: rgba(0, 0, 0, 0.85);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.28);
    background: transparent;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .cursor,
    .cursor-follower {
        display: block;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-fluid {
    max-width: 100%;
    padding: var(--container-padding);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: relative;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-text {
    color: var(--primary-color);
}

.logo-text sup {
    font-size: 14px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-tagline {
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 28, 28, 0.25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.navbar.scrolled .hamburger span {
    background: var(--primary-color);
}


/* ============================================
   Sidebar (fixed vertical, right side, compact)
   ============================================ */

.sidebar {
    position: fixed;
    right: 15px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    background: #ffffff;
    border-radius: 8px 0 0 8px;
    box-shadow: var(--shadow-md);
    z-index: 1500;
    transition: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-top {
    /* font-family: serif; */
  font-size: 12px;
    width: 100%;
    height: 56px;
    background: #b71c1c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 1px;
}

.sidebar-icons {
    list-style: none;
    width: 100%;
    padding: 1px 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: stretch;
}

.sidebar-icons li { position: relative; }

.sidebar-icons li a {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px 10px;
    color: var(--text-dark);
    text-decoration: none;
}

.sb-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: transparent;
    border-radius: 8px;
    transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.sb-label {
    position: absolute;
    right: 56px; /* place label to left of compact sidebar */
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #b71c1c;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.14s ease, transform 0.14s ease;
}

.sidebar-icons li:hover .sb-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Font Awesome icon styles: translucent/default, glowing on hover */
.sb-icon i, .sb-icon svg {
    display: inline-block;
    vertical-align: middle;
    stroke: rgba(0,0,0,0.55);
    stroke-width: 1.4;
    opacity: 0.9;
}

.sidebar-icons li:hover .sb-icon {
    background: rgba(183,28,28,0.95);
    box-shadow: 0 6px 18px rgba(183,28,28,0.18);
    transform: scale(1.06);
}

.sidebar-icons li:hover .sb-icon svg,
.sidebar-icons li:hover .sb-icon i {
    stroke: #fff;
}

/* Subtle translucent sidebar background for a cleaner look */
.sidebar {
    background: white;
    backdrop-filter: blur(6px);
}

.sidebar-bottom {
    margin-top: auto;
    padding: 8px 0 12px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sb-up {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    background: var(--light-gray);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
}

/* hide original nav links to avoid duplication */
.nav-links { display: none; }


/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 95vh;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}
.hero-gallery {
    min-height: 70vh;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

/* Hero logo inside the hero (placed top-left) */
.hero-logo {
    position: absolute;
    left: 38px;
    /* top: 15px; */
    z-index: 60;
}

.hero-logo img {
    height: 208px;
    width: 170px;
    display: block;
}

/* Hero hamburger (top-right) */
.hero-hamburger {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 80;
    background: transparent;
    border: none;
    font-size: 35px;
    color: var(--primary-color);
    padding: 8px;
    cursor: pointer;
}

/* prevent body scroll when menu open */
.menu-open {
    overflow: hidden;
}

/* Fullscreen menu overlay */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: none;
    z-index: 99999;
    overflow: hidden;
    color: var(--text-dark);
}

.fullscreen-menu.active {
    display: block;
}

.fullscreen-menu .menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 40px;
}

.menu-logo { position: absolute;height: 156px; width: auto; }

.menu-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Feather SVG adjustments for hamburger and close */
/*.hero-hamburger svg,*/
/*.menu-close svg {*/
/*    stroke: var(--primary-color);*/
/*    stroke-width: 1.6;*/
/*    width: 35px;*/
/*    height: 35px;*/
/*}*/
.hero-hamburger svg,
.menu-close svg {
    stroke: var(--primary-color);
    stroke-width: 2;
   width: 45px;
    height: 60px;
}

.menu-center {
    height: calc(100% - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-list {
    list-style: none;
    padding: 0 60px;
    margin: 0;
}

.menu-list li {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 36px 0;
}

.menu-num {
    color: var(--accent-color);
    font-weight: 700;
    width: 48px;
    text-align: right;
    margin-right: 12px;
}

.menu-list a {
    text-transform: uppercase;
    font-size: 25px;
    color: rgba(0, 0, 0, 0.726);
    text-decoration: none;
    /* letter-spacing: 1px; */
    /* font-family: 'Montserrat', sans-serif; */
    /* font-weight: 100; */
}

.menu-edge {
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .menu-logo { display: none;height: 156px; width: auto; }
    .menu-list a { font-size: 22px; }
    .menu-num { width: 36px; }
    .hero-hamburger { right: 12px; top: 12px; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, rgba(183,28,28,0.03) 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(183,28,28,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229,57,53,0.03) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
    z-index: 1;
}

/* Hero slides (carousel) */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 2;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slide-caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    z-index: 4;
    color: #ffffff;
    pointer-events: none;
    animation: slideCaption 0.8s ease-in-out;
}

.hero-slide .hero-slide-caption {
    opacity: 0;
    animation: none;
}

.hero-slide.active .hero-slide-caption {
    opacity: 1;
    animation: slideCaption 0.8s ease-in-out forwards;
}

@keyframes slideCaption {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-caption-heading {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.slide-caption-text {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    color:#b71c1c;
}

.slide-caption-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}


@keyframes heroGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 15px;
    z-index: 5;
    text-align: left;
    max-width: 900px;
}

.hero-heading {
    font-size: 44px;
    line-height: 1.05;
    margin: 0 0 8px 0;
    color: #ffffff;
    text-shadow: 0 6px 18px rgb(0 0 0);
    font-weight: 500;
}

.hero-subheading {
  
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 6px 18px rgb(141, 141, 141);
    color: hsl(352, 84%, 44%) !important;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    font-family:'Montserrat', sans-serif;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #b71c1c;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(183, 28, 28, 0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(183, 28, 28, 0.28);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
}

.stat-number + span {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    margin: 10px auto 0;
    animation: scrollAnim 2s infinite;
}

/* Hero Scroll Arrow */
.hero-scroll-arrow {
    background: white;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-scroll-arrow svg {
    width: 30px;
    height: 30px;
    color: #b71c1c;
    stroke-width: 3;
    animation: arrowBounce 2s infinite;
}
@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes scrollAnim {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
 display: inline-block;
    padding: 15px 30px;
    background-color: #b71c1c;
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 70px #ff000045;
}

.section-title {
    font-size: 48px;
    font-weight: 400 !important;
    color: black;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family:'Montserrat', sans-serif;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/*.image-wrapper img {*/
/*    width: 100%;*/
/*    height: 600px;*/
/*    object-fit: cover;*/
/*    display: block;*/
/*}*/
.image-wrapper img {
    border-radius: 1990px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.14), rgba(0,0,0,0.12));
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 280px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.card-content p {
    font-size: 14px;
    color: var(--text-light);
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   Features Section
   ============================================ */

.features {
    /*padding: var(--section-padding);*/
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    z-index: -1;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.feature-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    z-index: 2;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.feature-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.feature-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 0, 0, 0.164), rgba(0, 0, 0, 0.507));
}

.feature-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}

.feature-content > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    font-size: 15px;
    color: var(--text-dark);
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gradient-start);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   Products Section
   ============================================ */

.products {
    padding: var(--section-padding);
    background: var(--white);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    text-transform: uppercase;
    padding: 12px 28px;
    background: #b71c1c;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #b71c1c;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.18);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

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

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.46), rgba(0,0,0,0.36));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    padding: 14px 32px;
    background: var(--white);
    color: var(--gradient-start);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.product-card:hover .product-btn {
    transform: translateY(0);
}

.product-info {
    display: none;
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-tag {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.03));
    color: var(--gradient-start);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.products-cta {
    text-align: center;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /*grid-auto-rows: 250px;*/
    gap: 5px;
    margin-top: 50px;
}
#colors img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


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

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-info {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.gallery-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--text-light);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

/* ============================================
   Client Brands Section
   ============================================ */

.client-brands {
    /*padding: var(--section-padding);*/
    background: var(--white);
}

.brands-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    width: 100%;
}

.brands-slider {
    width: fit-content;
    display: flex;
    gap: 60px;
    animation: scroll-infinite linear infinite;
    padding: 40px 20px;
}

.brands-slider:hover {
    animation-play-state: paused;
}

.brand-item {
    flex: 0 0 auto;
    /*width: max-content;*/
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: var(--transition-smooth);
}

.brand-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        /*transform: translateX(-50%);*/
         transform: translateX(calc(-100% / 2));
    }
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b71c1c;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    z-index: -1;
}

.cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.08), transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 400 !important;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}
/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.contact-info {
    padding: 60px 50px;
    background: #b71c1c;
    color: var(--white);
}
.contact-info h2 {
    font-size: 36px;
    font-weight: 400 !important;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form {
    padding: 60px 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 15px;
    font-family:'Montserrat', sans-serif;
    transition: var(--transition-smooth);
    background: var(--light-gray);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gradient-start);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn.full {
    width: 100%;
    grid-column: 1 / -1;
}

/* ============================================
   Footer
   ============================================ */
/* 
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
}

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

.footer-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
} */




.site-footer {
  background: #b71c1c;
  color: #ffffff;
  padding: 40px 60px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-links {
  max-width: 75%;
}

.footer-links a,
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin-right: 8px;
}

.footer-links span,
.footer-bottom span {
  color: #ffffff;
  margin: 0 8px;
}

.footer-links a:hover,
.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-social a {
  color: #ffffff;
  margin-left: 15px;
  font-size: 18px;
}

.footer-social a:hover {
  color: #e60000;
}

.footer-bottom {
  margin-top: 25px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    max-width: 100%;
  }

  .footer-social {
    margin-top: 10px;
  }
}


/* ============================================
   Latest Color Video
   ============================================ */
.latest-color {
    padding:var(
        --section-padding
    );
    background: var(--white);
}
.video-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.youtube-video {
    width: 100%;
    height: 85vh;
    display: block;
}
.video-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.18));
}
.video-overlay h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.35);
    padding: 12px 22px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .youtube-video { height: 55vh; }
    .video-overlay h2 { font-size: 20px; padding: 8px 14px; }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .youtube-video { height: 70vh; }
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--white);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .about-content {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .about-content,
    .feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .floating-card {
        position: static;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    
    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: auto;
        grid-row: auto;
    }

    .brands-slider {
        gap: 30px;
        padding: 30px 15px;
    }

    .brand-item {
        min-width: 150px;
        height: 80px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-subtitle,
    .section-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-filters {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }

    .brands-slider {
        gap: 20px;
        padding: 20px 10px;
    }

    .brand-item {
        min-width: 120px;
        height: 70px;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
}

/* ============================================
   Sidebar Dropdown
   ============================================ */

.sidebar-dropdown {
    position: relative;
}

.sidebar-dropdown .dropdown-menu {
    position: absolute;
    right: 60px; /* Position next to the sidebar */
    top: -5px; /* Align with the top of the icon */
    display: none;
    background: #ffffff;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 1600; /* Higher than sidebar */
    list-style: none;
    padding: 6px 0;
    border: 1px solid var(--medium-gray);
}

.sidebar-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    color: var(--text-dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Hide the default 'About' label when showing the dropdown */
.sidebar-dropdown:hover > a .sb-label {
    opacity: 0 !important;
}

/* Keep the main icon highlighted when dropdown is open */
.sidebar-dropdown:hover > a .sb-icon {
    background: rgba(183,28,28,0.95);
    box-shadow: 0 6px 18px rgba(183,28,28,0.18);
    transform: scale(1.06);
}

.sidebar-dropdown:hover > a .sb-icon svg {
    stroke: #fff;
}







/* bottom css for home */
  .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
            color: red;
        }

        .header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .feature-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .icon-btn {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 2px 0px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .icon-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

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

        .icon-btn:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .icon-btn.active {
            background: #b71c1c;
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 15px 40px #ff000045;
        }

        .icon-btn.active .icon {
            filter: brightness(0) invert(1);
        }

        .icon {
            font-size: 3rem;
            transition: all 0.3s;
        }

        .content-section {
            padding: 0px 5% 0px 5%;
            background: white;
            /* border-radius: 30px; */
            overflow: hidden;
            /* box-shadow: 0 20px 60px rgba(0,0,0,0.3); */
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
            animation: fadeIn 0.5s;
        }

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

        .image-container {
            position: relative;
            overflow: hidden;
            background: #f5f5f5;
        }

        .feature-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-container:hover .feature-image {
            transform: scale(1.05);
        }

        .text-container {
            background-color:#c7c7c737;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .feature-badge {
            display: inline-block;
            background: #b71c1c;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            width: fit-content;
        }

        .feature-title {
            font-family: sans-serif;
            font-size: 2.5rem;
            color: black;
            margin-bottom: 25px;
            font-weight: 400 !important;
        }
        .feature-description {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        .feature-points {
            list-style: none;
        }
        .feature-points li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            color: #4a5568;
            font-size: 1rem;
        }
        .feature-points li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
            font-size: 1.3rem;
        }
        @media (max-width: 968px) {
            .content-section {
                grid-template-columns: 1fr;
            }

            .text-container {
                padding: 40px;
            }

            .feature-title {
                font-size: 2rem;
            }

            .header h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 640px) {
            .icon-btn {
                width: 80px;
                height: 80px;
            }

            .icon {
                font-size: 2rem;
            }
        }








        .region-map {
    display: none;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.preview-images {
    width: 100px;
    height: 200px;
}























/* Scrollbar width */
::-webkit-scrollbar {
  width: 18px;   /* vertical scrollbar */
  height: 18px;  /* horizontal scrollbar */
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background: #f0f0f0;   /* light background */
}

/* Scrollbar thumb (moving part) */
::-webkit-scrollbar-thumb {
  background-color: #9b9b9b;  /* light grey */
  border-radius: 0px;         /* square corners */
  border: 2px solid #f0f0f0;  /* thoda spacing effect */
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background-color: #b5b5b5;
}
































.line::after{
     content: '';
    display: block;
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, #b71c1c98, #b71c1c56);
    margin: 10px auto 0;
}










.vishid{
    display: none;
}