       /* ================= ROOT ================= */
       :root {
           --primary: #00AEED;
           --themered: #F27024;
           --themeskyblue: #01A4FF;
           --secondary: #ffb703;
           --dark: #0f172a;
           --light: #ffffff;
           --gray: #30394188;
           --glass: rgba(255, 255, 255, 0.75);
           --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
           --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.08);
           --transition: all 0.35s ease;
       }

       * {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
           font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
       }

       html {
           scroll-behavior: smooth;
       }

       body {
           color: var(--dark);
           background: var(--light);
           line-height: 1.6;
       }

       .container {
           width: 90%;
           max-width: 1200px;
           margin: 0 auto;
           padding: 0 15px;
       }

       a {
           text-decoration: none;
           color: inherit;
           transition: var(--transition);
       }

       ul {
           list-style: none;
           padding: 0;
       }

       img {
           max-width: 100%;
           height: auto;
       }

       .btn {
           display: inline-block;
           padding: 12px 28px;
           background-color: var(--primary);
           color: white;
           border-radius: 5px;
           font-weight: 600;
           cursor: pointer;
           border: none;
           transition: var(--transition);
       }

       .btn:hover {
           background-color: var(--themered);
           color: #fff;
           transform: translateY(-3px);
           box-shadow: 0 30px 50px rgba(42, 91, 215, 0.45);
       }

       .btn-secondary {
           background-color: var(--secondary);
       }

       .btn-secondary:hover {
           background-color: #e05a2b;
       }

       section {
           padding: 80px 0;
       }

       .section-title {
           text-align: center;
           margin-bottom: 50px;
       }

       .section-title h2 {
           font-size: 2.5rem;
           color: var(--dark);
           margin-bottom: 15px;
           position: relative;
           display: inline-block;
       }

       .section-title h2::after {
           content: '';
           position: absolute;
           bottom: -10px;
           left: 50%;
           transform: translateX(-50%);
           width: 70px;
           height: 4px;
           /* background-color: var(--primary); */
           background-color: var(--themered);
       }

       .section-title p {
           color: var(--gray);
           font-size: 1.1rem;
           max-width: 700px;
           margin: 0 auto;
       }

       /* Header & Navigation */
       header {
           position: fixed;
           top: 0;
           width: 100%;
           z-index: 1000;

           /* Default = transparent */
           background: transparent;
           backdrop-filter: none;
           box-shadow: none;

           transition: all 0.35s ease;
       }

       /* When scrolled */
       header.scrolled {
           background: rgba(255, 255, 255, 0.75);
           backdrop-filter: blur(12px);
           box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       }


       header .nav-menu a,
       .logo h1 span {
           color: #fff;
       }

       header.scrolled .nav-menu a {
           color: var(--dark);
       }



       header.scrolled .logo h1 span,
       header.scrolled .logo i {
           color: var(--primary);
       }


       .header-container {
           display: flex;
           justify-content: space-between;
           align-items: center;
           padding: 18px 0;

       }

       /* .logo {
           display: flex;
           align-items: center;
           gap: 10px;
       }

       .logo i {
           font-size: 2.3rem;
           color: var(--themered);
       }

       .logo h1 {
           font-size: 1.9rem;
           letter-spacing: 1px;
       }

       .logo span {
           color: var(--primary);
       } */

       .logo img {
           width: 160px;
           height: auto;
       }


       .nav-menu {
           display: flex;
           gap: 40px;
           margin-bottom: 0;
       }

       .nav-menu a {
           font-weight: 600;
           color: var(--dark);
           position: relative;
           transition: var(--transition);
       }

       /* .nav-menu a:hover {
           color: var(--primary);
       } */

       .nav-menu a::after {
           content: '';
           position: absolute;
           left: 50%;
           bottom: -8px;
           width: 0;
           height: 3px;
           /* background: var(--primary); */
           background: var(--themered);
           border-radius: 10px;
           transform: translateX(-50%);
           transition: var(--transition);
       }

       /* .nav-menu a:hover,
       .nav-menu a.active {
           color: var(--primary);
       } */

       .nav-menu a:hover::after,
       .nav-menu a.active::after {
           width: 100%;
       }

       .mobile-menu-btn {
           display: none;
           font-size: 1.5rem;
           cursor: pointer;
           color: whitesmoke;
       }

       header.scrolled .mobile-menu-btn {
           color: #151522;
       }


       /* Hero Carousel */
       .hero-carousel {
           position: relative;
           padding-top: 0px;
       }

       .hero-overlay {
           position: absolute;
           inset: 0;
           background: linear-gradient(rgba(0, 0, 0, 0.75),
                   rgba(0, 0, 0, 0.6));
       }

       .hero-content {
           position: relative;
           z-index: 2;
           color: #fff;
           text-align: center;
           top: 50%;
           transform: translateY(-50%);
           animation: fadeUp 1s ease forwards;
       }

       .hero-content h2 {
           font-size: 3.5rem;
           font-weight: 700;
           margin-bottom: 20px;
       }

       .hero-content p {
           font-size: 1.2rem;
           max-width: 720px;
           margin: 0 auto 35px;
           opacity: 0.9;
       }

       .hero-btns {
           display: flex;
           gap: 20px;
           justify-content: center;
       }



       .hero-btns .btn-secondary {
           background: transparent;
           border: 2px solid #fff;
           color: #fff;
       }

       .hero-btns .btn-secondary:hover {
           background: #fff;
           color: #000;
       }

       /* Mobile */
       @media (max-width: 768px) {
           .hero-content h2 {
               font-size: 2.2rem;
           }

           .hero-content p {
               font-size: 1rem;
           }

           .hero-btns {
               flex-direction: column;
           }
       }


       /* Services Section */
       .services-grid {
           display: grid;
           grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
           gap: 30px;
       }

       .service-card {
           background-color: white;
           border-radius: 10px;
           overflow: hidden;
           box-shadow: var(--shadow);
           transition: var(--transition);
       }

       .service-card:hover {
           transform: translateY(-10px);
       }

       .service-img {
           height: 200px;
           overflow: hidden;
       }

       .service-img img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           transition: var(--transition);
       }

       .service-card:hover .service-img img {
           transform: scale(1.1);
       }

       .service-content {
           padding: 25px;
       }

       .service-content h3 {
           font-size: 1.5rem;
           margin-bottom: 15px;
           color: var(--dark);
       }

       .service-content p {
           color: var(--gray);
           margin-bottom: 20px;
       }

       /* Products Section */
       .products-section {
           background-color: #f8f9fa;
       }

       .products-filter {
           display: flex;
           justify-content: center;
           gap: 15px;
           margin-bottom: 40px;
           flex-wrap: wrap;
       }

       .filter-btn {
           padding: 8px 20px;
           background-color: white;
           border: 2px solid #e0e0e0;
           border-radius: 30px;
           font-weight: 600;
           cursor: pointer;
           transition: var(--transition);
       }

       .filter-btn.active,
       .filter-btn:hover {
           background-color: var(--primary);
           color: white;
           border-color: var(--primary);
       }

       .products-grid {
           display: grid;
           grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
           gap: 30px;
       }

       .product-card {
           background-color: white;
           border-radius: 10px;
           overflow: hidden;
           box-shadow: var(--shadow);
           transition: var(--transition);
       }

       .product-card:hover {
           transform: translateY(-5px);
       }

       .product-img {
           width: 100%;
           height: 350px;
       }

       .product-img img {
           width: 100%;
           height: 100%;
           object-fit: cover;
       }

       .product-content {
           padding: 20px 20px 10px;
       }

       .product-content h3 {
           font-size: 1.3rem;
           margin-bottom: 10px;
       }

       .product-price {
           color: var(--primary);
           font-weight: 700;
           font-size: 1.2rem;
           margin-bottom: 15px;
       }

       .product-rating {
           color: #ffc107;
           margin-bottom: 15px;
       }

       /* About Section */
       .about-content {
           display: grid;
           grid-template-columns: 1fr 1fr;
           gap: 50px;
           align-items: center;
       }

       .about-text h3 {
           font-size: 2rem;
           margin-bottom: 20px;
           color: var(--dark);
       }

       .about-text p {
           margin-bottom: 20px;
           color: var(--gray);
       }

       .about-features {
           margin-top: 30px;
       }

       .feature-item {
           display: flex;
           align-items: flex-start;
           gap: 15px;
           margin-bottom: 20px;
       }

       .feature-icon {
           width: 50px;
           height: 50px;
           background-color: rgba(42, 91, 215, 0.1);
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           color: var(--primary);
           font-size: 1.2rem;
           flex-shrink: 0;
       }

       .about-btn:hover {
           background-color: var(--themered) !important;
           color: #e0e0e0;
       }

       /* Contact Section */
       .contact-section {
           padding: 80px 0;
           background: #f7f8fa;
           /* off white */
           color: #333;
       }

       /* Layout */
       .contact-container {
           display: grid;
           grid-template-columns: 1fr 1fr;
           gap: 60px;
           align-items: stretch;
       }

       /* ===============================
   Contact Info Card
================================ */
       .contact-info {
           background: #ffffff;
           padding: 45px;
           border-radius: 18px;
           box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
       }

       .contact-info h3 {
           font-size: 2rem;
           margin-bottom: 15px;
           color: #111;
       }

       .contact-info p {
           font-size: 1rem;
           color: #666;
           margin-bottom: 35px;
       }

       /* Contact Details */
       .contact-item {
           display: flex;
           align-items: center;
           gap: 18px;
           margin-bottom: 25px;
       }

       .contact-icon {
           width: 52px;
           height: 52px;
           background: rgba(255, 107, 53, 0.12);
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           font-size: 1.2rem;
           color: var(--primary);
       }

       .contact-item h4 {
           font-size: 1.05rem;
           margin-bottom: 4px;
           color: #111;
       }

       .contact-item p {
           margin: 0;
           font-size: 0.95rem;
           color: #666;
       }

       /* Social Icons */
       .contact-info .social-links a {
           display: inline-flex;
           align-items: center;
           justify-content: center;
           width: 42px;
           height: 42px;
           margin-right: 8px;
           border-radius: 50%;
           background: #f1f1f1;
           color: #555;
           transition: 0.3s;
       }

       .contact-info .social-links a:hover {
           background: var(--primary);
           color: #fff;
           transform: translateY(-3px);
       }

       /* ===============================
   Contact Form Card
================================ */
       .contact-form {
           background: #ffffff;
           padding: 45px;
           border-radius: 18px;
           box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
       }

       .contact-form .form-group {
           margin-bottom: 22px;
       }

       .contact-form input,
       .contact-form textarea {
           width: 100%;
           padding: 15px 18px;
           border-radius: 10px;
           border: 1px solid #ddd;
           background: #fafafa;
           color: #333;
           font-size: 0.95rem;
       }

       .contact-form input::placeholder,
       .contact-form textarea::placeholder {
           color: #999;
       }

       .contact-form input:focus,
       .contact-form textarea:focus {
           outline: none;
           border-color: var(--primary);
           background: #fff;
       }

       .contact-form textarea {
           height: 150px;
           resize: none;
       }

       /* Submit Button */
       .contact-form .btn {
           width: 100%;
           padding: 14px;
           font-size: 1rem;
           font-weight: 600;
           border-radius: 30px;
           background: var(--primary);
           color: #fff;
           border: none;
       }

       .contact-form .btn:hover {
           background: var(--themered);
       }

       /* ===============================
   Responsive
================================ */
       @media (max-width: 992px) {
           .contact-container {
               grid-template-columns: 1fr;
           }
       }

       /* Footer */
       footer {
           background-color: #151522;
           color: white;
           padding: 70px 0 20px;
       }

       .footer-content {
           display: grid;
           grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
           gap: 40px;
           margin-bottom: 50px;
       }

       .footer-column h3 {
           font-size: 1.3rem;
           margin-bottom: 25px;
           position: relative;
       }

       .footer-column h3::after {
           content: '';
           position: absolute;
           bottom: -10px;
           left: 0;
           width: 50px;
           height: 3px;
           /* background-color: var(--primary); */
           background-color: var(--themered);
       }

       .footer-links li {
           margin-bottom: 12px;
       }

       .footer-links a {
           opacity: 0.8;
       }

       .footer-links a:hover {
           opacity: 1;
           color: var(--primary);
           padding-left: 5px;
       }

       .social-links {
           display: flex;
           gap: 15px;
           margin-top: 20px;
       }

       .social-links a {
           display: flex;
           align-items: center;
           justify-content: center;
           width: 40px;
           height: 40px;
           background-color: rgba(255, 255, 255, 0.1);
           border-radius: 50%;
           transition: var(--transition);
       }

       .social-links a:hover {
           background-color: var(--primary);
           transform: translateY(-5px);
       }

       .copyright {
           text-align: center;
           padding-top: 20px;
           border-top: 1px solid rgba(255, 255, 255, 0.1);
           opacity: 0.7;
           font-size: 0.9rem;
       }

       /* Page-specific styles */
       .page-header {
           background-image: url(../imgaes/bgbanner.png);
           background-size: cover;
           background-position: center;
           background-repeat: no-repeat;
           color: #fff;
           text-align: center;
           padding: 100px 0 50px;
       }


       .page-header h1 {
           font-size: 3rem;
           margin-bottom: 15px;
       }

       .page-header p {
           font-size: 1.2rem;
           max-width: 700px;
           margin: 0 auto;
           opacity: 0.9;
       }

       .breadcrumb {
           display: flex;
           justify-content: center;
           gap: 10px;
           margin-top: 20px;
           font-size: 0.95rem;
       }

       .breadcrumb a:hover {
           color: var(--secondary);
       }

       /* Responsive Design */
       @media (max-width: 992px) {
           .nav-menu {
               gap: 20px;
           }

           .hero-content h2 {
               font-size: 2.8rem;
           }

           .about-content {
               grid-template-columns: 1fr;
           }

           .contact-container {
               grid-template-columns: 1fr;
           }
       }

       @media (max-width: 768px) {
           .mobile-menu-btn {
               display: block;
           }

           .nav-menu {
               position: fixed;
               top: 80px;
               left: -100%;
               width: 100%;
               flex-direction: column;
               background-color: whitesmoke;
               padding: 30px;
               box-shadow: var(--shadow);
               transition: var(--transition);
               z-index: 999;
           }

           .nav-menu a {
               color: #0f172a !important;
           }

           .nav-menu.active {
               left: 0;
           }

           .hero-content h2 {
               font-size: 2.2rem;
           }

           .hero-btns {
               flex-direction: column;
               align-items: center;
           }

           .btn {
               width: 100%;
               max-width: 250px;
           }

           .section-title h2 {
               font-size: 2rem;
           }

       }

       @media (max-width: 576px) {
           .header-container {
               /* flex-direction: column; */
               gap: 15px;
           }

           .hero {
               padding: 120px 0;
           }

           section {
               padding: 60px 0;
           }
       }

       #backToTop {
           position: fixed;
           bottom: 30px;
           right: 30px;
           width: 50px;
           height: 50px;
           background: var(--primary);
           color: #fff;
           border: none;
           border-radius: 50%;
           cursor: pointer;
           display: flex;
           align-items: center;
           justify-content: center;
           font-size: 18px;
           opacity: 0;
           visibility: hidden;
           transition: all 0.3s ease;
           z-index: 9999;
       }

       #backToTop:hover {
           background: #000;
       }

       #backToTop.show {
           opacity: 1;
           visibility: visible;
       }

       .contact_stickey {
           display: none;
           flex-direction: column;
       }


       .contact_stickey {
           position: fixed;
           bottom: 90px;
           right: 30px;
           display: flex;
           flex-direction: column;
           gap: 10px;
           z-index: 1000;
       }

       .contact_stickey .call,
       .contact_stickey .whatsapp {
           padding: 5px;
           text-decoration: none;
           border-radius: 15%;
           box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
           transition: background-color 0.3s, transform 0.3s;
       }

       .contact_stickey .whatsapp {
           background-color: #25D366;
       }

       .contact_stickey .call {
           background-color: var(--dark);
       }

       .whatsapp:hover,
       .call:hover {
           transform: scale(1.1);
       }




       /* ================= HERO ================= */
       .hero-carousel .carousel-item {
           height: 100vh;
           min-height: 600px;
           background-size: cover;
           background-position: center;
           background-attachment: fixed;
       }

       .hero-overlay {
           background:
               radial-gradient(circle at top, rgba(42, 91, 215, 0.25), transparent 60%),
               linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
       }

       /* HERO CONTENT */
       .hero-content {
           animation: fadeUp 1s ease forwards;
       }

       .hero-content h2 {
           font-size: 4rem;
           font-weight: 800;
           line-height: 1.2;
           text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
       }

       .hero-content p {
           font-size: 1.25rem;
           color: #e5e7eb;
       }

       /* ================= BUTTONS ================= */
       .hero-btns .btn {
           padding: 15px 38px;
           border-radius: 50px;
           font-weight: 700;
           /* background: linear-gradient(135deg, var(--secondary), #ffd166); */
           background: var(--themered);
           color: #fff;
           box-shadow: var(--shadow-sm);
           transition: var(--transition);
       }

       .hero-btns .btn:hover {
           transform: translateY(-4px) scale(1.03);
           box-shadow: var(--shadow-lg);
           /* background-color: var(--themeskyblue); */
       }

       .hero-btns .btn-secondary {
           background: transparent;
           border: 2px solid #fff;
           color: #fff;
       }

       .hero-btns .btn-secondary:hover {
           background: #fff;
           color: #000;
       }

       /* ================= CONTROLS ================= */
       .carousel-control-prev,
       .carousel-control-next {
           width: 55px;
       }

       .carousel-control-prev-icon,
       .carousel-control-next-icon {
           filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.6));
       }

       /* ================= ANIMATION ================= */
       @keyframes fadeUp {
           from {
               opacity: 0;
               transform: translateY(40px);
           }

           to {
               opacity: 1;
               transform: translateY(-50%);
           }
       }

       /* ================= MOBILE ================= */
       @media (max-width: 768px) {
           .hero-carousel .carousel-item {
               background-attachment: scroll;
           }

           .hero-content h2 {
               font-size: 1.4rem;
           }

           .hero-btns {
               flex-direction: column;
           }
       }

       .hero-badge {
           display: inline-block;
           padding: 8px 18px;
           background: rgba(255, 255, 255, 0.15);
           backdrop-filter: blur(10px);
           border-radius: 30px;
           font-size: 0.9rem;
           margin-bottom: 20px;
       }


       /* ================= ABOUT SECTION ================= */
       .about-section {
           /* padding: 100px 0; */
           background:
               radial-gradient(circle at top left, rgba(42, 91, 215, 0.08), transparent 40%),
               #f8fafc;
       }

       .about-content {
           display: grid;
           grid-template-columns: 1.1fr 1fr;
           align-items: center;
           gap: 60px;
       }

       /* Text */
       .section-badge {
           display: inline-block;
           padding: 8px 18px;
           background: rgba(42, 91, 215, 0.1);
           color: var(--primary);
           border-radius: 30px;
           font-weight: 600;
           margin-bottom: 15px;
       }

       .about-text h3 {
           font-size: 2.8rem;
           font-weight: 800;
           margin-bottom: 20px;
       }

       .about-text h3 span {
           color: var(--primary);
       }

       .about-text p {
           color: #475569;
           margin-bottom: 18px;
           max-width: 520px;
       }

       /* Features */
       .about-features {
           margin-top: 35px;
           display: grid;
           gap: 22px;
       }

       .feature-item {
           display: flex;
           gap: 18px;
           padding: 18px 22px;
           background: rgba(255, 255, 255, 0.8);
           backdrop-filter: blur(12px);
           border-radius: 18px;
           box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
           transition: all 0.3s ease;
       }

       .feature-item:hover {
           transform: translateY(-4px);
           box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
       }

       .feature-icon {
           width: 48px;
           height: 48px;
           background: linear-gradient(135deg, var(--primary), #5b8cff);
           color: #fff;
           border-radius: 14px;
           display: flex;
           align-items: center;
           justify-content: center;
           font-size: 1.3rem;
           flex-shrink: 0;
       }

       /* Button */
       .about-btn {
           margin-top: 40px;
           padding: 14px 36px;
           border-radius: 50px;
           font-weight: 700;
           color: #fff;
           box-shadow: 0 20px 40px rgba(42, 91, 215, 0.3);
           transition: all 0.3s ease;
       }

       .about-btn:hover {
           background-color: var(--themered) !important;
           transform: translateY(-3px);
       }

       /* Image */
       .about-image {
           position: relative;
       }

       .about-image img {
           width: 100%;
           border-radius: 26px;
           box-shadow: 0 40px 70px rgba(0, 0, 0, 0.15);
           position: relative;
           z-index: 2;
       }

       .image-glass {
           position: absolute;
           inset: -20px;
           border-radius: 30px;
           background: linear-gradient(135deg, rgba(42, 91, 215, 0.15), transparent);
           z-index: 1;
       }

       /* ================= MOBILE ================= */
       @media (max-width: 992px) {
           .about-content {
               grid-template-columns: 1fr;
               gap: 50px;
           }

           .about-text h3 {
               font-size: 2.2rem;
           }

           .about-text p {
               max-width: 100%;
           }
       }

       /* ================= SERVICES SECTION ================= */
       .services-section {
           padding: 100px 0;
           background:
               radial-gradient(circle at top right, rgba(42, 91, 215, 0.08), transparent 40%),
               #ffffff;
       }

       /* Section Title */
       .section-title {
           text-align: center;
           max-width: 650px;
           margin: 0 auto 70px;
       }

       .section-title h2 {
           font-size: 2.8rem;
           font-weight: 800;
           margin-bottom: 15px;
       }

       .section-title p {
           color: #64748b;
       }

       .section-badge {
           display: inline-block;
           padding: 8px 18px;
           background: rgba(42, 91, 215, 0.1);
           color: var(--primary);
           border-radius: 30px;
           font-weight: 600;
           margin-bottom: 12px;
       }

       /* Grid */
       .services-grid {
           display: grid;
           grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
           gap: 35px;
       }

       /* Card */
       .service-card {
           background: #fff;
           border-radius: 26px;
           overflow: hidden;
           box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
           transition: all 0.35s ease;
       }

       .service-card:hover {
           transform: translateY(-8px);
           box-shadow: 0 40px 70px rgba(0, 0, 0, 0.15);
       }

       /* Image */
       .service-img {
           height: 220px;
           overflow: hidden;
       }

       .service-img img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           transition: transform 0.6s ease;
       }

       .service-card:hover .service-img img {
           transform: scale(1.08);
       }

       /* Content */
       .service-content {
           padding: 30px;
       }

       .service-content h3 {
           font-size: 1.4rem;
           font-weight: 700;
           margin-bottom: 12px;
       }

       .service-content p {
           color: #475569;
           margin-bottom: 22px;
       }

       /* Link Button */
       .service-link {
           font-weight: 700;
           color: var(--primary);
           display: inline-flex;
           align-items: center;
           gap: 8px;
           transition: all 0.3s ease;
       }

       .service-link i {
           transition: transform 0.3s ease;
       }

       .service-link:hover {
           color: #1e40af;
       }

       .service-link:hover i {
           transform: translateX(5px);
       }

       /* ================= MOBILE ================= */
       @media (max-width: 768px) {
           .section-title h2 {
               font-size: 2.2rem;
           }

           .service-img {
               height: 200px;
           }
       }

       /* ================= PRODUCTS SECTION ================= */
       .products-section {
           padding: 100px 0;
           background:
               radial-gradient(circle at bottom left, rgba(42, 91, 215, 0.08), transparent 40%),
               #f8fafc;
       }

       /* Filters */
       .products-filter {
           display: flex;
           justify-content: center;
           gap: 15px;
           margin: 40px 0 60px;
           flex-wrap: wrap;
       }

       .filter-btn {
           padding: 10px 22px;
           border-radius: 30px;
           border: none;
           background: #e5e7eb;
           font-weight: 600;
           cursor: pointer;
           transition: all 0.3s ease;
       }

       .filter-btn.active,
       .filter-btn:hover {
           background: linear-gradient(135deg, var(--primary), #4f8cff);
           color: #fff;
           box-shadow: 0 12px 25px rgba(42, 91, 215, 0.3);
       }

       /* Grid */
       .products-grid {
           display: grid;
           grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
           gap: 35px;
       }

       /* Card */
       .product-card {
           background: #fff;
           border-radius: 24px;
           overflow: hidden;
           box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
           cursor: pointer;
           transition: all 0.35s ease;
       }

       .product-card:hover {
           transform: translateY(-6px);
           box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
       }

       /* Image */
       .product-img {
           height: 300px;
           display: flex;
           align-items: center;
           justify-content: center;
           background: #f1f5f9;
       }

       .product-img img {
           max-width: 100%;
           max-height: 100%;
           object-fit: cover;
           transition: transform 0.4s ease;
       }

       .product-card:hover .product-img img {
           transform: scale(1.08);
       }

       /* Content */
       .product-content {
           padding: 18px;
           text-align: center;
       }

       .product-content h3 {
           font-size: 1.1rem;
           font-weight: 700;
       }

       /* CTA */
       .products-cta {
           text-align: center;
           margin-top: 60px;
       }