@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:wght@100..900&display=swap');

/* ── VARIABLES ── */
:root {
    /* Colors: */
    --color-primary: #1C77C8;
    --color-secondary: #1dabff;
    --color-light-blue: #DEF1FF;
    --color-dark-blue: #066299;
    --color-131313: #131313;
    --color-181818: #181818;
    --color-f5f5f5: #f5f5f5;
    --color-484848: #484848;
    --color-c2c4c6: #c2c4c6;
    --color-000000: #000000;
    --color-ffffff: #ffffff;
    --font-style-normal: normal;
    --font-size-16: 16px;
    --font-size-17: 17px;
    --font-size-19: 19px;
    --font-size-22: 22px;
    --font-size-25: 25px;
    --font-size-26: 26px;
    --font-size-27: 27px;
    --font-size-33: 33px;
    --font-size-35: 35px;
    --font-size-38: 38px;
    --font-size-41: 41px;
    --font-size-45: 45px;
    --font-size-48: 48px;
    --font-size-50: 50px;
    --font-size-56: 54px;
    --font-size-60: 60px;
    --font-family-Poppins: "Poppins", sans-serif;
    --character-spacing-0: 0px;
    --line-height-22: normal;
    --line-height-25: 25px;
    --line-height-27: 27px;
    --line-height-30: 30px;
    --line-height-32: 32px;
    --line-height-35: 35px;
    --line-height-36: 36px;
    --line-height-43: 43px;
    --line-height-51: 51px;
    --line-height-60: normal;
    --line-height-66: 66px;
    --line-height-78: 78px;
    --line-height-inherit: inherit;
    --font-weight-Thin: 100;
    --font-weight-ExtraLight: 200;
    --font-weight-Light: 300;
    --font-weight-Regular: 400;
    --font-weight-Medium: 500;
    --font-weight-SemiBold: 600;
    --font-weight-Bold: 700;
    --font-weight-ExtraBold: 800;
    --font-weight-Black: 900;
    --font-weight-normal: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}

a,
.btn,
button {
    outline: none;
    border: none;
    cursor: pointer;
    outline: 0;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
.custom-select:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn:hover,
a:hover,
button:hover {
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

h4,
h2,
h3,
h4,
h5,
h6 {
    text-transform: normal;
    margin-bottom: 15px;
    font-weight: 700;
}

body {
    overflow-x: hidden;
    background: #f8f8f8;
    color: #000000;
}

a {
    text-decoration: none;
}

.main-title {
    font-size: 35px;
    font-weight: 700;
}

.div-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0;
}

.div-subtitle {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 0;
}

p {
    font-size: 16px;
    /* color: #333333; */
}

ul,
ol {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

.container {
    max-width: 1380px;
}

/* NAVBAR */
header {
    position: relative;
    width: 100%;
    z-index: 99999;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e8edf3;
}

/* Sticky active */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}


/* Navbar shrink */
header.sticky .navbar .container {
    height: 65px;
    /* pehle 80px tha */
}

/* Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar {
    background: #fff !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 0 !important;
    display: block !important;
}

.navbar .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px !important;
    height: 80px;
    position: relative;
    flex-wrap: nowrap !important;
}

.navbar-brand {
    display: flex !important;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    height: 100%;
    padding: 0 !important;
    margin-right: 0 !important;
}

.brand-logo-icon img {
    width: 200px;
    height: auto;
    display: block;
}

.brand-divider {
    width: 1px;
    height: 55px;
    background: #cfd8dc;
    margin: 0 15px;
    flex-shrink: 0;
}

.brand-logo-2 img {
    width: 185px;
    height: auto;
    display: block;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none;
    gap: 2px;
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

.nav-divider {
    width: 1px;
    height: 55px;
    background: #cfd8dc;
    flex-shrink: 0;
    margin: 0 2px;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    padding: 6px 12px !important;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    display: flex !important;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: #1C77C8 !important;
}

.nav-link.dropdown-toggle::after,
.nav-link.dropdown-toggle::before {
    display: none !important;
}

.nav-link.dropdown-toggle {
    gap: 6px;
}

.nav-link.dropdown-toggle .nav-arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.navbar-nav .dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #fff !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    min-width: 200px !important;
    padding: 8px !important;
    list-style: none;
    z-index: 9999 !important;
}

.navbar-nav .nav-item:hover>.dropdown-menu {
    display: block !important;
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    padding: 10px 16px !important;
    text-decoration: none;
    border-radius: 10px !important;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    background: transparent !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #f0f7ff !important;
    color: #1C77C8 !important;
}

.dropdown-item.dropdown-toggle::after {
    content: '›' !important;
    border: none !important;
    font-size: 18px;
    margin-left: 8px;
    color: #999;
    vertical-align: middle;
    width: auto;
    height: auto;
}

.dropdown-menu .dropdown {
    position: relative;
}

.dropdown-menu .dropdown>.dropdown-menu {
    top: 0 !important;
    left: 95% !important;
    margin-left: 6px;
    display: none !important;
}

.dropdown-menu .dropdown:hover>.dropdown-menu {
    display: block !important;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.navbar-icons-1 a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border: 1.5px solid #1a1a1a;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}
span.count {
        position: absolute;
        color: #FFF;
        background-color: #1dabff;
        font-size: 12px;
        width: 18px;
        height: 18px;
        bottom: 50%;
        left: 55%;
        border-radius: 50%;
        text-align: center;
}

.navbar-icons-1 a:hover {
    background: #f5f5f5;
}

.navbar-icons-2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border: 1.5px solid #1a1a1a;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}

.navbar-icons-2 a:hover {
    background: #f5f5f5;
}

.navbar-icons-1 img,
.navbar-icons-2 img {
    width: 28px;
    height: 28px;
    display: block;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.hamburger-btn span {
    display: block;
    width: 38px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1099;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    overflow: hidden;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.15);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-header .back-btn {
    font-size: 20px;
    color: #1C77C8;
    text-decoration: none;
}

.mobile-menu-header .back-btn i {
    pointer-events: none;
}

.mobile-menu-close-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu-close-btn:hover {
    background: #f0f0f0;
    color: #1C77C8;
}

.mobile-nav {
    position: relative;
    height: 100%;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav>li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-home>a {
    background: #1C77C8 !important;
    color: #fff !important;
}

.mobile-nav-home>a:hover {
    background: #1558a0 !important;
    color: #fff !important;
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.mobile-nav li a:hover {
    color: #1C77C8;
    background: #f8faff;
}

.mobile-nav li a span {
    font-size: 35px;
    color: black;
    transition: transform 0.25s;
    line-height: 1;
    font-weight: 400;
}

.mobile-nav li a.open span {
    transform: rotate(90deg);
    color: #1C77C8;
}

.mobile-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    transition: transform 0.35s ease;
    z-index: 10;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    background: #f8f9fb;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
}

.mobile-submenu.open {
    transform: translateX(-100%);
}

.mobile-submenu li {
    border-bottom: 1px solid #eeeff1;
}

.back-btn {
    font-weight: bold;
    color: #1C77C8 !important;
}

.mobile-submenu li a {
    font-size: 14px;
    font-weight: 500;
    padding: 13px 20px 13px 36px;
    color: #444;
    background: transparent !important;
}

.mobile-submenu li a:hover {
    color: #1C77C8 !important;
    background: #eef5ff !important;
}

.mobile-submenu .mobile-submenu {
    background: #f0f1f4;
}

.mobile-submenu .mobile-submenu li a {
    font-size: 13px;
    color: #555;
    padding-left: 52px;
}

/* HERO SECTION */
.hero-section {
    width: 100%;
    overflow: hidden;
    background: #1dabff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: auto auto;
    grid-template-areas:
        "video    right"
        "products right";
}

.hero-right-col {
    grid-area: right;
    display: flex;
    flex-direction: column;
}

.hero-video-cell {
    grid-area: video;
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg-video-left,
.hero-bg-video-right {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bg-video-right {
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.58) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-know-more {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    opacity: 0.9;
}

.hero-links {
    margin-top: 4px;
}

.play-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.73);
    font-size: 40px;
}

.play-btn:hover {
    transform: scale(1.08);
}

.hero-products-cell {
    margin: 0 70px;
    padding: 80px 0px;
    grid-area: products;
    height: auto;
    background-color: #1dabff;
    /* padding: 28px 36px 36px; */
}

.products-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    overflow: hidden;
    position: relative;
}

.slider-btn i {
    font-size: 19px;
    color: black;
    display: inline-block;
    transition: transform 0.3s ease;
}

.slider-btn:hover {
    background: var(--color-primary);

    /* border-color: #fff; */
}

#nextBtn:hover i {
    animation: slideRightOnce 0.6s ease-in-out;
    color: white;
}

#prevBtn:hover i {
    animation: slideLeftOnce 0.6s ease-in-out;
    color: white;

}

@keyframes slideRightOnce {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    45% {
        transform: translateX(30px);
        opacity: 0;
    }

    50% {
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeftOnce {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    45% {
        transform: translateX(-30px);
        opacity: 0;
    }

    50% {
        transform: translateX(30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.products-track-wrapper {
    overflow: hidden;
}

.products-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-track .product-card {
    height: 100px;
    flex: 0 0 calc(33.333% - 11px);
    background: #fff;
    border-radius: 12px;
    padding: 7px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.product-icon {
    width: 80px;
    height: 84px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-icon img {
    border: 1px solid rgb(126 126 126);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-icon i {
    font-size: 1.9rem;
    color: #444;
}

.product-card span {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 19px;
}

.hero-cta-cell {
    background-color: #1c77c8;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 240px;
}

.hero-cta-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-cta-panel p {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.45;
}

.btn-solutions {
    padding: 11px 30px;
    border: none;
    border-radius: 6px;
    color: black;
    background: white;
    font-size: 0.95rem;
    font-weight: 500;
    width: fit-content;
    transition: background 0.2s, color 0.2s;
}

.btn-solutions:hover {
    background: #000;
    color: white;
    border: none;
}

.hero-media-cell {
    position: relative;
    overflow: hidden;
    flex: 1 1 0;
    min-height: 300px;
}

.hero-media-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.04);
    z-index: 1;
}
.enquiry-btn {
  position: fixed;
  bottom: 10%;
  right: 30px;
  z-index: 999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1591d8, #0d6efd);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

  /* 🔥 Breathing effect */
  animation: breatheBlue 1s infinite;
}

/* 🎧 Headset Icon */
.enquiry-btn i {
  color: #fff;
  font-size: 24px;

  /* 🔥 Beat animation */
  animation: beat 1.5s infinite;
}

/* 🔥 Outer ripple (blue) */
@keyframes breatheBlue {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(13, 110, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

/* 🔥 Icon pulse */
@keyframes beat {
  0% { transform: scale(1); }
  50% {transform: scale(1.15);}
  100% { transform: scale(1); }
}

/* Hover */
.enquiry-btn:hover {
  transform: scale(1.1);
}

/* 🔥 Hover Effect */
.enquiry-btn:hover {
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.35);
}

/* ✨ Shine effect */
.enquiry-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transition: 0.5s;
}

.enquiry-btn:hover::before {
    left: 120%;
}
/* Hover */
.enquiry-btn:hover {
  transform: scale(1.1);
}

/* 🔥 Hover Effect */
.enquiry-btn:hover {
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.35);
}

/* ✨ Shine effect */
.enquiry-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transition: 0.5s;
}

.enquiry-btn:hover::before {
    left: 120%;
}

/*  ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.about-counter {
    display: flex;
    flex-direction: row;
}

.stat-box {
    position: relative;
    background-color: #e8f4fd;
    padding: 20px 12px;
    border-radius: 12px;
    height: 100%;
    margin-left: 15px;
    width: 168px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}


.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #1C77C8;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #444;
    font-weight: 600;
    line-height: 1.3;
}

.overlap-card {
    position: relative;
    z-index: 10;
    margin-right: -80px;
    box-shadow: 10px 10px 30px rgba(28, 119, 200, 0.1);
    border: 2px solid #fff;
}

.about-img-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.about-img {
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* EXPERTS SECTION */
section.experts-section {
    background: #DEF1FF;
    padding: 70px 0;
}

.expert-cont {
    padding: 30px;
}

.experts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 20px;
    grid-template-areas:
        "edu biz biz"
        "edu infra infra"
        "cloud infra infra";
}

.edu {
    grid-area: edu;
}

.edu-card h3 {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    margin: 15px 0;
    margin-top: 0;
}

.infra {
    grid-area: infra;
}

.infra .card-body {
    margin-top: 15px;
    text-align: center;
}

.cloud {
    grid-area: cloud;
}

.solution-card {
    background: #CBDDFD;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.solution-card.edu {
    height: 500px;
    background: #D9D8DD;
    text-align: center;
}

.solution-card.edu .card-body {
    margin-top: 25px;
}

.img-frame {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    flex-grow: 1;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-frame img:hover {
    transform: scale(1.1);
}

.biz {
    grid-area: biz;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #d7e5f2;
    width: 100%;
}

.biz .img-frame {
    width: 40%;
    height: 100%;
}

.biz .card-body {
    padding-left: 20px;
}

.solution-card.cloud {
    grid-area: cloud;
    flex-direction: row;
    align-items: center;
    background-color: #e0e2e7;
    padding: 0 30px;
    border-radius: 20px;
    gap: 20px;
    height: 220px;
    margin-top: 74px;
}

.solution-card.cloud .img-frame {
    width: 50%;
    height: 180px;
    flex-grow: 0;
    border-radius: 12px;
}

.solution-card.cloud .card-body {
    text-align: left;
    flex: 1;
}

.solution-card.cloud h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    color: #000;
}

.solution-card.cloud a {
    color: #1a4f9c;
    font-weight: 500;
}

/* ══════════════════════════════════════
   CLIENTS SECTION
══════════════════════════════════════ */
.clients-section {
    padding: 80px 0;
    background: #fff;
}

.clients-track-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.clients-track {
    display: flex;
    gap: 25px;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo {
    flex: 0 0 190px;
    height: 110px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    padding: 15px;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo:hover {
    border-color: #1C77C8;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.clients-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #4a80ff;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(74, 128, 255, 0.3);
    transition: transform 0.2s, background 0.2s;
    flex-shrink: 0;
}

.clients-nav-btn:hover {
    background: #1C77C8;
    transform: scale(1.1);
}

/* ══════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════ */
.testimonials-section {
    position: relative;
    overflow: hidden;
    height: 450px;
    background: #1C77C8;
}

.testimonials-bg-img {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    object-fit: cover;
    z-index: 0;
}

.testimonials-section .container,
.testimonials-section .row {
    height: 100%;
}

.testimonials-left {
    position: relative;
    z-index: 2;
    padding: 38px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    height: 100%;
}

.testimonials-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 0 0 10px;
    height: 100%;
    overflow: hidden;
}

.testimonials-section .swiper {
    width: 100%;
    overflow: visible;
}

.swiper-wrapper {
    align-items: center;
}

.testimonial-card {
    background: #fff;
    padding: 28px 30px;
    border-radius: 20px;
    margin: 10px;
}

.tc-name-role {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
}

.tc-org {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
}

.tc-text {
    font-size: 16px;
    color: #444;
    line-height: 1.65;
    margin: 0;
}

.testimonials-section .swiper-pagination {
    position: static !important;
    display: flex;
    gap: 8px;
    padding-left: 4px;
    margin-top: 4px;
    justify-content: center;
}

.testimonials-section .swiper-pagination-bullet {
    width: 30px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    opacity: 1 !important;
}

.testimonials-section .swiper-pagination-bullet-active {
    background: #fff !important;
}

/* CTA BANNER */
.cta-banner {
    background: var(--color-dark-blue);
    padding: 50px 0;
}

section.cta-banner.container {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 50px;
    border-radius: 15px;
}

.cta-banner .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-banner .cta-left .contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-banner .cta-left .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-banner .cta-left .contact-info a:hover {
    color: #fff;
}

.cta-banner-1-wrapper {
    display: flex;
    flex-direction: column;

    padding: 0 150px;
}

.cta-banner {
    background: #00386B;
    border-radius: 10px;
}

.cta-sect {
    display: flex;
    justify-content: center;

}

.cta-inner {
    padding: 0 20px;
}

.cta-inner-1 {
    padding: 0 20px;
}

.cta-inner .btn a {
    background: #ffffff;
    color: black;
    padding: 12px 24px;
}
.btn-flex {
    display: flex;
    justify-content: center;
}

.cta-inner-1 .btn a:hover {
    background: var(--color-secondary);
    color: white;
    transition: all 0.4s;
}

.cta-inner-2 .btn a {
    background: #000000;
    color: white;
    padding: 12px 24px;
    border: none;
}

.cta-inner-2 .btn a:hover {
    background: white;
    color: var(--color-primary);
    transition: all 0.4s;
}

.btn-connect {
    background: #fff;
    color: #1C3B7A;
    font-weight: 700;
    font-size: 16px;
    padding: 20px 25px;
    border-radius: 40px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.btn-connect:hover {
    background: var(--color-secondary);
    color: #e8edf8;
    transform: translateY(-2px);
}

.contact-item img {
    width: 50%;
    fill: blue;
}

.contact-item-1 img {
    width: 80%;
    fill: blue;
}

.icon-box img[src$=".svg"] {
    filter: invert(36%) sepia(88%) saturate(1973%) hue-rotate(195deg) brightness(97%) contrast(101%);
}

.icon-box {
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FOOTER */
.footer {
    background: #131313;
    padding: 40px 0 0;
    /* merged padding + padding-bottom: 0 into one line */
    color: #fff;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-divider {
    width: 1px;
    height: 400px;
    background: #ffffff78;
    align-self: center;
}

.footer-col {
    flex: 1;
    padding: 0 5px;
}

.footer-brand p {
    font-size: 17px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.follow-text {
    font-weight: 700;
    margin-bottom: 15px !important;
    color: #fff !important;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    border: 1.5px solid white;
}

.footer-social a.fb {
    background: #3b5998;
}

.footer-social a.li {
    background: #0077b5;
}

.footer h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}

.links-grid {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
    margin-right: 20px;
}

.footer ul li a {
    font-size: 15px;
    color: #b0b0b0;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #fff;
}

.contact-map-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-city,
.footer-contact-item {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.footer-city i,
.footer-contact-item i {
    color: #b0b0b0;
    width: 15px;
}

.footer-map img {
    width: 170px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    background: #181818;
}

.footer-bottom p {
    margin: 0;
    letter-spacing: 1px;
    font-size: 16px;
    color: #fff;
}

/* cloud solution */

.cloud-banner {
    position: relative;
    min-height: 400px;
    background-image: url("/images/banner/Cloud-Services-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cloud-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

.solution-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.cloud-left img {
    width: 100%;
    height: auto;
}

.cloud-content p {
    line-height: 29px;
    text-align: justify;
}

.service-list i {
    color: rgb(0, 31, 255);

}

.hosted-email-section {
    padding: 80px 0;
    background: #ecf8ff;
    text-align: center;
}


.hosted-email-section p {
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.85;
}

section.co-location,
.co-location-apls {
    background: #034785;
}
.co-location-apls{
    padding: 80px 0;
}


.infra-banner {
    position: relative;
    min-height: 400px;
    background-image: url("/images/banner/infra-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.infra-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

.infra-content p {
    line-height: 29px;
    text-align: justify;
}

.infra-quality-content {
    padding: 60px 120px;
    padding-top: 0;
    line-height: 32px;
    text-align: justify;

}

.business-service {
    padding: 80px 0;
}
.infra-service{
    padding: 80px 0 ;
}
.infra-service button.btn a,
.business-service button.btn.btn-primary {
    width: 209px;
    color: white;
    background: var(--color-secondary);
    font-size: 17px;
    font-weight: 600;
    padding: 16px;
    border: none;
    border-radius: 25px;
}

.infra-service button.btn a:hover,
.business-service button.btn.btn-primary:hover {
    background-color: var(--color-primary);
}

.infrastructure-quality-content {
    background: #034785;
}

.quality {
    padding: 25px;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}

.infrastructure-quality .quality:last-child,
.infrastructure-quality .quality-2:last-child {
    border-right: none;
}

.quality-2 {
    padding: 25px;
    border-right: 1px solid white;
    /* border-bottom: 1px solid white; */
}

.app-inner,
.app-inner-1 {
    text-align: center;
    padding: 25px;
    border-right: 1px solid rgba(128, 128, 128, 0.61);
    border-bottom: 1px solid rgba(128, 128, 128, 0.61);
}

.app-inner-2 {
    text-align: center;
    padding: 25px;
    border-right: 1px solid rgba(128, 128, 128, 0.61);
    /* border-bottom: 1px solid white; */
}


.quality p,
.quality-2 {
    line-height: 32px;
}

.printer-banner {
    position: relative;
    min-height: 400px;
    background-image: url("/images/banner/3d-printer-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.printer-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}
.printer-service{
    padding: 80px 0;
}

.printer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
}

.printer-left {
    width: 100%;
    height: auto;
}

.printer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
    font-size: 16px;
    color: #333;
}

.printer-item i {
    margin-top: 4px;
    font-size: 18px;
}

.printer-item span {
    display: block;
}

.contact-banner {
    position: relative;
    min-height: 400px;
    background-color: var(--color-dark-blue);
    background-position: center;
    overflow: hidden;
}

.contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

/* Background for the whole section */
.contact-wrap {
    background-color: #f9f9f9;
    /* Subtle off-white background */
}

.contact-form-card {
    background: #ffffff;
    padding: 100px 50px;
    border-radius: 40px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.custom-input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    color: #333;
}

.custom-input::placeholder {
    color: #bbb;
}

.input-group-text {
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
}

.submit-btn {
    background-color: #0062cc;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #004da3;
}

.btn-pill {
    border-radius: 50px;
    border: 2.5px solid #000;
    font-size: 17px;
    font-weight: bold;
    padding: 5px 20px;
}

.icon-box {
    width: 70px;
    height: 70px;
    border: 1px solid #eee;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    color: #0062cc;
    background: #fff;
}

.iti {
    width: 100% !important;
    display: block !important;
}

#phone.custom-input {
    height: 50px !important;
}

.iti__country-list {
    z-index: 99999 !important;
}

.iti__flag-container {
    z-index: 1;
}

.page-wrapper {
    background-color: #e9e9e94b;
}

.form-card {
    background: #fff;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.form-control {
    border: 1.5px solid #000000;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 15px;
    color: black;
    background: #d3d3d333;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #4a7cf7;
    box-shadow: none;
}

.form-control::placeholder {
    color: #aaa;
}

.password-wrapper {
    position: relative;
}

.password-wrapper .toggle-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 18px;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.password-wrapper .toggle-eye:hover {
    color: #555;
}

.btn-login,
.btn-register {
    background: #4a7cf7;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 30px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.btn-login:hover,
.btn-register:hover {
    background: #3563e9;
    transform: translateY(-1px);
    color: #fff;
}

.form-check-input {
    border-radius: 4px;
    border: 1.5px solid #ccc;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #4a7cf7;
    border-color: #4a7cf7;
}

.form-check-label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}


.lost-password {
    font-size: 14px;
    color: #333;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lost-password:hover {
    color: #4a7cf7;
}

.register-note {
    font-size: 16px;
    color: #555;
    line-height: 26px;
}

.register-note a {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.register-note a:hover {
    color: #4a7cf7;
}

.divider-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-divider {
    width: 1px;
    height: 80%;
    background: #e0e0e0;
}

#backToTop {
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--color-primary);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    transition: opacity 0.3s;
}

#backToTop:hover {
    background-color: #333;
    transition: all 0.2s ease-in;
}

.policy-content,
.term-content,
.return-content,
.shipping-content {
    text-align: justify;
}

.forgot-pass .form-card {
    background: none;
    box-shadow: none;
    padding: 0;
    background: none;
}

.forgot-pass {
    color: rgb(112, 112, 112);
    min-height: 68vh;
}

.business-banner {
    position: relative;
    min-height: 400px;
    background-image: url("/images/banner/business-solution.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.business-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

.possible-content {
    text-align: justify;
}

p.text-center.possible-content {
    padding: 22px 264px;
}

.power-images img {
    border-radius: 12px;
    width: 100%;
}


.cta-banner-1 {
    background: var(--color-primary);
    margin-bottom: 60px;
    border-radius: 10px;
    margin-top: 63px;
}

.cta-inner-1 .btn {
    background: #ffffff;
    color: black;
    padding: 12px 24px;
}

.cta-inner-1 .btn:hover {
    background: var(--color-secondary);
    color: white;
    transition: all 0.4s;
}

.cta-inner-2 .btn {
    background: #000000;
    color: white;
    padding: 12px 24px;
    border: none;
}

.cta-inner-2 .btn:hover {
    background: white;
    color: var(--color-primary);
    transition: all 0.4s;
}

.perk-detail {
    background: var(--color-dark-blue);
    color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
}

.perk-card {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.10);
    border-radius: 15px 15px;
    min-height: 250px;

}

.effective-img {
    width: 100%;
}

.perk-cont {
    padding: 35px;

}

.effective-solution {
    height: 75vh;
}

.effective-solution h2.text-center.main-title {
    padding: 25px 200px;
}

.enrollmet-banner {
    position: relative;
    min-height: 400px;
    background-color: #00386b;
    background-position: center;
    overflow: hidden;
}

.device-enrolment p {
    text-align: justify;
}

.device-enrolment button a {
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    background: var(--color-secondary);
}

.device-enrolment button a:hover {
    background: var(--color-primary);
    color: white;
}

.teachers-banner {
    position: relative;
    min-height: 400px;
    background-image: url("/images/banner/teachers-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.teachers-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

.apple-teacher {
    width: 100%;
}

.everyone {
    text-align: justify;
    min-height: 40vh;
}

.everyone .btn a {
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    background: var(--color-secondary);
}

.everyone-content {
    padding: 50px;
}

.teacher-prof img {
    width: 80%;
    object-fit: cover;
    border-radius: 15px;
}


.parents-banner {
    position: relative;
    min-height: 400px;
    background-image: url("/images/banner/parents-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.parents-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

.parents-resource {
    padding:80px 0;
}

.parents-content {
    padding: 40px 0;
}

.security-content {
    padding: 70px;
}

.student-privacy-content {
    padding: 70px 300px;
}

.leader-banner {
    position: relative;
    min-height: 400px;
    background-color: var(--color-dark-blue);
    background-position: center;
    overflow: hidden;
}

.leader-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

.leader-service button a {
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    background: var(--color-secondary);
}

.leader-service img {
    height: 398px;
    object-fit: cover;
}

.leadership-content {
    padding: 70px;
}

.leader-inner {
    padding: 30px;
}

.apls-banner {
    position: relative;
    min-height: 400px;
    background-image: url("/images/banner/apl-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.apls-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

.apple-proogram{
    padding: 80px 0;
}
.apple-proogram img {
    width: 90px;

}

.apple-proogram .quality {
    padding: 50px;
    border-right: 0.5px solid gray;
    border-bottom: 1px solid grey;
}

.apple-proogram .quality-2 {
    padding: 25px;
    border-right: 1px solid grey;
}

.apple-proogram .row>div:nth-child(3n) {
    border-right: none;
}


/* sohail css */
.listing {
    background: #f8f8f8;
    padding: 30px;
}


.categories-listing {
    clear: both;
    position: sticky;
    top: 20px;
    overflow: hidden;

    padding: 35px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 30px;
}

aside#product-categories h2 {
    position: relative;
    text-align: center;
    padding-bottom: 30px;
}

aside#product-categories h2::before {
    content: "";
    position: absolute;
    width: 1000vh;
    height: auto;
    left: -35px;
    right: -35px;
    bottom: 0;
    border-bottom: 1px solid #d3d3d3;
    background-color: transparent !important;
    margin: auto;
}

ul.product-categories li a:before {
    content: '';
    position: relative;
    overflow: hidden;
    display: inline-flex;
    width: 14px;
    height: 14px;
    background-color: transparent;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    margin: 0;
}

ul.product-categories li a {
    position: relative;
    padding: 10px 0;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    border: none;
    margin: 0;
    color: var(--color-000000);
}

ul.product-categories li a:hover {
    color: #4f7eff;
}

ul.product-categories li a:focus:before {
    -webkit-box-shadow: inset #4f7eff 0 0 0 14px;
    box-shadow: inset #4f7eff 0 0 0 14px;
}

.result-count {
    font-size: var(--font-size-16);
    color: #707070;
    margin: 0;
}

/* CARD */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.listing .product-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.listing .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.product-thumb {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #d3d3d3;
     -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.product-thumb img {
    width: 100%;
    display: block;
    transition: all 0.4s ease;
     -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

/* SECOND IMAGE */
.secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
     -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.secondary-image img {
    transform: scale(1.05);
/* HOVER IMAGE EFFECT */
  transform: scale(0.95);
}

/* BADGE */
.listing .offer-badge {
    background: #DA4322;
    font-weight: var(--font-weight-Regular);
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

/* TITLE */

.product-title a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* 👈 2 lines only */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* PRICE */
.product-price {
    margin-bottom: 0px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 5px;
}

.new-price {
    font-weight: bold;
    color: #000;
}

/* BUTTON BASE */
.custom-loop-add-to-cart {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.custom-loop-add-to-cart a {
    border: 1px solid #4f7eff;
    background: #4f7eff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
}

.custom-loop-add-to-cart a:hover {
    background: #FFFFFF;
    color: #4f7eff;
}
.product-remove {
    width: 80px;
}

.cart-page .product-name {
    width: 550px;
}

.cart-page .product-price {
    width: 150px;
}

.cart-page .product-price {
    text-align: center;
    width: 150px;
    display: flex;
    justify-content: center;
}

.cart-page .product-quantity {
    width: 120px;
    display: flex;
    text-align: center;
    justify-content: center;
}

.cart-page input.qty {
    text-align: center;
    width: 80px;
}
form.woocommerce-cart-form {
    width: 100%;
}
/* hide by default */
.added_to_cart {
    display: none;
}

/* responsive */
/* Hide button on desktop */
.filter-toggle {
    display: none;
}

/* MOBILE */
/* Hide button on desktop */
.filter-toggle,
.filter-close {
    display: none;
}

/* Cart-page */
.custom-cart-wrapper {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

/* LEFT SIDE */
.custom-cart-left {
    border: 1px solid #00000026;
     margin: 0 0px 40px 0; 
    text-align: left;
    /* width: 100%; */
    /* border-collapse: separate; */
    border-spacing: 0;
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    padding: 0;
    border-radius: 20px;
    /* flex: 2; */
}



.custom-cart-table th {
    text-align: left;
    font-size: 20px;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 15px;
    /* border: navajowhite; */
}
.custom-cart-left .product-subtotal {
    width: 150px;
}
section.cart-page {
    width: 80%;
    margin: 0 auto !important;
    /* background: #f8f8f8; */
}

.wc-proceed-to-checkout a {
    text-align: left;
    margin-top: 20px;
    display: inline-block;
}

.wc-proceed-to-checkout {
    text-align: left;
}

.custom-cart-top {
    border: 1px solid #00000026;
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    background: #fff;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
}

.custom-cart-table td {
    padding: 15px 14px;
    vertical-align: middle;
}

.image img {
    width: 100px;
    height: auto;
}

.name {
    max-width: 250px;
}

.price,
.subtotal {
    font-weight: 500;
}

/* QTY BOX */
.qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #00000026;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

/* BUTTONS */
.qty-box button {
    width: 35px;
    height: 35px;
    border: none;
    background: #f5f5f5;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.qty-box button:hover {
    background: #e0e0e0;
}

/* INPUT */
.qty-box input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center !important;
    font-size: 16px;
    outline: none;
}

/* REMOVE NUMBER ARROWS (Chrome, Safari, Edge) */
.qty-box input::-webkit-outer-spin-button,
.qty-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* REMOVE NUMBER ARROWS (Firefox) */
.qty-box input[type="number"] {
    -moz-appearance: textfield;
}

/* REMOVE */
.remove {
    color: red;
    font-size: 20px;
    cursor: pointer;
}

/* ACTIONS */
.actions {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
}

.actions-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
td.actions {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

tr.flex-action {
    display: flex;
    flex-direction: column-reverse;
}
p#coupon-error-notice {
    color: red;
    margin: 0;
}

.coupon input {
    padding: 8px;
    border: 1px solid #cfc8d8;
    line-height: normal;
    min-height: 44px;
    padding: 10px 12px;
    width: 200px;
    border-radius: 30px
}

.blue {
    padding: 16px 38px;
    font-size: 16px;
    background: #4f7eff;
    border-radius: 30px;
    color: #fff;
    border: none;
    line-height: normal;
}

.blue:hover {
    background: #000;

}

/* RIGHT SIDE */
.custom-cart-right {
    flex: 1;
}

table.shop_table tr {
    background: transparent;
    border-style: solid;
    border-width: 0 0 1px 0;
    font-size: 15px;
    font-weight: normal;
    line-height: 30px;
    padding: 15px 0;
    text-align: left;
    text-transform: capitalize;
    width: 50%;
    display: flex;
    width: 100%;
    flex-direction: row;
    border-color: #00000026;
    justify-content: space-between;
}

table.shop_table.shop_table_responsive {
    width: 100%;
}

.cart-box {
    border: 1px solid #00000026;
    /* padding: 20px; */
    /* border-radius: 10px; */
    background-color: #fff;
    /* border: 1px solid; */
    display: inline-block;
    margin-bottom: 0;
    padding: 3%;
    width: 100%;
    border-radius: 20px;
}

.cart-box h3 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    text-transform: capitalize;
}

.cart-box .row {
    display: flex;
    /* justify-content: space-between; */
    margin-bottom: 10px;
    flex-direction: row;
}

.cart-box .total {
    font-weight: bold;
    margin-top: 10px;
}

.checkout {
    background: #4f7eff;
    /*color: #fff;*/
    border: none;
    margin-top: 15px;
}

.product-thumbnail {
    width: 150px;
}

.product-name {
    width: 550px;
}

/* ===== TABLE CONTROL ===== */
.custom-cart-table {
    width: 100%;
    border-collapse: collapse;
}

/* ===== REMOVE COLUMN (FIX WIDTH) ===== */
.custom-cart-table td.remove,
.custom-cart-table th:first-child {
    width: 100px;
    text-align: center;
}

/* ===== PRODUCT NAME (MOST IMPORTANT) ===== */
.custom-cart-table .name {
    max-width: 550px;
    /* word-break: break-word; */
}

.custom-cart-table .name a {
    color: #000;
}

.custom-cart-table .name a:hover {
    color: #4f7eff;
}

/* ===== REMOVE EXTRA SPACE ===== */
.custom-cart-table td {
    display: flex;
    white-space: normal;
    align-items: center;
    /* justify-content: center; */
}

Chrome,
Safari,
Edge */ input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* Product-detail */
.details-page {
    padding: 50px 0;
    width: 80%;
    margin: 0 auto;
}

.details-page .product-page {
    display: flex;
    gap: 0;
    padding-bottom: 50px;
    width: 100%;
}

.details-page .product-page .swiper-wrapper {
    align-items: center;
}

/* LEFT */
.details-page {
    display: flex;
    gap: 20px;
    /* space between left & right */
}

/* LEFT GALLERY */
.details-page .left {
    width: 36%;
    /* adjust width as needed */
    position: sticky;
    /* stick on scroll */
    top: 20px;
    /* distance from viewport top */
    align-self: flex-start;
    /* ensures sticky works inside flex */
}
.details-page th p {
    margin: 0;
}

.details-page td p {
    margin: 0;
}
.details-page th {
    text-transform: capitalize;
    color: #000!important;
}
/* Main slider and thumbnails full width */
.details-page .left .main-slider,
.details-page .left .thumb-slider {
    width: 100%;
}

/* Optional: add some spacing below thumbnails */
.details-page .left .thumb-slider {
    margin-top: 10px;
}

/* RIGHT CONTENT */
.details-page .right {
    width: 63%;
    /* rest of the page */
    padding-left: 30px;
}

/* Optional: make nav buttons inside sticky container */
.nav-btns {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.details-page .main-slider img {
    width: 100%;
    border-radius: 12px;
}

.details-page .thumb-slider {
    margin-top: 15px;
}

.details-page .thumb-slider .swiper-slide {
    cursor: pointer;
    width: 70px;
    height: 70px;
    opacity: 0.5;
}

.details-page .thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid #1b77c9;
    border-radius: 10px;
}

.details-page .thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAV BUTTONS */
.details-page .nav-btns {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.details-page .nav-btns button {
    background: #5a7cff;
    border: none;
    padding: 10px 25px;
    color: white;
    border-radius: 25px;
    cursor: pointer;
}

.details-page .nav-btns button:hover {
    background: #3c3b3b;
}

/* RIGHT */

.details-page .right h2 {
    font-size: 26px;
    font-weight: bold;
}

.details-page .right h3 {
    font-weight: 500;
    font-size: 20px;
    margin: 10px 0;
}

.details-page ul.short-description {
    margin: 30px 0;
}

.details-page .desc li {
    font-size: 16px;
    margin-bottom: 12px;
}

/* OPTIONS */
.details-page .options {
    display: flex;
    gap: 30px;
}

/* HIDE REAL SELECT */
.details-page .hidden-select {
    display: none;
}

.details-page .option-box label {
    margin-bottom: 8px;
    display: block;
    font-size: 18px;
    font-weight: 600;
}

/* MAIN BOX */
.details-page .custom-select {
    position: relative;
    width: 240px;
}

/* SELECTED */
.details-page .selected {
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    cursor: pointer;
    background: #fff;
    transition: 0.3s;
}

/* ARROW */
.details-page .selected::after {
    content: "⌄";
    float: right;
}

/* DROPDOWN PANEL */
.details-page .dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    z-index: 10;
}

/* ITEMS */
.details-page .item {
    padding: 12px 18px;
    cursor: pointer;
    transition: 0.2s;
}

/* HOVER EFFECT */
.details-page .item:hover {
    background: #5a7cff;
    color: #fff;
}

/* ACTIVE */
.details-page .item.active {
    background: #222;
    color: #fff;
}

/* OPEN STATE */
.details-page .custom-select.active .dropdown {
    display: block;
}

/* HOVER BOX */
.details-page .selected:hover {
    border-color: #5a7cff;
}

/* CART */
.details-page .cart {
    display: flex;
    /* align-items: center; */
    gap: 20px;
    margin-top: 30px;
    flex-direction: column;
        align-items: flex-start;
}

/* QTY BOX */
.details-page .qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
}

/* BUTTONS */
.details-page .qty-box button {
    width: 40px;
    height: 45px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.details-page .qty-box button:hover {
    background: #5a7cff;
    color: #fff;
}

/* INPUT */
.details-page .qty-box input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
}

/* REMOVE ARROWS */
.details-page .qty-box input::-webkit-outer-spin-button,
.details-page .qty-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ADD TO CART BUTTON */
.details-page .add-to-cart {
    padding: 14px 30px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(135deg, #5a7cff, #7fa0ff);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.details-page .add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 124, 255, 0.3);
}

/* PRODUCT META */
.details-page .product-meta {
    margin-top: 20px;
    font-size: 16px;
    color: #000000;
}

.details-page .product-meta a {
    color: #5a7cff;
    text-decoration: none;
}

.details-page .product-meta a:hover {
    text-decoration: underline;
}


/* Tabs */
.details-page .product-tabs {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 40px;
    font-family: Arial, sans-serif;
}

/* Tabs */
.details-page .tabs {
    display: flex;
    gap: 55px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.details-page .tab {
    background: none;
    border: none;
    font-size: 24px;
    padding-bottom: 20px;
    cursor: pointer;
    position: relative;
    color: #666;
    font-weight: 600;
}
.details-page .tab a {
    font-size:20px;
}

.details-page .tab.active {
    color: #4f7eff;
}

.details-page .tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

/* Content */
.details-page .tab-content {
    display: none;
}

.details-page .tab-content.active {
    display: block;
}

/* Typography */
.details-page h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

.details-page ul {
    margin: 10px 0 15px;
    padding-left: 0;
}

.details-page ul li {
    margin-bottom: 6px;
    color: #444;
}

/* Table */
.details-page table {
    width: 100%;
    border-collapse: collapse;
}

.details-page th {
    text-align: left;
    /* width: 150px; */
    color: #666;
    padding: 10px;
}

.details-page td {
    padding: 10px;
    color: #222;
}

.details-page tr {
    border-bottom: 1px solid #eee;
}

/* Checkout-page */
:root {
    --color-primary: #1C77C8;
    --color-secondary: #1dabff;
    --color-light-blue: #DEF1FF;
}

/* SECTION */
.checkout-section {
    padding: 50px 20px;
    background: #f6f8fb;
}

/* CONTAINER */
.checkout-section .checkout-page {
    max-width: 80%;
    margin: auto;
}

/* LAYOUT */
.checkout-section .checkout-form {
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* LEFT */
.checkout-section .checkout-left {
    flex: 2;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeSlide 0.6s ease;
    width: 70%;
}

/* RIGHT (STICKY) */
.checkout-section .checkout-right {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    position: sticky;
    top: 20px;

    animation: fadeSlide 0.8s ease;
}
.checkout-section .checkout-right .product-name {
    width: 60%;
}

/* ANIMATION */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM */
.checkout-section .form-group {
    display: flex;
    flex-direction: column;
    /*margin-bottom: 15px;*/
}

.checkout-section label {
    font-weight: 600;
    margin-bottom: 5px;
}

.checkout-section label span {
    color: red;
}

/* INPUT */
.checkout-section input,
.checkout-section textarea,
.checkout-section select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

/* FOCUS */
.checkout-section input:focus,
.checkout-section textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-light-blue);
    outline: none;
}

/* GRID */
.checkout-section .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.checkout-section .form-group.full {
    grid-column: span 2;
}

/* RADIO */
.checkout-section .radio-label {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* UPLOAD */
.checkout-section .upload-section {
    display: none;
    margin: 20px 0;
    animation: fadeSlide 0.4s ease;
}

.checkout-section .upload-grid {
    display: flex;
    gap: 20px;
}

.checkout-section .upload-grid .form-group {
    flex: 1;
}

/* ORDER */
.checkout-section .order-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.checkout-section .order-item img {
    width: 60px;
    border-radius: 6px;
}

.checkout-section .order-summary {
    margin-top: 20px;
}

.checkout-section .order-summary p {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.checkout-section .order-summary .total {
    font-weight: bold;
    font-size: 18px;
}

/* BUTTON */
.checkout-section .place-order {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-section .place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 119, 200, 0.3);
}

/* RIGHT CARD */
.checkout-section .checkout-right {
    width: 30%;
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 20px;
}

/* TITLE */
.checkout-section .order-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* PRODUCT */
.checkout-section .order-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.checkout-section .order-item img {
    width: 65px;
    border-radius: 10px;
}

.checkout-section .order-info p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.checkout-section .order-info span {
    font-size: 12px;
    color: #777;
}

.checkout-section .price {
    margin-left: auto;
    font-weight: 600;
}

/* SUMMARY */
.checkout-section .order-summary {
    margin-top: 20px;
}

.checkout-section .order-summary p {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.checkout-section .order-summary .total {
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

/* PAYMENT */
.checkout-section .payment-method {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.checkout-section .payment-option {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.checkout-section .payment-option input {
    accent-color: var(--color-primary);
    margin-top: 4px;
}

.checkout-section .payment-box {
    width: 100%;
}

.checkout-section .payment-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-section .payment-top img {
    height: 28px;
}

.checkout-section .payment-box p {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* PRIVACY */
.checkout-section .privacy-text {
    font-size: 12px;
    color: #777;
    margin-top: 15px;
    line-height: 1.5;
}

/* TERMS */
.checkout-section .terms-box {
    margin-top: 15px;
    font-size: 13px;
}

.checkout-section .terms-box label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkout-section .terms-box input {
    margin-top: 3px;
}

.checkout-section .terms-box a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.checkout-section .terms-box a:hover {
    text-decoration: underline;
}

/* BUTTON */
.checkout-section .place-order {
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.checkout-section .place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 119, 200, 0.3);
}

/* COUPON */
/* COUPON WRAPPER */
.checkout-section .checkout-coupon {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
    border-top: 3px solid var(--color-primary);
}

/* TEXT */
.checkout-section .checkout-coupon span {
    font-size: 16px;
    margin-right: 10px;
}

/* BUTTON LINK */
.checkout-section .toggle-coupon {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

/* HOVER */
.checkout-section .toggle-coupon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 119, 200, 0.3);
}

/* ✅ COUPON BOX (FIXED) */
.checkout-section .coupon-box {
    display: flex;
    /* always flex */
    justify-content: center;
    gap: 10px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

/* ACTIVE (OPEN) */
.checkout-section .coupon-box.active {
    max-height: 100px;
    /* adjust if needed */
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
}

/* INPUT */
.checkout-section .coupon-box input {
    padding: 10px;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* BUTTON */
.checkout-section .coupon-box button {
    padding: 10px 20px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}






/* sakshi css */
.breadcrumb-section {
    position: relative;
    display: flex;
    height: 450px;
    width: 100%;
    --background-overlay: '';
    background-image: url(../images/edu-breadcrumb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    align-items: center;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgb(255, 255, 255, 1);
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-box {
    /* margin-top: 200px; */
    align-content: space-around;
    align-items: center;
    justify-content: center
}

.breadcrumb a {
    color: white;
}

.breadcrumb a:hover {
    color: #1D77C8;
}

/* .breadcrumb-item:hover {
    color: #1d77c8;
} */

.edu-section {
    padding: 80px 0;
    text-align: center;
}

.edu-title {
    color: #000;
    margin-bottom: 20px;
}

.edu-text {
    color: #000;
    margin: 0 auto 50px;

}


.edu-cards {
    display: flex;
    justify-content: center;
    gap: 40px;

}

.edu-card {
    border-radius: 15px;
    background: #1D77C9;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;

}

.edu-img-wrapper img {
    position: relative;
    object-fit: cover;
    border-radius: 15px;
    transition-duration: 0.3s;
    width: 100%;
    height: auto;
}


.edu-img-wrapper img {
    width: 100%;
    height: auto;
}

.ipad-section10 .card-body {
    min-height: 180px;
}

.ipad-loaded img {
    width: 55%;
}
.edu-text {
        width: 50%;}

.ipadbreadcrumb-section {
    position: relative;
    display: flex;
    align-items: center;
    height: 450px;
    width: 100%;
    --background-overlay: '';
    /* background-color: #1D77C9; */
    background-image: url(../images/ipad-in-edu-breadcrumb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

}



.ipadbreadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.ipadbreadcrumb-section .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C35;
    opacity: 0.7;
    z-index: 1;
}

.ipad-section {
    padding: 80px 0;
    text-align: center;
}

.imac-section {
    padding: 80px 0;
    text-align: center;
}

.ipad-image {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.ipad-section2 {
    background-color: #f5f5f5;
    padding: 80px 0;
}


.video-section video {
    width: 100%;
}

.btn-primary {

    background: #1D77C9;

}

.btn-primary:hover {
    background: #000;
}

.btn-1:hover {
    background: #1dabff;
}


.btn-1 {

    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    text-transform: none;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 5px 5px 5px 5px;
}

.btn-1:hover {
    background: #ffffff;
}




.ipad-section3 {
    display: flex;
    padding: 80px 0;
    text-align: center;
}

.ipad-text {
    text-align: justify;
    padding: 25px;
}

.btn-section {
    background-color: #1D77C8;
    display: flex;
    padding: 40px 0;
    text-align: center;
    border-radius: 20px;
    justify-content: center;
    gap: 40px;

}

.ipad-section4 {
    display: flex;
    padding: 40px 0;
    text-align: center;
}
.ipad-section4 {
    display: flex;
    padding: 40px 0;
    text-align: center;
}

.ipad-section5 p{
    padding: 1500px 0;
    text-align: center;
}

.ipad-section6 {
    display: flex;
    padding: 80px 0;
    text-align: center;
    flex-direction: column;
}

.img-wrapper img {
    position: relative;
    object-fit: cover;
    border-radius: 15px;
    transition-duration: 0.3s;
    width: 100%;
    height: auto;
}

.apps-education img {
    width: 33%;
    border-radius: 16px;
    margin-bottom: 12px;
}

.ipad-section6 h3 {
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}

.ipad-section7 {
    background-color: #ecf8ff;
    display: flex;
    padding: 80px 0;
    text-align: center;
    flex-direction: column;
}


.btn-sol:hover {
    background: #1D77C8;
}

.btn-sol a:hover {
    color: #fff;
}



.btn-primary a {
    color: rgb(255, 255, 255);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;

}

.card-solution {
    background: white;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s;
}

.card-solution .card-body {
    padding: 15px;
}




.ipad-section8 {
    display: flex;
    padding: 80px 0;
    text-align: center;
    flex-direction: column;
}

.ipad-section9 {
    background-color: #f5f5f5;
    display: flex;
    padding: 80px 0;
    text-align: center;
    flex-direction: column;
}

.ipad-section10 {
    display: flex;
    padding: 80px 0;
    text-align: center;
    flex-direction: column;
}

.ipad-section10 .card-solution:hover {
    transform: translateY(1.5);
}

.card-align {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.col-benefits .card {
    width: 18rem;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;

}

.col-benefits .card-header {
    background: #066299;

}

.ipad-section11 {
    background-color: #f5f5f5;
    display: flex;
    padding: 80px 0;
    text-align: center;
    flex-direction: column;

}


.col-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.btn-ipad {
    background: #1dabff;
}

.card-header {
    background: #066299;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

.card-text {
    /* padding: 20px; */
    font-size: 14px;
    color: #333;
    /* min-height: 200px; */
    line-height: 1.6;
    font-family: Plus Jakarta Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
}





.macbreadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.macbreadcrumb-section {
    position: relative;
    display: flex;
    align-items: center;
    height: 450px;
    width: 100%;
    --background-overlay: '';
    background-image: url(../images/mac-in-edubreadcrumb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

}

.macbreadcrumb-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001C35;
    /* adjust opacity */
    z-index: 1;
    opacity: 0.78;
}

.breadcrumb-p-line {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    text-align: center;

}

.investment-section {
    text-align: center;
    padding: 60px 20px;
    background: #f7f7f7;
    font-family: Arial, sans-serif;
}


.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.box {
    padding: 20px 10px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.box:nth-child(3) {
    border-right: none;
}

.bottom-left {
    grid-column: 1 / 2;
    border-bottom: none;
}

.bottom-right {
    grid-column: 3 / 4;
    border-bottom: none;
    border-right: none;
}

/* center divider */
.investment-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 50%;
    background: #ddd;
    transform: translateX(-50%);
}

.icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.box p {
    font-weight: bold;
    margin: 0;
}

.box img {
    height: 80px;
    width: 80px;
}

.apps-section {
    text-align: center;
    padding: 60px 20px;
}

.apps-section h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 60px;
    line-height: 1.4;
}

.apps-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.app {
    padding: 50px 20px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.app img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.app p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.education-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Background Image (cat) */
.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("cat.jpg") center/cover no-repeat;
    transform: scaleY(-1);
    /* upside-down effect like your image */
    opacity: 0.9;
}

/* Content layout */
.content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Left Text */
.text h1 {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

/* Right small image */
.side-image img {
    width: 350px;
    border-radius: 4px;
}

.mac-section {
    padding: 80px 0;
    text-align: center;
    justify-content: center;

}

.mac-image {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.mac-btext p {
    text-align: center;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-style: italic;
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: 22px;
    line-height: 36px;
}

.mac-section1 {
    background-color: #fff;
    display: flex;
    padding: 80px 0;
    flex-direction: column;
    justify-content: center;
}

.mac-section2 {
    background-color: #F5F5F5;
    display: flex;
    padding: 40px 0;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.mac-section4 {
    background-color: #f5f5f5;
    display: flex;
    padding: 80px 0;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.mac-section5 {
    background-color: #fff;
    display: flex;
    padding: 80px 0;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.mac-section6 {
    background-color: #fff;
    padding: 40px 0;
}

.mac-section7 {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.mac-section7 img {
    width: 80%;
}

.mac-section8 {
    background-color: #fff;
    padding: 40px 0;
}

.mac-section8 img {
    width: 80%;
}

.mac-section9 {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.mac-section9 img {
    width: 80%;
}

.mac-section10 {
    background-color: #fff;
    padding: 40px 0;
}

.mac-section10 img {
    width: 80%;
}

.ipadm-section3 {
    background: #fff;
    display: flex;
    padding: 80px 0;
    text-align: center;
}

.btn-primary1 {
    background-color: #1D77C8;
    display: flex;
    /* padding: 5px 5px; */
    text-align: center;
    border-radius: 25%;
    justify-content: center;
}

.img-fluid3 {
    width: 100%;
}

.ipadm-section10 {
    background: #fff;
    display: flex;
    padding: 80px 0;
    text-align: center;
}

.ipadm-section11 {
    background: #f5f5f5;
    display: flex;
    padding: 80px 0;
    text-align: center;
}

.pill-btn {
    padding: 10px 25px;
    border-radius: 50px;
    background-color: #1DABFF;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.pill-btn a {
    color: #fff;
    text-decoration: none;

}

.round-btn:hover,
.round-btn-icon:hover,
.pill-btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
    transition: 0.3s;
}

.imac-section6 .apps-education img {
    width: 20%;
    border-radius: 16px;
    margin-bottom: 12px;
}

.imac-section6 h4 {
    color: #707070;
}

.imac-section6 {
    padding: 80px 0;
}

.mac-section4 {
    min-height: 60vh;
    padding: 40px 0;
}

.mac-section4 .authorised img,
.mac-section4 .authorised-1 img {
    width: 80px;
}

.mac-section4 .authorised {
    padding: 25px;
    border-right: 1px solid rgba(128, 128, 128, 0.60);
    border-bottom: 1px solid grey;
}

.mac-section4 .authorised-1,
.mac-section5 .authorised-1 {
    padding: 30px;
    border-right: 1px solid rgba(128, 128, 128, 0.60);
}

.mac-section3 {
    background-color: #fff;
    padding: 80px 0;
}

.mac-section3 .authorised img {
    width: 80px;
}

.mac-section3 .authorised {
    padding: 25px;
    border-right: 1px solid grey;
    border-bottom: 1px solid grey;
}

.product-detail {
    padding: 15px;
}
/* WRAPPER */
.page-numbers {
    display: flex;
    flex-wrap: wrap; /* IMPORTANT for mobile */
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

/* BUTTON STYLE */
.page-numbers li a,
.page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-dark-blue);
    background: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

/* HOVER */
.page-numbers li a:hover {
    background: var(--color-light-blue);
    color: var(--color-primary);
    border-color: var(--color-secondary);
}

/* ACTIVE */
.page-numbers li .current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* NEXT / PREV */
.page-numbers li .next,
.page-numbers li .prev {
    font-size: 18px;
    font-weight: 600;
    padding: 0 14px;
}

@media (max-width: 576px) {
    .page-numbers {
        gap: 6px;
    }

    .page-numbers li a,
    .page-numbers li span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 8px;
        border-radius: 6px;
    }

    /* Hide extra pages (optional clean UI) */
    .page-numbers li:nth-child(n+5):not(:last-child) {
        display: none;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .page-numbers li a,
    .page-numbers li span {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }
}
/* MAIN FORM */
/* MAIN MESSAGE BOX */
.woocommerce-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    background: #e6f4ff;
    border-left: 4px solid #1C77C8;
    padding: 14px 18px;
    border-radius: 10px;
    
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

/* ICON ADD */
.woocommerce-message::before {
    content: "✔";
    font-weight: bold;
    color: #1C77C8;
    margin-right: 8px;
}

/* TEXT WRAP FIX */
.woocommerce-message {
    flex-wrap: wrap;
}

/* BUTTON (VIEW CART) */
.woocommerce-message .button {
    background: #1C77C8;
    color: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.woocommerce-message .button:hover {
    background: #066299;
}

/* ================= */
/* MOBILE FIX */
/* ================= */
@media (max-width: 576px) {
    .woocommerce-message {
        align-items: flex-start;
    }

    .woocommerce-message .button {
        width: 100%;
        text-align: center;
    }
}
/* VARIATION ROW INLINE */
.details-page table tbody {
    display: flex;
    flex-wrap: wrap;
}
.variations tr {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

/* LABEL */
.variations .label label {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 17px;
    color: #111;
}

/* SELECT BOX (ROUNDED PILL) */
.variations select {
    appearance: none;
    -webkit-appearance: none;

    padding: 12px 40px 12px 16px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #f5f5f7;

    font-size: 14px;
    font-weight: 500;
    color: #111;

    cursor: pointer;
    min-width: 160px;
}

/* CUSTOM DROPDOWN ARROW */
.details-page td {
    position: relative;
}

.details-page td::after {
    content: "▾";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #555;
    pointer-events: none;
}

/* CLEAR BUTTON */
.reset_variations {
    margin-left: 10px;
    font-size: 13px;
    color: #777;
    text-decoration: none;
}

.reset_variations:hover {
    color: #000;
}

/* PRICE */
.woocommerce-variation-price {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
    color: #000;
}

/* QTY + BUTTON WRAP */
.woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* QUANTITY BOX */
.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    height: 45px;
}

/* INPUT */
.quantity input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
}

/* PLUS MINUS BUTTON */
.quantity button,
.quantity .plus,
.quantity .minus {
    width: 40px;
    height: 45px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

/* ADD TO CART BUTTON */
/*.single_add_to_cart_button {*/
/*    background: linear-gradient(135deg, #5a8dee, #3b6eea);*/
/*    color: #fff;*/
/*    border: none;*/
/*    padding: 12px 28px;*/
/*    border-radius: 50px;*/

/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: 0.3s;*/
/*}*/

/*.single_add_to_cart_button:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 8px 20px rgba(0,0,0,0.1);*/
/*}*/

/* ================= */
/* MOBILE */
/* ================= */
@media (max-width: 768px) {
    
    .variations tr {
        align-items: center;
        margin: 0;
    }
    a.reset_variations {
    display: none;
}

    .variations select {
        width: 100%;
    }

    .single_add_to_cart_button {
        width: 100%;
        text-align: center;
    }
    .single_variation_wrap {
    width: 100%;
}

    .quantity {
        width: 100%;
        justify-content: space-between;
    }
}





.product_meta {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* COMMON STYLE */
.product_meta > span {
    font-size: 13px;
    color: #555;
    background: #f8f9fb;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* LABEL STYLE (SKU / Category text) */
.product_meta .sku_wrapper {
    background: #DEF1FF;
    color: #066299;
    font-weight: 500;
}

/* CATEGORY LINK */
.product_meta .posted_in a {
    color: #1C77C8;
    text-decoration: none;
    font-weight: 500;
}

.product_meta .posted_in a:hover {
    text-decoration: underline;
}

/* SKU VALUE */
.product_meta .sku {
    font-weight: 600;
    color: #222;
}

/* ================= */
/* MOBILE FIX */
/* ================= */
@media (max-width: 576px) {
    .product_meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .product_meta > span {
        width: 100%;
    }
}

/*related*/
/* SECTION */
.related.products {
    margin-top: 40px;
}

.related.products h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.product-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE SIZE FIX */
.product-thumb img {
    width: 100%;
    transition: 0.4s ease;
}

/* HOVER IMAGE SWITCH */
.secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .secondary-image {
    opacity: 1;
}

.product-card:hover .primary-image {
    opacity: 0;
}

/* CONTENT */
.product-content {
    padding: 12px 5px;
}

/* TITLE */
.product-title a {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* PRICE */
.product-price {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/* BUTTON */
.custom-loop-add-to-cart {
    margin-top: 10px;
}
/* 
.custom-loop-add-to-cart .button {
    display: block;
    text-align: center;
    background: #1C77C8;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.custom-loop-add-to-cart .button:hover {
    background: #066299;
}
*/
/* ===================== */
/* RESPONSIVE */
/* ===================== */

/* TABLET */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

/* MOBILE */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/*404*/
/* MAIN SECTION */
.error-page {
    height: 100vh;
    background: url('../images/404.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 15px;
}

/* DARK OVERLAY */
.error-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 13, 0.75);
    z-index: 1;
}

/* CONTENT */
.error-page .error-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* BIG 404 TEXT */
.error-page .error-text h1 {
    font-size: 180px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    margin: 0;
    line-height: 1;
}

/* HEADING */
.error-page .error-text h2 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0;
}

/* DESCRIPTION */
.error-page .error-text p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
}

/* BUTTON */
.error-page .view-more-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4f7cff, #6ea8ff);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.error-page .view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 124, 255, 0.4);
}

/* -------------------- */
/* 📱 RESPONSIVE DESIGN */
/* -------------------- */

/* Large Tablets */
@media (max-width: 992px) {
    .error-page .error-text h1 {
        font-size: 130px;
    }

    .error-page .error-text h2 {
        font-size: 32px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .error-page {
        padding: 40px 15px;
        height: 400px;
    }

    .error-page .error-text h1 {
        font-size: 100px;
    }

    .error-page .error-text h2 {
        font-size: 26px;
    }

    .error-page .error-text p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .error-page .error-text h1 {
        font-size: 70px;
    }

    .error-page .error-text h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .error-page .error-text p {
        font-size: 14px;
    }

    .error-page .view-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
.edu-card-body {
    padding: 40px;
}

a.learn-btn {
    background: #fff;
    padding: 10px 23px;
    margin-top: -4px;
    border-radius: 20px;
    display: inline-block;
}

/* UNDO LINK */
.woocommerce-message .restore-item {
    color: #000;
    font-weight: 600;
    margin-left: 8px;
    text-decoration: underline;
}

/* EMPTY CART BOX */
.cart-empty {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
}

/* RETURN BUTTON WRAPPER */
.return-to-shop {
    margin-top: 25px;
}

/* BUTTON STYLE */
.return-to-shop .button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4f7cff, #6ea8ff);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.return-to-shop .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 124, 255, 0.4);
}

/* REMOVE DEFAULT WC INFO BOX STYLE */
.woocommerce-info {
    background: none;
    border: none;
    padding: 0;
}

.page-id-8 .woocommerce {
    padding: 50px;
    text-align: center;
}
/* Tablet */
@media (max-width: 768px) {
  

    .cart-empty {
        font-size: 18px;
    }

    .woocommerce-message {
        font-size: 14px;
        padding: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .cart-empty {
        font-size: 16px;
    }

    .return-to-shop .button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/*thankyou*/
/* SUCCESS MESSAGE */
.woocommerce-notice--success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
}

/* ORDER OVERVIEW BOX */
.woocommerce-order-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: #f7f9fc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    list-style: none;
}

.woocommerce-order-overview li {
    flex: 1 1 45%;
    font-size: 14px;
    color: #555;
}

.woocommerce-order-overview strong {
    display: block;
    font-size: 16px;
    color: #000;
    margin-top: 5px;
}

/* ORDER TABLE */
.woocommerce-order-details {
    margin-top: 30px;
}

.woocommerce-order-details__title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* TABLE STYLE */
.shop_table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

.shop_table thead {
    background: #f1f3f7;
}

.shop_table th,
.shop_table td {
    padding: 0 20px;
    text-align: left;
    font-size: 14px;
}

.shop_table tbody tr {
    border-bottom: 1px solid #eee;
}

.shop_table tfoot th {
    font-weight: 600;
}

.shop_table tfoot td {
    font-weight: 600;
}

/* PRODUCT NAME LINK */
.product-name a {
    color: #4f7cff;
    text-decoration: none;
}

.product-name a:hover {
    text-decoration: underline;
}

/* CUSTOMER DETAILS */
.woocommerce-customer-details {
    margin-top: 40px;
    padding: 25px;
    background: #f9fafc;
    border-radius: 12px;
}

.woocommerce-column__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.woocommerce-customer-details address {
    font-style: normal;
    line-height: 1.6;
    color: #444;
}

/* PHONE & EMAIL */
.woocommerce-customer-details p {
    margin: 5px 0;
}
/* MAIN WRAPPER */
.woocommerce-order-received .woocommerce-order {
    width: 70%;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
/* -------------------- */
/* 📱 RESPONSIVE DESIGN */
/* -------------------- */

@media (max-width: 1480px) {
.woocommerce-order-received .woocommerce-order {
    width: 80%;
    
}
    
}
/* Tablet */
@media (max-width: 768px) {
        .woocommerce-order-received .woocommerce-order {
        width: 100%;
        margin: 0;
        padding: 15px;
    }

    
    .woocommerce-order {
        padding: 25px;
        margin: 30px 15px;
    }

    .woocommerce-order-overview li {
        flex: 1 1 100%;
    }

    .shop_table th,
    .shop_table td {
        padding: 10px;
        font-size: 13px;
    }
    .shop_table .product-name {
    width: 60%!important;
}
.woocommerce-order-overview strong {
    font-size: 14px;
    
}
    .woocommerce-notice--success {
        font-size: 14px;
        padding: 15px 10px;
        border-radius: 6px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .woocommerce-order {
        padding: 20px;
    }

  

    .woocommerce-order-details__title {
        font-size: 18px;
    }

    .woocommerce-column__title {
        font-size: 16px;
    }
}
/* ALL INPUT FIELDS */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    color: #555;
    background: #fff;
    width: 100%;
    transition: 0.3s;
}

/* TEXTAREA HEIGHT FIX */
.woocommerce form .form-row textarea {
    height: auto;
    min-height: 100px;
}

/* SELECT (STATE, COUNTRY etc.) */
.woocommerce form .form-row select {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    color: #555;
    width: 100%;
    background: #fff;
}

/* SELECT2 (COUNTRY FIELD SAME LOOK) */
.select2-container .select2-selection--single {
    height: 50px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    display: flex;
    align-items: center;
}

/* TEXT ALIGN FIX */
.select2-selection__rendered {
    line-height: normal !important;
    font-size: 14px;
    color: #555 !important;
}
div#upload_schoolid, #upload_aadhar {
    width: 100%!important;
}

/* HOVER + FOCUS SAME EFFECT */
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #007bff !important;
    box-shadow: 0 0 5px rgba(0,123,255,0.2);
    outline: none;
}
/*Password*/
/* Password field wrapper */
.woocommerce form .form-row {
    position: relative;
}

/* Eye icon */
.custom-toggle-password {
    position: absolute;
    right: 15px;
    top: 58%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #666;
    user-select: none;
}

/* Hover effect */
.custom-toggle-password:hover {
    color: #000;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    span.woocommerce-Price-amount.amount {
    font-size: 16px;
}
    .actions-inner {
        width: 100%;
    }
    .wc-proceed-to-checkout .blue {
    padding: 16px 38px;
    font-size: 16px;
    display: inline-block;
    margin-top: 15px;
}
    .custom-cart-table .name {
        width: 100%!important;
    }
    .custom-cart-table .name a {
    font-size: 16px;
        
    }
    td.product-subtotal {
    color: #0f77f4;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
}
    .checkout-section .checkout-right {
    width: 100%;
}
.select2-selection__rendered{
    padding: 0!important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 30%;
}
table.shop_table tr {
    font-size: 14px;
    line-height: 24px;
    padding: 6px 0;
    
}
.checkout-section {
    padding: 0px 00px;
    
}
    .woocommerce form .form-row input.input-text,
    .woocommerce form .form-row select,
    .select2-container .select2-selection--single {
        height: 45px;
        font-size: 13px;
    }
}
/*Dashboard*/
/* ===== Parent Wrapper ===== */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* ===== Sidebar Navigation ===== */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 280px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

/* Hover */
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: #f5f7fa;
    color: #0073e6;
}

/* Active Menu */
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    background: linear-gradient(135deg, #0073e6, #00c6ff);
    color: #fff;
}

/* ===== Content Area ===== */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Headings */
.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Paragraph */
.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


/* ===== Buttons ===== */
.woocommerce-account button,
.woocommerce-account .button {
    background: linear-gradient(135deg, #0073e6, #00c6ff);
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.woocommerce-account button:hover,
.woocommerce-account .button:hover {
    opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
    }
}