.hero-slide {
    height: 92vh;
    min-height: 600px;

    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 20%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

body {
    padding-top: 80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 3rem;
    height: 3rem;
}

.sectors-section {
    position: relative;
    padding: 120px 0;
    color: white;
    overflow: hidden;
}

.sectors-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 110, 253, 1),
        rgba(45, 143, 240, 0.65)
    );
}

.sectors-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%);
    pointer-events: none;
}

.sectors-section .container {
    position: relative;
    z-index: 2;
}

.sector-boxes .col {
    padding: 10px;
}

.sector-item {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);

    color: #0d1b2a;

    padding: 55px 25px;
    min-height: 240px;
    height: 100%;

    border-radius: 16px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);

    transition: all 0.35s ease;

    position: relative;
    overflow: hidden;

    cursor: pointer;
}

.sector-icon {
    font-size: 30px;
    color: #0d6efd;
    margin-bottom: 12px;
    display: block;
    transition: 0.3s ease;
}

.sector-item .number {
    font-size: 52px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 12px;
    line-height: 1;
}

.sector-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.sector-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.sector-item:hover .sector-icon {
    transform: scale(1.15);
}

.sector-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(13,110,253,0.15),
        transparent 60%
    );
    opacity: 0;
    transition: 0.3s;
}

.sector-item:hover::after {
    opacity: 1;
}
.categories-section {
    background: #f3f5f7;
}

.category-card {
    display: block;
    height: 100%;
}

.category-card .card-inner {
    background: #ffffff;
    height: 100%;

    border-radius: 14px;
    border: 1px solid #e5e7eb;

    overflow: hidden;

    transition: all 0.35s ease;
}

.image-wrap {
    width: 100%;
    height: 200px;
    background: #f1f3f5;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-content {
    padding: 25px;
}

.category-card h5 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.read-more {
    font-size: 14px;
    font-weight: 500;
    color: #0d6efd;
    transition: 0.3s;
}

.category-card:hover .card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #d0d7e2;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover .read-more {
    transform: translateX(6px);
}

.category-card:hover .card-inner {
    background: #fcfcfd;
}

.category-card .card-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #0d6efd;
    transition: 0.3s;
}

.category-card:hover .card-inner::before {
    width: 100%;
}

.why-us-section {
    background: #f3f5f7;
}

.section-title {
    color: #0d6efd;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.6;
}

.feature-card {
    background: #ffffff;
    padding: 35px 25px;
    height: 100%;

    border-radius: 14px;
    border: 1px solid #e5e7eb;

    transition: all 0.35s ease;
}

.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 26px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #6c757d;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: transparent;
}

.footer {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.footer-logo {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-item i {
    color: #60a5fa;
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #0d6efd;
}

.footer-divider {
    border-color: rgba(255,255,255,0.3);
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 14px;
    color: #94a3b8;
}

.footer-dev {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.footer-dev:hover {
    color: #fff;
}

.custom-navbar {
    background: #ebf2f8;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.navbar-logo {
    height: 65px;
    object-fit: contain;

    filter: drop-shadow(0 0 2px rgba(0,0,0,0.6));
}

.nav-custom-link {
    font-weight: 500;
    color: #1a1a1a;
    transition: 0.3s;
}

.nav-custom-link:hover {
    color: #0d6efd;
}

.custom-dropdown {
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.custom-dropdown .dropdown-item {
    padding: 10px 15px;
    transition: 0.2s;
}

.custom-dropdown .dropdown-item:hover {
    background: #f3f5f7;
    color: #0d6efd;
}

.cart-container {
    position: relative;
}

.cart-trigger {
    position: relative;
    cursor: pointer;
}

.cart-icon {
    font-size: 32px;
    color: #1a1a1a;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #0d6efd;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

.cart-dropdown {
    position: absolute;
    top: 120%;
    right: 0;

    width: 340px;
    max-width: 90vw;

    background: #ffffff;
    color: #1a1a1a;

    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);

    padding: 15px;

    display: none;
    flex-direction: column;

    z-index: 1000;
}

.cart-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;

    max-height: 200px;
    overflow-y: auto;
}

.cart-dropdown li {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 8px 0;
    border-bottom: 1px solid #eee;

    font-size: 14px;
}

.cart-total {
    font-weight: 600;
    margin: 10px 0;
    color: #000;
}

.cart-container.active .cart-dropdown {
    display: flex;
}

#checkout-button {
    width: 100%;
    background: #0d6efd;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;

    transition: 0.3s;
}

#checkout-button:hover {
    background: #0b5ed7;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 6px 12px;
    border-radius: 50px;

    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-pill ion-icon {
    color: #0d6efd;
    font-size: 18px;
}

.contact-pill .phone {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-pill .email {
    font-size: 12px;
    color: #6c757d;
}

.custom-dropdown {
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 12px;

    width: 280px;
}

.dropdown-flex {
    display: flex;
    flex-direction: column;
    gap: 6px;

    width: 100%;
}

.dropdown-category-item {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    box-sizing: border-box; 

    padding: 10px 14px;

    background: #f8f9fb;
    border-radius: 8px;

    transition: 0.25s;

    text-decoration: none;
}

.dropdown-category-item:hover {
    background: #eaf2ff;
}

.dropdown-img {
    width: 32px;
    height: 32px;
    min-width: 32px;

    background: #eef1f5;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dropdown-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dropdown-text {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.dropdown-category-item:hover .dropdown-text {
    color: #0d6efd;
}
.cart-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.cart-actions button {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
}

#view-cart-button {
    background: #f1f1f1;
    color: #333;
}

#checkout-button {
    background: #0d6efd;
    color: white;
}

.mega-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;

  width: 520px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  display: none;
  padding: 20px;

  z-index: 9999;
}

.mega-dropdown:hover .mega-menu {
  display: flex;
}

.mega-column {
  flex: 1;
}

.mega-column h6 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li {
  padding: 6px 0;
  font-size: 14px;
  cursor: pointer;
}

.mega-column ul li:hover {
  color: #0d6efd;
}

.mega-divider {
  width: 1px;
  background: #e5e5e5;
  margin: 0 15px;
}

.nav-custom-link {
  cursor: pointer;
}


@media (max-width: 768px) {
    main{
        margin-top: 50px;
    }
    .content-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        max-width: 100%;
    }

    .content-area > * {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .card-body {
        width: 100%;
        border-radius: 6px;
        padding: 15px;
    }

    .right-section .contact-phone {
        font-size: 16px;
    }
    .right-section .socials ion-icon[name="mail-outline"] {
    font-size: 20px; 
    padding-top: 4px;
    padding-bottom: 6px;
    display: inline-block;
    vertical-align: middle;
    }
}