/* ===== Global Styles ===== */
:root {
    --primary-blue: #37c1f2;
    --dark-blue: #894be1;
    --cyan: #00BCD4;
    --accent-red: #FF5722;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--white);
}

/* ===== TOP ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(135deg, #37c1f2 0%, #894be1 100%);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    color: white;
    font-size: 14px;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.announcement-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.announcement-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
    border-radius: 50px;
    z-index: 6;
    position: relative;
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    display: flex;
    gap: 40px;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.contact-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    color: #894be1;
    font-size: 20px;
    margin-top: 3px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-value {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-value a{
    text-decoration: none;
    color: #000;
}

.contact-value a:hover{
    color:var(--cyan);
}


/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #37c1f2 0%, #894be1 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

/* ===== STICKY NAVIGATION BAR ===== */
/* Navbar logo hidden by default */
.navbar-logo {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Show logo after scroll */
.navbar.scrolled .navbar-logo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--light-bg);
    position: sticky;
    top: 0;
    z-index: 5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Navbar Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: fit-content;
}

.navbar-logo-img {
    height: 65px;
    width: auto;
}

.navbar-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.dropbtn {
    background-color: transparent;
    color: #000;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    padding-bottom: 10px;
}

.dropdown-content a:hover{
        border-left:3px solid #176eca;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 0.1px solid rgb(200, 200, 200);
}


.dropdown:hover .dropdown-content {display: block;}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 16px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    border-top: 3px solid var(--primary-blue);
    padding: 0;
    margin: 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: var(--text-light);
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: #f0f7ff;
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    padding-left: 24px;
}

/* Right Section */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--light-bg);
    border: none;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.icon-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-red);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 30px;
        gap: 30px;
    }

    .navbar-content {
        padding: 0 30px;
    }

    .contact-info {
        gap: 30px;
    }

    .announcement-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    /* Hide desktop header */
    .main-header {
        display: none;
    }

    /* Announcement adjustments */
    .announcement-content {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
        text-align: center;
        font-size: 12px;
    }

    .social-icons {
        gap: 12px;
        font-size: 14px;
    }

    /* Navbar */
    .navbar-content {
        padding: 10px 15px;
        gap: 10px;
    }

    .navbar-logo-img {
        height: 35px;
    }

    .navbar-logo-text {
        font-size: 16px;
    }

    /* Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding-top: 60px;
        transition: left 0.3s ease;
        z-index: 999;
        border-right: 1px solid var(--light-bg);
        overflow-y: auto;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--light-bg);
    }

    .nav-link {
        padding: 14px 20px;
        width: 100%;
        font-size: 12px;
        border: none;
    }

    .nav-link:hover {
        background: #f0f7ff;
        border-left: 3px solid var(--primary-blue);
        padding-left: 24px;
        border-bottom: none;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        background: var(--light-bg);
        border: none;
        border-top: 1px solid #e0e0e0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 8px 0;
    }

    .dropdown-item {
        padding: 12px 20px 12px 40px;
        font-size: 12px;
        border: none;
    }

    .dropdown-item:hover {
        background: #e8e8e8;
        border: none;
        padding-left: 44px;
    }

    /* Right section */
    .navbar-right {
        gap: 10px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .hamburger-btn {
        display: block;
        margin-left: auto;
    }

    .cta-btn {
        display: none;
    }

    .contact-info {
        display: none;
    }
}

@media (max-width: 576px) {
    .announcement-text {
        font-size: 11px;
    }

    .social-icons {
        gap: 10px;
        font-size: 12px;
    }

    .nav-menu {
        width: 100%;
    }

    .navbar-logo-img {
        height: 32px;
    }

    .navbar-logo-text {
        font-size: 14px;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 11px;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* ===== MOBILE HEADER EXCLUSIVE ===== */

/* Hide everything on desktop */
@media (min-width: 769px) {
.mhx-header,
.mhx-slide-menu,
.mhx-overlay {
    display: none !important;
}
}

/* Header */
.mhx-header {
width: 100%;
background: #ffffff;
z-index: 9999;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.mhx-header-inner {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 16px;
}

.mhx-logo img {
height: 60px;
}

.mhx-menu-btn {
font-size: 26px;
cursor: pointer;
}

/* Overlay */
.mhx-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.45);
opacity: 0;
visibility: hidden;
transition: 0.3s ease;
z-index: 9998;
}

.mhx-overlay.mhx-active {
opacity: 1;
visibility: visible;
}

/* Slide Menu */
.mhx-slide-menu {
position: fixed;
top: 0;
right: -100%;
width: 85%;
height: 100%;
background: #ffffff;
z-index: 10000;
transition: 0.35s ease;
padding: 20px;
}

.mhx-slide-menu.mhx-active {
right: 0;
}

/* Menu Top */
.mhx-menu-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}

.mhx-menu-top img {
height: 40px;
}

.mhx-close-btn {
font-size: 24px;
cursor: pointer;
}

/* Menu List */
.mhx-menu-list {
list-style: none;
padding: 0;
margin: 0;
}

.mhx-menu-list li {
margin-bottom: 18px;
}

.mhx-menu-list a,
.mhx-dropdown-toggle {
font-size: 16px;
color: #1a1a1a;
text-decoration: none;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}

/* Dropdown */
.mhx-dropdown-menu {
list-style: none;
padding-left: 15px;
margin-top: 10px;
display: none;
}

.mhx-dropdown-menu li{
    border-left: 2px solid #1b7dd9;
    padding-left: 5px;
}

.mhx-dropdown.mhx-open .mhx-dropdown-menu {
display: block;
}

.mhx-arrow {
transition: 0.3s ease;
}

.mhx-dropdown.mhx-open .mhx-arrow {
transform: rotate(180deg);
}


/* ===== Section Headers ===== */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}


/* ===== About Section ===== */
.about-section{

}

/* IMAGE DESIGN */
.about-images {
  position: relative;
  min-height: 420px;
}

.about-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-img img {
  width: 100%;
  display: block;
}

.img-one {
  top: 0;
  left: 0;
  width: 90%;
  z-index: 3;
}

.img-two {
  bottom: 40px;
  right: 0;
  width: 65%;
  z-index: 3;
  border: 5px solid #fff;
}
.section-title h1{
    font-size:40px;
    font-weight: 700;
}

.section-subtitle span{
    font-size:25px;
}

.floating-image {
    float: left;
    width: 45%;
    margin: 0 30px 0px 0;
}

.floating-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-text p{
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.highlight {
    color: #000;
    font-weight: 600;
}

.content-text::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .floating-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/* ===== Featured Products ===== */
.featured-products {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.2);
}

.product-image-wrapper {
    overflow: hidden;
    /* height: 250px; */
}

.product-image {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
    transition: all 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.product-title a{
    text-decoration: none;
}

/* ===== Why Choose Us ===== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 50PX 0;
}

.about-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    gap: 0;
}

.image-left {
    flex: 1;
    border-radius:25px 0 0 120px;
    object-fit: cover;
    display: block;
    padding:0 5px ;
}

.image-right {
    flex: 1;
    border-radius: 0 120px 25px 0;
    object-fit: cover;
    display: block;
    padding:0 5px ;
}

.decorative-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
}

.dot-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.dot-2 { bottom: 30%; left: -30px; width: 6px; height: 6px; }
.dot-3 { bottom: 20%; left: -15px; width: 5px; height: 5px; }
.dot-4 { bottom: 10%; left: -22px; width: 4px; height: 4px; }
.dot-5 { top: 15%; right: -35px; width: 6px; height: 6px; }
.dot-6 { top: 30%; right: -20px; width: 5px; height: 5px; }

.badge {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 140px;
    height: 140px;
    background: white;
    border: 8px solid #1E88E5;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-weight: bold;
    z-index: 10;
}

.badge-leaf {
    font-size: 28px;
    color: #1E88E5;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    color: #1E88E5;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-right {
    padding: 20px;
}

.section-label {
    color: #894be1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: "🖱️";
    font-size: 18px;
}

.main-heading {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.experience-badge {
    background: #1a1a1a;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-weight: 600;
}

.experience-badge::after {
    content: "→";
    font-size: 20px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.features-list li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    background: #894be1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.buttons-container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #1E88E5;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1E88E5;
    border: 2px solid #1E88E5;
}

.btn-secondary:hover {
    background: #1E88E5;
    color: white;
    transform: translateY(-2px);
}

.play-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.right-image {
    position: absolute;
    right: -100px;
    bottom: 0;
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-right {
    position: relative;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0;
    }

    .main-heading {
        font-size: 28px;
    }

    .right-image {
        position: static;
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-top: 20px;
    }

    .buttons-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}



/* ===== Showcase Section 2 ===== */
.showcase-section-2 {
    padding: 80px 0;
    background-color: var(--white);
}

.showcase-2-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.showcase-2-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.showcase-2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 136, 229, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.showcase-2-card:hover .showcase-2-overlay {
    opacity: 1;
}

.showcase-2-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.showcase-2-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(30, 136, 229, 0.05) 100%);
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.2);
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== CTA Form Section ===== */
/* ===== CTA SECTION ===== */
.cta-form-section{
    position:relative;
    padding:50px 20px;
    overflow:hidden;
    background:url("../images/cta-bg.jpg") center/cover no-repeat;
}

/* overlay */
.cta-form-section::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(14,29,51,0.85), rgba(14,29,51,0.75));
    z-index:0;
}

/* floating blobs */
.cta-form-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(circle, rgba(0,201,255,0.5), transparent 70%);
    top:-120px;
    left:-120px;
    filter:blur(60px);
    animation:float 12s infinite alternate;
    z-index:1;
}

@keyframes float{
    to{ transform:translateY(60px);}
}

.cta-container{
    position:relative;
    z-index:2;
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

/* ===== LEFT INFO ===== */
.cta-info{
    color:#fff;
    padding:20px;
}

.cta-info h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-info p{
    font-size:16px;
    opacity:.9;
    margin-bottom:30px;
}

.contact-box{
    display:flex;
    gap:15px;
    /* margin-bottom:20px; */
    align-items:flex-start;
}

.contact-icon{
    width:45px;
    height:45px;
    /* background:linear-gradient(135deg,var(--primary-blue),var(--cyan)); */
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.contact-box span{
    font-size:15px;
    opacity:.9;
    margin-top: 10px;
}

/* ===== FORM CARD ===== */
.form-container{
    background:rgba(255,255,255,0.9);
    border-radius:22px;
    padding:50px;
    backdrop-filter:blur(15px);
    box-shadow:0 30px 90px rgba(0,0,0,.35);
    position:relative;
    overflow:hidden;
}

/* gradient border */
.form-container::before{
    content:"";
    position:absolute;
    inset:0;
    padding:2px;
    background:linear-gradient(135deg,var(--primary-blue),var(--cyan));
    border-radius:22px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
}

/* form */
.cta-form{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.form-input{
    width:100%;
    padding:14px 16px;
    border-radius:8px;
    border:2px solid #ddd;
    font-size:14px;
    transition:.3s;
}

.form-input:focus{
    outline:none;
    border-color:var(--primary-blue);
    box-shadow:0 0 0 5px rgba(30,136,229,.15);
}

textarea.form-input{
    resize:none;
    min-height:120px;
}

/* button */
.btn-submit{
    margin-top:10px;
    padding:15px;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    color:#fff;
    background:linear-gradient(135deg,var(--primary-blue),var(--dark-blue));
    position:relative;
    overflow:hidden;
    transition:.3s;
    text-decoration: none;
}

.btn-submit::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:200%;
    height:100%;
    background:linear-gradient(120deg,transparent 40%,rgba(255,255,255,.5),transparent 60%);
    transition:.6s;
}

.btn-submit:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(30,136,229,.4);
}

.btn-submit:hover::after{
    left:100%;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .cta-container{
        grid-template-columns:1fr;
    }
    .cta-info{
        /* text-align:center; */
    }
    .contact-box{
        /* justify-content:center; */
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgb(30 136 229 / 36%), rgba(0, 188, 212, 0.05));
}

.faq-header:hover {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(0, 188, 212, 0.1));
}

.faq-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-header i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-header.active i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(245, 245, 245, 0.5);
}

.faq-content.active {
    max-height: 500px;
}

.faq-content p {
    padding: 0 25px 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}


.info-panel{
    /* padding-left:40px; */
}

.info-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#894be1;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
    font-size: 22px;
}

.info-tag-icon{
    font-size:18px;
}

.info-title{
    display:block;
    font-size:25px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:20px;
}

.info-text{
    display:block;
    color:#666;
    font-size:16px;
    line-height:1.7;
    margin-bottom:30px;
}

.info-box{
    display:flex;
    gap:10px;
    border:1px solid #e5e5e5;
    padding:15px;
    border-radius:12px;
    align-items:center;
}

.info-list-title{
    display:block;
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.info-list{
    list-style:none;
    padding:0;
    margin:0;
}

.info-list li{
    position:relative;
    padding-left:30px;
    margin-bottom:12px;
    font-size:16px;
}

.info-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:2px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#e43713;
    color:#fff;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.info-image-area img{
    width:220px;
    border-radius:10px;
    object-fit:cover;
}


/* show-banner */
.show-banner{
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background: url(../images/bottom-bg.jpg) center / cover no-repeat;
    
}

.show-content{
    text-align: center;
}

.show-content .details{
    padding: 20px 0;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
}

.ns-btn {
    text-decoration: none;
    background-color: #0050c7;
    padding: 20px 75px;
    border-radius: 75px;
    color: #fff;

}

.ns-btn:hover {
    text-decoration: none;
    background-color: #ffffff;
    padding: 20px 75px;
    border-radius: 75px;
    color: #000;

}


/* ===== Footer ===== */
.footer-section {
    background:linear-gradient(135deg, #00aaffde 0%, #894be1c7 100%), url(../images/footer-bg.jpg);
    background-size: cover;
    background-position: bottom;
    /* background-attachment: fixed; */
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer-column {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color:#fff;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: circle;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

.footer-links p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.footer-links i {
    margin-right: 10px;
    color:#fff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color:#fff;
}

.social-links a:hover {
    background-color: var(--cyan);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        padding: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image {
        order: -1;
    }

    .carousel-item {
        height: 400px;
    }

    .section-title {
        font-size: 32px;
    }

    .carousel-card {
        min-width: calc(50% - 12px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px;
    }

    .about-stats {
        flex-direction: column;
    }

    .hero-content {
        gap: 20px;
    }

    .top-bar-text {
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .carousel-card {
        min-width: calc(100% - 0px);
    }

    .hero-title {
        font-size: 28px;
    }

    .carousel-item {
        height: 300px;
    }

    .section-title {
        font-size: 24px;
    }

    .showcase-2-card {
        height: 250px;
    }
}



.hero-slider {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            background: #000;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 20px;
        }

        .slide-content {
            animation: slideUp 0.8s ease-out;
            z-index: 2;
        }

        .slide.active .slide-content {
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .slide-btn {
            display: inline-block;
            padding: 12px 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .slide-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        /* Navigation Arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            border-radius: 50%;
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-arrow.prev {
            left: 30px;
        }

        .nav-arrow.next {
            right: 30px;
        }

        /* Navigation Dots */
        .nav-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #00a1ff80;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-slider {
                height: 400px;
            }

            .slide-title {
                font-size: 2.2rem;
            }

            .slide-subtitle {
                font-size: 1rem;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .nav-arrow.prev {
                left: 15px;
            }

            .nav-arrow.next {
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-slider {
                height: 300px;
            }

            .slide-title {
                font-size: 1.5rem;
            }

            .slide-subtitle {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .slide-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }

            .nav-arrow {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .nav-dots {
                bottom: 15px;
                gap: 8px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }

            .dot.active {
                width: 24px;
            }
        }


/* first-features-Section  */

.ns-premium-features-wrapper {
    margin-top: -50px;
    background-color: #ffffff;
}

.ns-features-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ns-features-section-heading {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.ns-services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.ns-individual-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.ns-individual-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #2b6cf2, #2dbcfd);
    width: 0;
    transition: width 0.3s ease;
}

.ns-individual-service-card:hover::before {
    width: 100%;
}

.ns-individual-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.ns-card-top-section {
    position: relative;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    border-bottom: 2px solid #e0e0e0;
    overflow: hidden;
}

.ns-decorative-grass-border {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        #2b6cf2 0px,
        #2b6cf2 2px,
        transparent 2px,
        transparent 6px,
        #2dbcfd 6px,
        #2dbcfd 8px,
        transparent 8px,
        transparent 12px
    );
    -webkit-clip-path: polygon(0 50%, 1% 40%, 2% 50%, 3% 35%, 4% 45%, 5% 30%, 6% 50%, 7% 35%, 8% 48%, 9% 32%, 10% 50%, 11% 38%, 12% 45%, 13% 30%, 14% 50%, 15% 35%, 16% 48%, 17% 32%, 18% 50%, 19% 38%, 20% 45%, 21% 30%, 22% 50%, 23% 35%, 24% 48%, 25% 32%, 26% 50%, 27% 38%, 28% 45%, 29% 30%, 30% 50%, 31% 35%, 32% 48%, 33% 32%, 34% 50%, 35% 38%, 36% 45%, 37% 30%, 38% 50%, 39% 35%, 40% 48%, 41% 32%, 42% 50%, 43% 38%, 44% 45%, 45% 30%, 46% 50%, 47% 35%, 48% 48%, 49% 32%, 50% 50%, 51% 38%, 52% 45%, 53% 30%, 54% 50%, 55% 35%, 56% 48%, 57% 32%, 58% 50%, 59% 38%, 60% 45%, 61% 30%, 62% 50%, 63% 35%, 64% 48%, 65% 32%, 66% 50%, 67% 38%, 68% 45%, 69% 30%, 70% 50%, 71% 35%, 72% 48%, 73% 32%, 74% 50%, 75% 38%, 76% 45%, 77% 30%, 78% 50%, 79% 35%, 80% 48%, 81% 32%, 82% 50%, 83% 38%, 84% 45%, 85% 30%, 86% 50%, 87% 35%, 88% 48%, 89% 32%, 90% 50%, 91% 38%, 92% 45%, 93% 30%, 94% 50%, 95% 35%, 96% 48%, 97% 32%, 98% 50%, 99% 38%, 100% 50%);
    clip-path: polygon(0 50%, 1% 40%, 2% 50%, 3% 35%, 4% 45%, 5% 30%, 6% 50%, 7% 35%, 8% 48%, 9% 32%, 10% 50%, 11% 38%, 12% 45%, 13% 30%, 14% 50%, 15% 35%, 16% 48%, 17% 32%, 18% 50%, 19% 38%, 20% 45%, 21% 30%, 22% 50%, 23% 35%, 24% 48%, 25% 32%, 26% 50%, 27% 38%, 28% 45%, 29% 30%, 30% 50%, 31% 35%, 32% 48%, 33% 32%, 34% 50%, 35% 38%, 36% 45%, 37% 30%, 38% 50%, 39% 35%, 40% 48%, 41% 32%, 42% 50%, 43% 38%, 44% 45%, 45% 30%, 46% 50%, 47% 35%, 48% 48%, 49% 32%, 50% 50%, 51% 38%, 52% 45%, 53% 30%, 54% 50%, 55% 35%, 56% 48%, 57% 32%, 58% 50%, 59% 38%, 60% 45%, 61% 30%, 62% 50%, 63% 35%, 64% 48%, 65% 32%, 66% 50%, 67% 38%, 68% 45%, 69% 30%, 70% 50%, 71% 35%, 72% 48%, 73% 32%, 74% 50%, 75% 38%, 76% 45%, 77% 30%, 78% 50%, 79% 35%, 80% 48%, 81% 32%, 82% 50%, 83% 38%, 84% 45%, 85% 30%, 86% 50%, 87% 35%, 88% 48%, 89% 32%, 90% 50%, 91% 38%, 92% 45%, 93% 30%, 94% 50%, 95% 35%, 96% 48%, 97% 32%, 98% 50%, 99% 38%, 100% 50%);
}

.ns-service-icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #37c1f2 0%, #894be1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.ns-service-icon-badge:hover{
    background: linear-gradient(135deg, #894be1 0%, #37c1f2 100%);
}

.ns-individual-service-card:hover .ns-service-icon-badge {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.ns-card-content-area {
    padding: 30px 20px;
    text-align: center;
}

.ns-card-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.ns-individual-service-card:hover .ns-card-service-title {
    color: #2b6cf2;
}

.ns-card-service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.ns-individual-service-card:hover .ns-card-service-description {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ns-premium-features-wrapper {
        padding: 60px 0;
    }

    .ns-features-section-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .ns-services-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .ns-card-top-section {
        padding: 25px 15px;
    }

    .ns-service-icon-badge {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .ns-card-content-area {
        padding: 25px 15px;
    }

    .ns-card-service-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .ns-features-section-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .ns-services-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ns-service-icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .ns-card-service-title {
        font-size: 1.1rem;
    }

    .ns-card-service-description {
        font-size: 0.85rem;
    }
}


.breadcrumb-banner {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.breadcrumb-content {
    max-width: 800px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}


/* sitemap-Section */
.smap3-section {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.smap3-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.smap3-title {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.smap3-subtitle {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* First row (3 columns) */
.smap3-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Other rows (4 columns) */
.smap3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Link card */
.smap3-link {
    background-color: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 22px 15px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

/* Accent bar */
.smap3-link::after {
    content: "";
    width: 0;
    height: 3px;
    background-color: var(--cyan);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.smap3-link:hover {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );
    color: var(--white);
    transform: translateY(-5px);
}

.smap3-link:hover::after {
    width: 60%;
    background-color: var(--accent-red);
}

/* Responsive */
@media (max-width: 992px) {
    .smap3-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .smap3-row-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .smap3-grid,
    .smap3-row-top {
        grid-template-columns: 1fr;
    }

    .smap3-title {
        font-size: 28px;
    }
}










/* Desktop view only */
@media (min-width: 992px) {
    .sec-two{
        display: none;
    }
}


/* Mobile view only */
@media (max-width: 767px) {
    .sec-one{
        display: none;
    }
    .image-wrapper {
        position: relative;
        width: 100%;
        max-width: 300px;
        height: 300px;
        display: flex;
        gap: 0;
    }
    .info-box{
        display:block;
    }

    .img-two {
        bottom: 50px;
    }
    .about-images{
        min-height: 300px;
    }
    .navbar{
        display: none;
    }

}


