:root {
  /* Brand / Primary */
  --primary: #d81921;
  --primary-dark: #b01419;
  --accent: #ffc300;
  --accent-soft: #fff3cc;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;

  /* Background & Elevation */
  --bg: #0d0f12;
  --bg-elevated: #15181d;
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --border: #e4e4e7;

  /* Text */
  --text-main: #ffffff;
  --text-muted: #b4bac7;

  /* Fonts */
  --font-heading: "Barlow", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Rajdhani", sans-serif;

  /* Radius / Shape */
  --radius-pill: 999px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 180ms ease-out;
  --transition-normal: 260ms ease;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--gray-50);
  color: var(--gray-900);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}



/* header  */

        :root {
            --accent: #ffc300;
            --accent-soft: #fff3cc;
            --whatsapp: #25D366;
            --whatsapp-dark: #1da851;
        }

       

        /* ========================================
           ANNOUNCEMENT BAR
        ======================================== */
        .announcement-bar {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 10px 0;
            position: relative;
            overflow: hidden;
        }

     

        .announcement-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .announcement-left {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .announcement-text {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            font-size: 13px;
            font-weight: 500;
        }

        .announcement-text i {
            color: var(--accent);
            font-size: 14px;
        }

        .announcement-badge {
            background: var(--accent);
            color: var(--black);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .announcement-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .announcement-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: color var(--transition);
            opacity: 0.9;
        }

        .announcement-link:hover {
            opacity: 1;
            color: var(--accent);
        }

        .announcement-link i {
            font-size: 12px;
        }

        /* ========================================
           MAIN HEADER
        ======================================== */
        .main-header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }

        .header-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .header-top {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 32px;
            height: 80px;
        }

        /* Logo */
        .logo {
            flex-shrink: 0;
        }

        .logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 48px;
            width: auto;
        }

        /* Search Bar - Made Wider */
        .search-wrapper {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
        }

        .search-bar {
            display: flex;
            align-items: stretch;
            background: var(--gray-100);
            border: 2px solid transparent;
            border-radius: 12px;
            overflow: hidden;
            transition: all var(--transition);
        }

        .search-bar:focus-within {
            background: var(--white);
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(216, 25, 33, 0.1);
        }

        .search-input {
            flex: 1;
            min-width: 0;
            padding: 14px 20px;
            border: none;
            background: transparent;
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--gray-900);
            outline: none;
        }

        .search-input::placeholder {
            color: var(--gray-500);
        }

        .search-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0 24px;
            background: var(--primary);
            border: none;
            color: var(--white);
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: background var(--transition);
            white-space: nowrap;
        }

        .search-btn:hover {
            background: var(--primary-dark);
        }

        .search-btn i {
            font-size: 14px;
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border: none;
            border-radius: 10px;
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transition);
        }

        .header-btn i {
            font-size: 16px;
        }

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

        .btn-whatsapp:hover {
            background: var(--whatsapp-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

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

        .btn-call:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(216, 25, 33, 0.3);
        }

        .mobile-toggle {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border: none;
            border-radius: 10px;
            color: var(--gray-700);
            cursor: pointer;
            transition: all var(--transition);
        }

        .mobile-toggle:hover {
            background: var(--primary);
            color: var(--white);
        }

        .mobile-toggle i {
            font-size: 20px;
        }

        /* ========================================
           NAVIGATION BAR
        ======================================== */
        .nav-bar {
            background: var(--gray-900);
            position: relative;
        }

        .nav-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: stretch;
            gap: 0;
        }

        /* Main Navigation */
        .main-nav {
            display: flex;
            align-items: stretch;
            flex: 1;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 20px;
            color: var(--white);
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all var(--transition);
            border-bottom: 3px solid transparent;
        }

        .nav-link:hover {
            background: rgba(245, 14, 14, 0.05);
            border-bottom-color: white !important;
        }

        .nav-link i.fa-chevron-down {
            font-size: 10px;
            opacity: 0.7;
            transition: transform var(--transition);
        }

        .nav-item:hover .nav-link i.fa-chevron-down {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            background: var(--white);
            border-radius: 0 0 12px 12px;
            box-shadow: var(--shadow-xl);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all var(--transition);
            z-index: 100;
            overflow: hidden;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            color: var(--gray-700);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all var(--transition);
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
            background: var(--gray-50);
            color: var(--primary);
            border-left-color: var(--primary);
            padding-left: 24px;
        }

        .dropdown-item i {
            width: 20px;
            font-size: 14px;
            color: var(--primary);
            text-align: center;
        }

        /* Nav Promo */
        .nav-promo {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 20px;
        }

        .nav-promo-text {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
        }

        .nav-promo-text i {
            font-size: 16px;
        }

        /* ========================================
           MOBILE SIDEBAR
        ======================================== */
        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition);
            z-index: 2000;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 360px;
            height: 100vh;
            background: var(--white);
            box-shadow: var(--shadow-xl);
            transition: left var(--transition);
            z-index: 2001;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .mobile-sidebar.active {
            left: 0;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: #f5f5f5;
        }

        .sidebar-logo img {
            height: 36px;
            width: auto;
           
        }

        .sidebar-close {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 10px;
            color: var(--white);
            cursor: pointer;
            transition: all var(--transition);
        }

        .sidebar-close:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: rotate(90deg);
        }

        /* Mobile Search */
        .sidebar-search {
            padding: 16px 20px;
            background: var(--gray-50);
            border-bottom: 1px solid var(--border);
        }

        .sidebar-search-bar {
            display: flex;
            align-items: stretch;
            background: var(--white);
            border: 2px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
        }

        .sidebar-search-bar:focus-within {
            border-color: var(--primary);
        }

        .sidebar-search-input {
            flex: 1;
            padding: 14px 16px;
            border: none;
            background: transparent;
            font-family: var(--font-body);
            font-size: 15px;
            outline: none;
        }

        .sidebar-search-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 0 16px;
            background: var(--primary);
            border: none;
            color: var(--white);
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Sidebar Navigation */
        .sidebar-nav {
            flex: 1;
            padding: 12px 0;
        }

        .sidebar-item {
            border-bottom: 1px solid var(--gray-100);
        }

        .sidebar-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            color: var(--gray-800);
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            text-decoration: none;
            transition: all var(--transition);
        }

        .sidebar-link:hover {
            background: var(--gray-50);
            color: var(--primary);
        }

        .sidebar-link i {
            font-size: 12px;
            transition: transform var(--transition);
        }

        .sidebar-item.open .sidebar-link i {
            transform: rotate(180deg);
        }

        .sidebar-submenu {
            max-height: 0;
            overflow: hidden;
            background: var(--gray-50);
            transition: max-height 0.3s ease;
        }

        .sidebar-item.open .sidebar-submenu {
            max-height: 500px;
        }

        .sidebar-sublink {
            display: block;
            padding: 12px 20px 12px 40px;
            color: var(--gray-600);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all var(--transition);
            border-left: 3px solid transparent;
        }

        .sidebar-sublink:hover {
            background: var(--white);
            color: var(--primary);
            border-left-color: var(--primary);
        }

        /* Sidebar Actions */
        .sidebar-actions {
            padding: 20px;
            background: var(--gray-50);
            border-top: 1px solid var(--border);
        }

        .sidebar-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            margin-bottom: 12px;
            border-radius: 10px;
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            text-decoration: none;
            transition: all var(--transition);
        }

        .sidebar-btn:last-child {
            margin-bottom: 0;
        }

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

        .sidebar-btn-primary:hover {
            background: var(--primary-dark);
        }

        .sidebar-btn-whatsapp {
            background: var(--whatsapp);
            color: var(--white);
        }

        .sidebar-btn-whatsapp:hover {
            background: var(--whatsapp-dark);
        }

        /* Sidebar Contact */
        .sidebar-contact {
            padding: 20px;
        }

        .sidebar-contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }

        .sidebar-contact-item:last-child {
            margin-bottom: 0;
        }

        .sidebar-contact-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 10px;
            color: var(--primary);
            font-size: 16px;
        }

        .sidebar-contact-text {
            font-size: 14px;
            color: var(--gray-600);
        }

        .sidebar-contact-text a {
            color: var(--gray-800);
            text-decoration: none;
            font-weight: 500;
        }

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

        /* ========================================
           DEMO CONTENT
        ======================================== */
        .demo-content {
            max-width: 1440px;
            margin: 0 auto;
            padding: 60px 24px;
            text-align: center;
        }

        .demo-content h1 {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .demo-content p {
            font-size: 18px;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ========================================
           RESPONSIVE STYLES
        ======================================== */
        @media (max-width: 1200px) {
            .search-wrapper {
                max-width: 500px;
            }
        }

        @media (max-width: 1024px) {
            .nav-bar {
                display: none;
            }

            .header-btn span {
                display: none;
            }

            .header-btn {
                width: 44px;
                height: 44px;
                padding: 0;
                justify-content: center;
            }

            .header-btn i {
                margin: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .header-top {
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .announcement-left {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }

            .announcement-right {
                display: none;
            }

            .header-top {
                display: flex;
                flex-wrap: wrap;
                height: auto;
                padding: 16px 0;
                gap: 12px;
                justify-content: space-between;
                align-items: center;
            }

            .logo {
                order: 1;
            }

            .header-actions {
                order: 2;
                gap: 8px;
            }

            .search-wrapper {
                order: 3;
                width: 100%;
                max-width: 100%;
                flex-basis: 100%;
            }

            .logo img {
                height: 40px;
            }

            .search-btn span {
                display: none;
            }

            .search-btn {
                padding: 0 16px;
            }
        }

        @media (max-width: 480px) {
            .announcement-container {
                padding: 0 16px;
            }

            .header-container {
                padding: 0 16px;
            }

            .announcement-text {
                font-size: 12px;
            }

            .announcement-badge {
                display: none;
            }

            .search-input {
                padding: 12px 14px;
                font-size: 14px;
            }

            .header-top {
                gap: 8px;
                padding: 12px 0;
            }

            .header-actions {
                gap: 6px;
            }

            .header-btn {
                width: 40px;
                height: 40px;
            }

            .mobile-toggle {
                width: 40px;
                height: 40px;
            }

            .logo img {
                height: 36px;
            }

            .demo-content {
                padding: 40px 16px;
            }

            .demo-content h1 {
                font-size: 28px;
            }

            .demo-content p {
                font-size: 16px;
            }
        }
/* header end*/





/* =======================================
   PREMIUM FOOTER - Border PPE
======================================= */

        .premium-footer {
            background: #000000;
            padding-top: 110px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            position: relative;
        }

        /* Subtle gradient glow */
        .premium-footer::before {
            content: '';
            position: absolute;
            top: 0;
            width: 100%;
            height: 120px;
            background: linear-gradient(to bottom,
                    rgba(255, 195, 0, 0.15),
                    transparent);
            pointer-events: none;
        }

        .footer-top {
            max-width: 1650px;
            margin: 0 auto;
            padding: 0 50px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 80px;
        }

        .footer-logo {
            width: 220px;
            margin-bottom: 28px;
        }

        .brand-text {
            font-size: 16px;
            line-height: 1.7;
            opacity: 0.85;
            max-width: 360px;
        }

        .footer-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, #d81921, transparent);
            margin-top: 32px;
        }

        /* Headings */
        .footer-heading {
            font-family: 'Rajdhani', sans-serif;
            font-size: 26px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 24px;
            position: relative;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 3px;
            background: #d81921;
        }

        /* Lists */
        .footer-links {
            margin-top: 40px;
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 14px;
            font-size: 15px;
            line-height: 1.5;
        }

        .footer-links a {
            color: #f2f2f2;
            text-decoration: none;
            transition: 0.35s ease;
            position: relative;
        }

        .footer-links a:hover {
            color: #ffc300;
            padding-left: 8px;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        /* Bottom Bar */
        .footer-bottom {
            margin-top: 80px;
            padding: 28px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1650px;
            margin-left: auto;
            margin-right: auto;
            font-size: 14px;
            color: #bbbbbb;
        }

        .footer-bottom a {
            color: #ffffff;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #d81921;
        }

        /* =======================================
   RESPONSIVE
======================================= */

        @media (max-width: 1200px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }
        }

        @media (max-width: 700px) {
            .footer-top {
                grid-template-columns: 1fr;
                padding: 0 25px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
