/* ================= THEME VARIABLES ================= */
:root {
    --gold: rgb(255, 192, 0);
    --bg: #000;
    --text: #fff;
    --card: #111;
    --muted: #b0b0b0;
    --border: #222;
    --header-bg: rgba(0,0,0,0.95);
    --footer-bg: #080808;
}

[data-theme="light"] {
    --bg: #fff;
    --text: #000;
    --card: #f4f4f4;
    --muted: #444;
    --border: #ddd;
    --header-bg: rgba(255,255,255,0.95);
    --footer-bg: #f2f2f2;

    --hero-overlay: rgba(255,255,255,0.85);
    --cta-snake-color: #000;
}


[data-theme="dark"] {
    --hero-overlay: rgba(0,0,0,0.85);
    --cta-snake-color: var(--gold);
}

[data-theme="light"] .hero h1 {
    color: #222; /* dark text on light background */
}

/* ================= RESET & BASE ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--header-bg);
    border-bottom: 2px solid var(--gold);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo container settings */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    flex-shrink: 0;
    justify-content: flex-start; /* Keep logo image at the extreme left */
}

/* Logo image settings */
.logo-img {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(255, 192, 0, 0.9));
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(255, 192, 0, 1));
}

/* Logo text container */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the text horizontally */
    text-align: center;
}

.logo-main {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    line-height: 1;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    line-height: 1;
    margin-top: -2px;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
}

.theme-toggle:hover {
    background: rgba(255, 192, 0, 0.1);
    transform: scale(1.1);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    /* Mobile view changes */
    .nav-flex {
        flex-direction: row; /* Keep everything in the same row */
        justify-content: center; /* Center content horizontally */
    }

    .logo {
        justify-content: flex-start; /* Keep logo image at the extreme left */
        flex-direction: row; /* Keep logo image and text in the same row */
        align-items: center; /* Align logo text with the image */
        width: 100%; /* Make sure it uses the full width */
    }

    .logo-text {
        align-items: center; /* Center text horizontally */
        text-align: center; /* Center text horizontally */
        position: absolute;
        left: 50%; /* Position the text in the center of the screen */
        transform: translateX(-50%); /* Center the text relative to the screen */
        margin-left: 10px; /* Space between image and text */
    }

    .logo-img {
        width: 40px; /* Reduce logo image size on mobile */
    }

    .logo-main {
        font-size: 1.6rem; /* Adjust font size for mobile */
    }

    .logo-sub {
        font-size: 0.8rem; /* Adjust subtitle text size */
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 35px; /* Even smaller logo image on very small screens */
    }

    .logo-main {
        font-size: 1.4rem; /* Adjust main text size */
    }

    .logo-sub {
        font-size: 0.7rem; /* Further reduce subtitle font size */
    }
}


/* ================= CTA BUTTONS ================= */
/* Base styles for standard CTA buttons (Explore Collection) */
.cta-main {
    width: 230px;
    height: 45px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 6px;
}

.cta-main::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle, rgba(255,192,0,.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-main:hover::before {
    opacity: 1;
}

.cta-main:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    border-color: var(--gold);
}

.cta-main:active {
    transform: translateY(0);
}

.cta-main-blink {
    --border-width: 3px;
    --timing: 3s; /* Slightly faster for more energy */
    --gold: #ffc000;
    --glow-color: rgba(255, 192, 0, 0.6);
    
    width: 230px;
    height: 45px;
    background: transparent; /* Changed to transparent to show the effect */
    color: #000;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

/* The Animated "Snake" Line - Now with a Multi-stop Gradient */
.cta-main-blink::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        from 0deg,
        transparent 12%,
        var(--cta-snake-color) 20%,
        var(--cta-snake-color) 28%,
        transparent 36%
    );
    animation: smooth-rotate var(--timing) linear infinite;
    z-index: -2;
    
}



/* The Inner Body - Added a subtle mesh-like gradient */
/* ================= LIGHT THEME ================= */
[data-theme="light"] {
    --cta-blink-after-bg: linear-gradient(145deg, #000000, #000000); /* orange → gold */
}

/* ================= DARK THEME ================= */
[data-theme="dark"] {
    --cta-blink-after-bg: linear-gradient(145deg, var(--gold), var(--gold)); /* bright gold → darker gold */
}

/* Apply variable to the pseudo-element */
.cta-main-blink::after {
    content: "";
    position: absolute;
    inset: var(--border-width);
    background: var(--cta-blink-after-bg);
    border-radius: 6px;
    z-index: -1;
    transition: all 0.4s ease;
}


/* Hover Effects: The "Fancy" Reveal */
.cta-main-blink:hover {
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--glow-color);
}

.cta-main-blink:hover::after {
    background: #0a0a0a; /* Deep dark background on hover */
    backdrop-filter: blur(5px);
}

/* Subtle pulse animation for extra flair */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px var(--glow-color); }
    50% { box-shadow: 0 0 20px var(--glow-color); }
    100% { box-shadow: 0 0 5px var(--glow-color); }
}

.cta-main-blink:hover {
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes smooth-rotate {
    100% { transform: rotate(360deg); }
}

.cta-main-blink:active {
    transform: translateY(-1px) scale(0.96);
}



/* ================= HERO PROFESSIONAL ================= */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
    text-align: left;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background 0.4s ease-in-out;
}

/* Dark/Light Backgrounds */
[data-theme="dark"] .hero {
    background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), 
                url('/Images/index/hero1.webp') center/cover no-repeat;
}
[data-theme="light"] .hero {
    background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.8)), 
                url('/Images/index/hero2.webp') center/cover no-repeat;
}


/* Main Hero Title */
.hero-title {
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 5.5rem); /* responsive big title */
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 12px;                 /* tighter margin for professional spacing */
    letter-spacing: 0.02em;              /* subtle spacing for luxury feel */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15); /* soft shadow for depth */

}


/* Subtitle below main title */
.hero-title span {
    display: block;                       /* forces next line */
    font-size: clamp(1.6rem, 3vw, 2.2rem); /* responsive, elegant */
    font-weight: 600;                     /* slightly lighter than main title */
    letter-spacing: 0.08em;               /* classy subtle spacing */
    margin-top: 4px;                      /* spacing from main title */
    color: var(--gold);
    text-transform: none;                  /* keeps “International” normal case */
    opacity: 0.95;                        /* slightly muted for hierarchy */
}



/* Flex layout */
.hero-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left Column */
.hero-left {
    flex: 1;
    min-width: 300px;
}
.hero-left .hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text);
    /* -webkit-text-stroke: 0.5px var(--gold);
    text-stroke: 0.5px var(--gold); */

}

.hero-left .hero-title {
    color: var(--text);
    text-shadow:
        1px 0 0 var(--gold),
        -1px 0 0 var(--gold),
        0 1px 0 var(--gold),
        0 -1px 0 var(--gold);
}
/*   Extra Tip (Ultra Clean Rendering)   */
.hero-left .hero-title {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Hero H1 Span */
[data-theme="dark"] .hero-left .hero-title span {
    color: var(--gold); /* Black in light mode */
}

[data-theme="light"] .hero-left .hero-title span {
    color: #000; /* Black in light mode */
}


.hero-left h2 {
    font-size: clamp(1.4rem, 2vw, 1.8rem); /* responsive scaling */
    font-weight: 500;
    line-height: 1.4;                     /* improves readability */
    opacity: 0.85;
    margin-bottom: 25px;                  /* slightly more breathing space */
    color: var(--text);
    max-width: 700px;                     /* keeps text from stretching too wide */
}

/* =========================
   THEME VARIABLES
========================= */

/* Light Theme (Default) */
:root {
  --hero-desc-bg: #ffffff;
  --hero-desc-text: #444;
  --hero-desc-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  --hero-desc-border: rgb(255, 192, 0);
}

/* Dark Theme */
[data-theme="dark"] {
  --hero-desc-bg: #1a1a1a;
  --hero-desc-text: #e0e0e0;
  --hero-desc-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  --hero-desc-border: rgb(255, 192, 0);
}

.hero-flex > p:last-of-type {
  margin: 0px auto 0;
  padding: 20px 20px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;

  background: var(--hero-desc-bg);
  color: var(--hero-desc-text);
  border-radius: 10px;
  box-shadow: var(--hero-desc-shadow);

  border-top: 20px solid var(--hero-desc-border);

  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  opacity: 60%;
}

.hero-left p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Right Column */
.hero-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ================= HERO FEATURES ================= */
.hero-features {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 600px;
    color: var(--text); /* automatically adjusts based on theme */
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.9;
    padding: 14px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    min-height: 60px; /* consistent height for all tiles */
}

.hero-features i {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0;
}

/* ================= LIGHT THEME ================= */
[data-theme="light"] .hero-features li {
    background-color: rgba(0, 0, 0, 0.51); /* very light yellow */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .hero-features li:hover {
    color: var(--gold);
    background-color: rgb(0, 0, 0); /* slightly brighter on hover */
    transform: translateY(-2px);
    cursor: default;
}

/* ================= DARK THEME ================= */
[data-theme="dark"] .hero-features li {
    background-color: rgba(255, 192, 0, 0.12); /* subtle yellow for dark mode */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);   /* stronger shadow for contrast */
}

[data-theme="dark"] .hero-features li:hover {
    color: var(--gold);
    background-color: rgba(255, 192, 0, 0.25); /* brighter on hover */
    transform: translateY(-2px);
    cursor: default;
}



/* Buttons */
/* ================= HERO BUTTONS ================= */
.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Main CTA Button */
.cta-main {
    background-color: var(--gold);       /* theme-based primary color */
    color: var(--cta-text, #fff);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Main CTA Hover */
.cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Outline CTA Button */
.cta-main-blink {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: transparent;
}

/* Outline CTA Hover */
.cta-main-blink:hover {
    background-color: var(--gold);
    color: var(--cta-text, #fff);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ================= LIGHT / DARK THEME ================= */
[data-theme="light"] .cta-main {
    background-color: #000000;
    color: #fff;
}

[data-theme="light"] .cta-main-blink {
    border-color: #000000;
    color: #ff3c00;
}

[data-theme="dark"] .cta-main {
    background-color: var(--gold);
    color: #222;
}

[data-theme="dark"] .cta-main-blink {
    border-color: var(--gold);
    color: #ff3c00;
}


/* Trust Text */
.trust-text {
    font-size: 0.95rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;       /* wrap on smaller screens */
    gap: 16px;             /* spacing between items */
    margin-top: 24px;
}

.trust-text span {
    display: flex;
    align-items: center;
    gap: 6px;             /* space between icon and text */
}

.trust-text i { 
    color: var(--gold);
    font-size: 1rem;
}


/* Responsive */
@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-left, .hero-right { min-width: 100%; }
    .hero-features { align-items: center; text-align: center; }
    .hero-features li { flex-direction: column; align-items: center; gap: 10px; }
}


/* ================= SECTIONS ================= */
section { 
    padding: 120px 0; 
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.section-title span {
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
}

/* ================= PRODUCTS ================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--gold);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 192, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info { 
    padding: 30px; 
}

.product-info h3 { 
    color: var(--gold); 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    font-weight: 800;
}

.product-info p { 
    color: var(--muted); 
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgb(255, 192, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 0px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ================= PROFESSIONAL FOOTER ================= */
footer {
    background: var(--footer-bg);
    padding: 40px 20px 00px;
    border-top: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    color: var(--muted);
}


/* Grid layout for columns */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    align-items: start;
}

/* Brand Section */
.footer-brand {
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-brand span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Description below brand */
.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 25px;
}

/* Footer Links */
.footer-links a {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--text);
    transform: translateX(5px);
}

/* Contact Info */
.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 14px;
}

.footer-contact a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact i {
    color: var(--gold);
    margin-right: 10px;
    width: 18px;
    text-align: center;
}


/* Footer bottom full-width professional */
.footer-bottom {
    width: 100%;                  /* full width */
    background: var(--footer-bg); /* match footer background */
    border-top: 1px solid var(--gold); /* thin line above */
    padding: 0px 20px;            /* reduce vertical padding */
    text-align: center;            /* center text */
    font-size: 0.8rem;            /* slightly smaller, professional */
    color: var(--muted);
    box-sizing: border-box;       /* ensure padding doesn't overflow */
    line-height: 1.4;             /* tight, neat line spacing */
}


/* Optional: make it stand out slightly on hover (very subtle) */
.footer-bottom:hover {
    color: var(--gold);
    transition: color 0.3s ease;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-grid {
        gap: 30px;
        text-align: center;
    }
    .footer-links a {
        display: inline-block;
        margin: 6px 12px;
    }
    .footer-contact p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 60px 15px 20px;
    }
    .footer-brand {
        font-size: 2rem;
    }
    .footer-brand span {
        font-size: 1rem;
    }
    .footer-text {
        font-size: 0.9rem;
    }
    .footer-links a {
        font-size: 0.85rem;
        margin: 4px 8px;
    }
    .footer-contact p {
        font-size: 0.85rem;
    }
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 15px;
    }
}


.mobile-cta {
    display: none; /* Hide on desktop by default */
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    /* Header */
    .nav-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-flex .cta-main {
        display: none;
    }
    
    /* Logo */
    .logo-main { font-size: 1.6rem; }
    .logo-sub { font-size: 0.8rem; }
    .logo-img { width: 40px; }
    
    /* Hero */
/* Stroke for screens with width up to 768px */
    .hero h1 {
 /*       -webkit-text-stroke: 0.3px var(--gold);  /* Slightly thinner stroke for smaller screens */
 /*       text-stroke: 0.3px var(--gold); /* Apply stroke on smaller screens */
        margin-bottom: 15px;  /* Adjust margin for smaller screens */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        max-width: 90%;
        margin-top: 32px;
        padding: 0 12px;
    }
    
    .hero-buttons .cta-main, .cta-main-blink {
        width: 100%;
        max-width: 350px;
        height: 48px;
        font-size: 0.9rem;
    }
    
    /* Sections */
    section {
        padding: 80px 0;
    }
    
    .section-title { 
        font-size: 2rem; 
        margin-bottom: 40px;
    }
    
    /* Products */
    .product-card img { 
        height: 280px; 
    }
    
    /* Theme toggle */
    .theme-toggle {
        position: fixed;
        top: 15px;
        right: 15px;
        background: var(--gold);
        color: #000;
        border-radius: 6px;
        width: 44px;
        height: 44px;
        z-index: 2000;
    }
}

@media (max-width: 480px) {
    /* Theme toggle */
    .theme-toggle {
        position: fixed;
        top: 5px;
        right: 15px;
        background: var(--gold);
        color: #000;
        border-radius: 6px;
        width: 30px;
        height: 30px;
        z-index: 2000;
    }





    
    /* Mobile CTA */
    
    .mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--bg);
        border-top: 2px solid var(--gold);
        z-index: 2000;
        padding: 12px 0;
    }
    
    .mobile-cta a {
        flex: 1;
        padding: 15px;
        text-align: center;
        font-weight: 800;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        border-radius: 0;
    }
    
    .mobile-cta a.quote {
        background: var(--gold);
        color: #000;
    }
    
    .mobile-cta a.whatsapp {
        background: #25d366;
        color: #000000;
    }
    
    /* WhatsApp */
    .whatsapp-btn {
        display: none;
        /* bottom: 80px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px; */
    }
}

@media (max-width: 480px) {
    .hero h1 {
/*        -webkit-text-stroke: 0.5px var(--gold);  /* Keep stroke on mobile for WebKit-based browsers */
/*        text-stroke: 0.5px var(--gold); /* Keep stroke on mobile for other browsers */
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-top: 24px;
    }
    
    .hero-buttons .cta-main, .cta-main-blink {
        height: 44px;
        font-size: 0.85rem;
        max-width: 300px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .product-card img {
        height: 240px;
    }
    
    .product-grid {
        gap: 24px;
    }
}

/* Make product cards fully clickable with NO link styling */
.product-link {
  text-decoration: none;
  cursor: pointer;
}

/* Text color change on hover */
.product-link:hover .product-info h3 {
  color: rgb(255, 225, 0); /* gold */
  text-decoration: underline;
}

.product-link:hover .product-info p {
  color: var(--text);
}




/*   Footer Social Icon    */
  .footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #ffc000; /* your theme yellow */
  transition: 0.3s ease;
}

/* Default (Dark Theme) */
[data-theme="dark"] .footer-social a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* Light Theme */
[data-theme="light"] .footer-social a:hover {
  color: #000000;
  transform: translateY(-3px);
}









/* Light Theme Styling for Why Choose Us Section */
[data-theme="light"] .why-us {
  background-color: #f9f9f9; /* Light background */
  color: #333; /* Dark text for light theme */
}

.why-us h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffc000; /* Highlighted color for the heading */
}

/* Light Theme Heading */
[data-theme="light"] .why-us h2 {
  color: #333; /* Dark color for heading in light theme */
}

/* Paragraph Styling */
.why-us p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #bbb; /* Light text color for paragraph */
}

/* Light Theme Paragraph */
[data-theme="light"] .why-us p {
  color: #666; /* Darker text for paragraph in light theme */
}

/* Grid Layout for Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  gap: 30px;
  margin-top: 40px;
}

/* Card Styling */
.why-card {
  background-color: #1c1c1c; /* Slightly lighter background for cards in dark theme */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

/* Light Theme Card Styling */
[data-theme="light"] .why-card {
  background-color: #fff; /* White background for cards in light theme */
  color: #333; /* Dark text for light theme */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover Effect for Cards */
.why-card:hover {
  transform: translateY(-5px); /* Hover effect for cards */
}

/* Light Theme Hover Effect */
[data-theme="light"] .why-card:hover {
  transform: translateY(-5px); /* Same hover effect for light theme */
}

/* Card Heading Styling */
.why-card h3 {
  font-size: 1.2rem;
  color: #ffc000;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Light Theme Card Heading */
[data-theme="light"] .why-card h3 {
  color: #333; /* Dark color for heading in light theme */
}

/* Card Paragraph Styling */
.why-card p {
  font-size: 1rem;
  color: #ddd; /* Lighter text inside card in dark theme */
  line-height: 1.6;
}

/* Light Theme Card Paragraph */
[data-theme="light"] .why-card p {
  color: #555; /* Darker text inside card in light theme */
}

/* Add responsive styling */
@media (max-width: 768px) {
  .why-us {
    padding: 60px 15px;
  }

  .why-us h2 {
    font-size: 1.6rem;
  }

  .why-us p {
    font-size: 0.95rem;
  }

  .why-card {
    padding: 20px;
  }

  .why-card h3 {
    font-size: 1rem;
  }
}















/* Why section styles(INDEX*/
:root {
    --why-us-gold: #ffc000;
    --why-us-bg: #000;
    --why-us-text: #fff;
    --why-us-muted: #b0b0b0;
    --why-us-card-bg: #111;
    --why-us-row-alt: #1a1a1a;
    --why-us-header-gradient: linear-gradient(90deg, #ffd700, #ffb200);
    --why-us-dhalay-gradient: linear-gradient(120deg, #28a745, #38d273);
    --why-us-competitor-bg: #222;
    --why-us-tick-color: #00ff6a;
    --why-us-cross-color: #ff4c4c;
}

[data-theme="light"] {
    --why-us-bg: #fff;
    --why-us-text: #000;
    --why-us-muted: #444;
    --why-us-card-bg: #f4f4f4;
    --why-us-row-alt: #f0f0f0;
    --why-us-header-gradient: linear-gradient(90deg, #ffd700, #ffb200);
    --why-us-dhalay-gradient: linear-gradient(120deg, #e6f7ed, #c8f0d9);
    --why-us-competitor-bg: #e6e6e6;
    --why-us-tick-color: #28a745;
    --why-us-cross-color: #e74c3c;
}

/* Section */
.why-us {
    background-color: var(--why-us-bg);
    color: var(--why-us-text);
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}
/* General Styling for the Why Choose Us Section */
.why-us {
  padding: 80px 20px;
  text-align: center;
  color: #fff; /* Default text color for dark theme */
  background-color: black; /* Dark background for contrast */
}
.why-us h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 12px;
}

.why-us p {
    text-align: center;
    color: var(--why-us-muted);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Comparison Cards */
.comparison-cards {
    display: grid;
    gap: 1px;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 25% 37.5% 37.5%;
    font-size: 0.85rem;
    line-height: 1.3;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover effect */
.comparison-row:not(.header):hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}

.comparison-row.header .col {
    background: var(--why-us-header-gradient);
    color: #111;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

/* Row cells */
.comparison-row .col {
    padding: 8px 10px;
    background-color: var(--why-us-card-bg);
    position: relative;
    text-align: left;
    color: inherit;
}

/* Dhalay column uniform font */
.comparison-row .dhalay {
    background: var(--why-us-dhalay-gradient);
    font-weight: 600; /* uniform weight */
    box-shadow: inset 0 0 4px rgba(0,0,0,0.1);
    color: #111;
}

[data-theme="dark"] .comparison-row .dhalay {
    color: #fff;
}

.comparison-row:nth-child(even):not(.header) .col {
    background-color: var(--why-us-row-alt);
}

/* Tick & Cross icons */
.comparison-row .dhalay[data-icon="tick"]::before {
    content: "\2714";
    color: var(--why-us-tick-color);
    font-weight: bold;
    margin-right: 6px;
}

.comparison-row .competitor[data-icon="cross"]::before {
    content: "\2716";
    color: var(--why-us-cross-color);
    font-weight: bold;
    margin-right: 6px;
}

/* Feature icons */
.comparison-row .feature i {
    margin-right: 6px;
    color: var(--why-us-gold);
}

/* CTA */
.why-us .cta {
    text-align: center;
    margin-top: 35px;
}

.btn-primary {
    background-color: var(--why-us-gold);
    color: var(--why-us-bg);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e0b100;
    transform: translateY(-1px);
}

/* Keep same layout on mobile */
@media(max-width:768px){
    .comparison-row {
        grid-template-columns: 25% 37.5% 37.5%;
        font-size: 0.8rem;
    }
    .comparison-row .col {
        padding: 6px 8px;
    }
}












/* ===============================
   PROFESSIONAL SEO / CAPABILITIES - PREMIUM VERSION
================================= */

.seo-content {
  padding: 100px 20px;
  background: linear-gradient(180deg, #111 0%, #161616 100%);
  font-family: 'Inter', sans-serif;
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
}

/* Optional subtle diagonal pattern overlay */
.seo-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.01),
    rgba(255,255,255,0.01) 1px,
    transparent 1px,
    transparent 10px
  );
  pointer-events: none;
}

.seo-content .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.seo-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffc000;
  margin-bottom: 30px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.seo-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.seo-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
}

/* ===============================
   Capabilities Grid / Cards
================================= */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.capability {
  background-color: #1a1a1a;
  padding: 25px 30px;
  border-left: 4px solid #ffc000;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  font-size: 16px;
  font-weight: 500;
  color: #d0d0d0;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  line-height: 1.6;
}

.capability:hover {
  background-color: #222222;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}

/* ===============================
   List inside SEO section
================================= */
.seo-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
}

.seo-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc000;
  font-weight: bold;
}

.seo-content ul li:hover {
  color: #ffffff;
  transition: 0.3s ease;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 768px) {
  .seo-content {
    padding: 60px 15px;
  }

  .seo-content h2 {
    font-size: 28px;
  }

  .seo-content h3 {
    font-size: 20px;
  }

  .seo-content p,
  .seo-content ul li,
  .capability {
    font-size: 15px;
  }
}













/* ===== HERO HEADINGS OPTIMIZED ===== */

/* Main SEO H1 */
.hero-keyword {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}



/* Make "International" elegant */
.hero-title span {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-top: 5px;
    opacity: 0.9;
}

/* Supporting line */
.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: 25px;
    max-width: 650px;
}