@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html,
body {
    margin: 0;
    overflow-x: hidden !important;
    box-sizing: border-box;
}

/* .font-cinzel {
    font-family: "Cinzel Decorative", serif;
} */


/* loader css */
#loader {
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 999999;
    overflow: hidden;
}

#loader .logo {
    position: relative;
    width: 200px;
    height: 200px;
}

/* Animation keyframes */
@keyframes slideUp {
    0% {
        transform: translateX(-1000px);
        opacity: 0;
    }

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

#loader .blue {
    animation: slideUp 1s ease-out forwards;
}

/* Outer G shape (rotated square with open top) */
#loader .G {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 20px solid #0023a0;
    border-top: none;
    transform: rotate(45deg);
    top: 44px;
    left: 3px;
}

.G::before {
    content: "";
    width: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 25px solid #0023a0;
    top: -19px;
    left: -26px;
    position: absolute;
    transform: rotate(155deg);
}

/* Extended blue line attached to G */
#loader .blue-line {
    position: absolute;
    width: 120px;
    height: 20px;
    background-color: #0023a0;
    top: 100px;
    left: 60px;
    /* Aligned to connect with the inner part of G */
}

.blue-line::before {
    content: "";
    width: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 22px solid #0023a0;
    top: 4px;
    left: -4px;
    position: absolute;
    transform: rotate(-91deg);
}

.blue-line::after {
    content: "";
    width: 0;
    border-left: 23px solid transparent;
    border-right: 28px solid transparent;
    border-top: 25px solid #0023a0;
    top: 0px;
    left: 94px;
    position: absolute;
    transform: rotate(359deg);
}

/* Red stripes */
#loader .lines {
    position: absolute;
    top: 5px;
    right: 0px;
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 10px;
}

.line1,
.line2,
.line3 {
    height: 22px;
    background-color: red;
    opacity: 0;
}

#loader .line1 {
    animation: growLine 0.6s ease-out forwards;
    animation-delay: 0.6s;
    width: 105px;
    border: 3px solid #ffffff;
}

#loader .line2 {
    animation: growLine 0.6s ease-out forwards;
    animation-delay: 0.8s;
    width: 150px;
    border: 3px solid #ffffff;
}

/* .line2::before {
    content: "";
    width: 0;
    border-left: 23px solid transparent;
    border-right: 28px solid transparent;
    border-top: 25px solid #0023a0;
    top: 0px;
    left: 94px;
    position: absolute;
    transform: rotate(359deg);
} */

#loader .line3 {
    animation: growLine 0.6s ease-out forwards;
    animation-delay: 1s;
    width: 105px;
    border: 3px solid #ffffff;
}

@keyframes growLine {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* swiper - slider */
.slider-carousel {
    background-color: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.slider-carousel .swiper-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 0;
}

.slider-carousel .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 80%;
    max-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s;
}

.slider-carousel .swiper-slide:hover {
    transform: scale(1.05);
    z-index: 2;
}

.slider-carousel .slide-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0));
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.slider-carousel .slide-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.slider-carousel .slide-description {
    font-size: 14px;
    line-height: 1.3;
}

.slider-carousel .swiper-button-next,
.slider-carousel .swiper-button-prev {
    color: white;
}

.slider-carousel .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.slider-carousel .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .slider-carousel .swiper-slide {
        height: 300px;
    }

    .slider-carousel .slide-title {
        font-size: 18px;
    }

    .slider-carousel .slide-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .slider-carousel .swiper-slide {
        height: 250px;
        max-width: 90%;
    }

    .slider-carousel .slide-title {
        font-size: 16px;
    }

    .slider-carousel .slide-description {
        font-size: 11px;
    }
}

/* product code */
.product-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 15px !important;
}

.product-card h6 {
    font-weight: 600;
    margin-top: 12px;
}

.product-card p {
    color: #6c757d;
    /* font-size: 0.95rem; */
}

/* testimonials */
/* body {
    overflow-x: hidden;
}

#testimonials {
    background-color: #f3f4f6;
    height: 80vh;
}

@media screen and (max-width: 479px) {
    #testimonials {
        height: 100%;
    }
}

.section-title {
    font-weight: 700;
}

.testimonial-badge {
    background: #e0f2fe;
    color: #0284c7;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.2);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    transform: rotate(var(--rotation));
    transition: transform 0.3s;
    margin: 30px 0;
}

.testimonial-card img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: #cbd5e1;
    opacity: 0.5;
}


.rotate-left-2 {
    --rotation: -4deg;
}

.rotate-right-2 {
    --rotation: 4deg;
}

.rotate-left-1 {
    --rotation: -4deg;
}

.rotate-right-1 {
    --rotation: 4deg;
} */


/* popup modal */

/* Popup overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Popup box */
.popup-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-box h2 {
    margin-bottom: 20px;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.popup-box button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.popup-box .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #555;
    cursor: pointer;
}

/* Active class */
.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}


/* marquee code  */

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    /* border: 2px solid #0d6efd; */
    /* background-color: #e7f1ff; */
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 35s linear infinite;
    font-weight: 700;
    font-size: 1.8rem;
    color: #0d6efd;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Responsive font sizing for smaller devices */
@media (max-width: 600px) {
    .marquee-text {
        font-size: 1.2rem;
    }

    .marquee-wrapper {
        max-width: 100%;
    }
}


/* Counter CSS */
/* Base styles */
.counter-section {
    margin: 30px 0 0;
    /* background-color: #f1f3f5; */
    padding: 2rem;
}

.counter-container {
    height: auto;
    min-height: 130px;
    line-height: normal;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 1.5rem;
    user-select: none;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.counter-container:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3d65a5;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.2rem;
}

.counter-plus {
    font-size: 2rem;
    color: #000000;
    font-weight: 900;
    margin-top: -0.4rem;
}

.counter-k {
    color: #000000;
    font-size: 2rem;
    font-weight: 900;
    margin-top: -0.3rem;
}

.counter-text {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    font-weight: 900;
    color: #495057;
    letter-spacing: 0.06em;
    min-height: 1.6em;
}

/* Tablet */
@media (max-width: 991px) {
    .counter-section {
        padding: 1.5rem;
    }
    
    .counter-container {
        min-height: 120px;
        padding: 1.25rem;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-plus, .counter-k {
        font-size: 1.8rem;
    }
    
    .counter-text {
        font-size: 1rem;
        margin-top: 0.4rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .counter-section {
        padding: 1rem;
    }
    
    .counter-container {
        min-height: 110px;
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-plus, .counter-k {
        font-size: 1.4rem;
        margin-top: -0.3rem;
    }
    
    .counter-text {
        font-size: 0.9rem;
        margin-top: 0.3rem;
        min-height: 1.4em;
    }
    
    .row.g-4 {
        --bs-gutter-y: 0.75rem;
    }
}



.home-title {
    padding-bottom: 20px;
    font-size: 3rem; 
    font-weight: 700;
    letter-spacing: 1px;
}

/* Modern Awards Section Styles */
.awards-section-modern {
  /* background: #fcf9f4; */
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.awards-modern-container {
  max-width: 1200px;
  margin: 0 auto;
}

.awards-modern-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.awards-modern-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 40px;
  min-width: 320px;
  margin-bottom: 32px;
  position: sticky;
  height: fit-content;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.awards-badge {
  display: inline-flex;
  align-items: center;
  background: #f1f3f5;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(191,161,74,0.08);
  transition: box-shadow 0.3s;
}

.awards-badge-icon {
  color: #6c757d    ;
  font-size: 2rem;
  margin-right: 18px;
  display: flex;
  align-items: center;
}

.awards-badge-text {
  font-size: 1.2rem;
  color: #6c757d;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* .awards-modern-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0;
  line-height: 1.2;
  font-family: 'Gilroy', sans-serif;
} */

.awards-modern-right {
  flex: 1 1 0%;
  min-width: 320px;
  position: relative;
}

.awards-modern-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.awards-modern-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ece7df;
  padding-bottom: 32px;
  margin-bottom: 0;
  gap: 32px;
}

.awards-modern-year {
  display: block;
  font-size: 1.6rem;
  color: #6c757d;
  font-weight: 700;
  margin-bottom: 2px;
  margin-right: 0;
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
}

.awards-modern-content {
  flex: 1;
}

.awards-modern-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.awards-modern-name {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  font-family: 'Gilroy', sans-serif;
}

.awards-modern-logo {
  margin-left: 0;
  margin-right: 24px;
  color: #6c757d;
  font-size: 4rem;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.awards-modern-desc {
  font-size: 1.6rem;
  color: #444;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .awards-modern-row {
    flex-direction: column;
  }
  .awards-modern-left {
    position: relative;
    top: 0;
    padding-right: 0;
    margin-bottom: 32px;
    transform: none !important; /* Prevent scrolling on mobile */
  }
}

@media (max-width: 600px) {
  .awards-section-modern {
    padding: 40px 0 30px 0;
  }
  .awards-modern-title {
    font-size: 1.3rem;
  }
  .awards-modern-list {
    gap: 24px;
  }
  .awards-modern-item {
    flex-direction: row;
    gap: 16px;
  }
  .awards-modern-year {
    font-size: 1rem;
    margin-right: 16px;
  }
  .awards-modern-name {
    font-size: 1.3rem;
  }
  .awards-modern-logo {
    font-size: 2.2rem;
    margin-right: 12px;
  }
  .awards-modern-desc {
    font-size: 1.2rem;
  }
}

/* testimonials second */
.section-heading {
    text-align: center;
    margin: 50px auto 40px auto;
    max-width: 700px;
}

.testimonial-card {
    border-radius: 12px;
    padding: 20px;
    margin: 10px;
    min-width: 300px;
    flex: 0 0 auto;
    width: 300px;
    border: 1px solid #292929;
}

.testimonial-card:nth-child(odd) {
    background-color: #FAFAFA;
}

.testimonial-card:nth-child(even) {
    background-color: #E9ECF2;
}

.testimonial-card img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.star-rating {

    color: #000;
    margin-bottom: 8px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
}

.marquee-track.reverse {
    animation: scroll-right 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

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

/* FAQs CSS */
.faq-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 9%);
}

.faq-left-side {
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 1;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.faq-title {
    font-size: 5rem;
    line-height: 4.9rem;
    font-weight: 400;
}

.faq-subtitle {
    font-size: 3.5rem;
    line-height: 3.5rem;
    font-weight: 200;
}

.faq-container h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.accordion-title {
    cursor: pointer;
    font-weight: 600;
    color: #000 !important;
    font-size: 18px;
    position: relative;
    padding-right: 25px;
    transition: color 0.3s ease;
}

.accordion-title::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-title.active::after {
    content: '−';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 16px;
    color: #555;
}

.accordion-content.open {
    margin-top: 15px;
}

@media (max-width: 991px) {
    .faq-left-side {
        position: relative;
        top: 0;
        transform: none !important;
    }
}

/* history css */
#history {
    background: #f1f3f5;
    overflow: hidden;
    padding: 50px 0;
}

#history .section-title p {
    margin: 0 auto;
    max-width: 1100px;
}

.historySwiper {
    position: relative;
    padding: 20px 0;
    overflow: visible;
}

.historySwiper .swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.historySwiper .swiper-slide {
    text-align: start;
    font-size: 18px;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px;
    height: auto;
}

.timeline-card,
.timeline-card-active {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card:hover,
.timeline-card-active:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-card h2,
.timeline-card-active h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.timeline-card h4,
.timeline-card-active h4 {
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
}

.timeline-card p,
.timeline-card-active p {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

.timeline-card-active {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
}

.timeline-card-active h2,
.timeline-card-active h4 {
    color: #fff;
}

.timeline-card-active p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .historySwiper .swiper-slide {
        padding: 10px;
    }
    
    .timeline-card,
    .timeline-card-active {
        min-height: 215px;
        padding: 20px;
    }
    
    .timeline-card h2,
    .timeline-card-active h2 {
        font-size: 28px;
    }
    
    .timeline-card h4,
    .timeline-card-active h4 {
        font-size: 18px;
    }
    
    .timeline-card p,
    .timeline-card-active p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .historySwiper .swiper-slide {
        padding: 8px;
    }
    
    .timeline-card,
    .timeline-card-active {
        min-height: 215px;
        padding: 15px;
    }
    
    .timeline-card h2,
    .timeline-card-active h2 {
        font-size: 24px;
    }
    
    .timeline-card h4,
    .timeline-card-active h4 {
        font-size: 16px;
    }
    
    .timeline-card p,
    .timeline-card-active p {
        font-size: 14px;
    }
}





/* Footer Map Styles */
.footer-map-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-map {
    width: 100%;
    height: 100%;
    border: none;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .footer-map-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .footer-map-container {
        height: 150px;
    }
}

/* Quick Links Hover Effects */
.hba-newsletter .text a {
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.hba-newsletter .text a:hover {
    color: #0d6efd !important;
    transform: translateX(5px);
}

.hba-newsletter .text a:hover .icon i {
    color: #0d6efd;
}

.hba-newsletter .text a .icon i {
    transition: all 0.3s ease;
    color: #000;
}

/* Heading Styles */
h1.font-cinzel {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
}

h2.font-cinzel {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
}

h3.font-cinzel {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.4;
}

h4.font-cinzel {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
}

h5.font-cinzel {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

h6.font-cinzel {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    h1.font-cinzel { font-size: 42px; }
    h2.font-cinzel { font-size: 36px; }
    h3.font-cinzel { font-size: 30px; }
    h4.font-cinzel { font-size: 26px; }
    h5.font-cinzel { font-size: 22px; }
    h6.font-cinzel { font-size: 18px; }
}

@media (max-width: 480px) {
    h1.font-cinzel { font-size: 36px; }
    h2.font-cinzel { font-size: 30px; }
    h3.font-cinzel { font-size: 26px; }
    h4.font-cinzel { font-size: 22px; }
    h5.font-cinzel { font-size: 20px; }
    h6.font-cinzel { font-size: 16px; }
}

.hero-area {
    background-color: #f1f3f5;
    padding: 60px 0;
    position: relative;
    /* max-width: 1110px; */
    margin: 0 auto;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.hero-area .container {
    max-width: 1375px;
    padding: 0 15px;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.hero-content .title {
    line-height: normal;
    font-size: 7rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

/* .hero-content .text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
} */

.who-sidebar {
    background: #f1f3f5;
    min-width: 80px;
    max-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.sidebar-text-wrapper {
    background-color: #ffff;
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-rotated-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    padding: 10px 0;
}

.sidebar-year {
    color: #3d65a5;
    font-size: inherit;
    font-weight: 900;
    display: inline;
}

@media (max-width: 991px) {
    .hero-area {
        padding: 40px 0;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-content .title {
        font-size: 2rem;
    }
    
    .hero-content .text {
        font-size: 1rem;
    }
    
    .hero-content .d-flex {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-linkedin-btn {
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-area {
        padding: 30px 0;
    }
    
    .hero-content {
        padding: 15px 0;
    }
    
    .hero-content .title {
        font-size: 2.2rem;
    }
    
    .hero-content .text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .row.gap-3 {
        flex-direction: column;
    }
    
    .col-md-6 {
        padding-right: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-content {
        padding: 0px 20px;
        text-align: center;
        order: 2;
    }
    
    .col-md-6:first-child {
        order: 1;
    }
    
    .social-linkedin-btn {
        width: auto;
        min-width: 160px;
        margin: 0 auto 10px auto !important;
    }
}

@media (max-width: 576px) {
    .hero-area {
        padding: 20px 0;
    }
    
    .hero-content .title {
        font-size: 2rem;
    }
    
    .hero-content .text {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .hero-content .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .social-linkedin-btn {
        width: auto;
        min-width: 140px;
        max-width: 180px;
        margin: 0 auto 10px auto !important;
    }
}

.social-linkedin-btn {
    border-radius: 100px;
    transition: all 0.3s ease;
    border: none;
    color: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
    height: 60px;
    padding: 0 40px;
    background: linear-gradient(90deg, #004dcd 0%, #d62b34 100%);
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-linkedin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-linkedin-btn:hover::before {
    left: 100%;
}

.social-linkedin-btn:hover {
    background: linear-gradient(90deg, #d62b34 0%, #004dcd 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-linkedin-btn .text {
    margin-left: 8px;
    opacity: 1;
    transition: opacity 0.3s;
    color: #fff;
    position: relative;
    z-index: 1;
}

.social-linkedin-btn i {
    font-size: 22px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-content .d-flex {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-linkedin-btn {
        width: auto;
        min-width: 180px;
        margin: 0 !important;
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
    }
    
    .social-linkedin-btn i {
        font-size: 18px;
    }
    
    .social-linkedin-btn .text {
        margin-left: 4px;
    }
}

@media (max-width: 576px) {
    .hero-content .d-flex {
        gap: 8px;
    }

    .social-linkedin-btn {
        height: 45px;
        padding: 0 15px;
        font-size: 13px;
        min-width: 160px;
    }
    
    .social-linkedin-btn i {
        font-size: 16px;
    }
    
    .social-linkedin-btn .text {
        margin-left: 3px;
    }
}

.who-btn-gap {
  gap: 2.5rem !important; /* or try 3rem for even more space */
}

/* --- Unique Modern Product Card Styles --- */
.glass-card {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: visible;
  transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.35s;
}
.glass-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 16px 40px rgba(31, 38, 135, 0.18);
  z-index: 2;
}
.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #e0e0e0 0%, #bdbdbd 100%);
  color: #333;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  letter-spacing: 1px;
  z-index: 3;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0.92;
}
.product-badge.best {
  background: linear-gradient(90deg, #ffd700 0%, #ffb347 100%);
  color: #222;
}
.product-badge.new {
  background: linear-gradient(90deg, #00baff 0%, #004dcd 100%);
  color: #fff;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  border-radius: 22px;
  z-index: 4;
}
.glass-card:hover .product-overlay,
.glass-card:focus-within .product-overlay {
  opacity: 1;
  pointer-events: auto;
}
.view-details-btn {
  background: linear-gradient(90deg, #004dcd 0%, #00baff 100%);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  outline: none;
  letter-spacing: 1px;
}
.view-details-btn:hover, .view-details-btn:focus {
  background: linear-gradient(90deg, #00baff 0%, #004dcd 100%);
  transform: scale(1.07);
}
@media (max-width: 600px) {
  .glass-card {
    border-radius: 14px;
  }
  .product-badge {
    font-size: 0.8rem;
    padding: 4px 12px;
    top: 10px;
    left: 10px;
  }
  .view-details-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}


/* footer */
footer {
    background-color: #f1f3f5;
    color: #2c3e50;
    padding: 80px 0 0;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0.95);
    margin-bottom: 20px;
}

.footer-description {
    color: #5d6d7e;
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 16px;
}

.social-link:hover {
    background: linear-gradient(90deg, #2641a6 0%, #d42c33 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(61,101,165,0.2);
}

.footer-heading {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #3d65a5;
}

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #5d6d7e;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #3d65a5;
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    box-shadow: none;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item p {
    color: #5d6d7e;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.contact-item a {
    color: #5d6d7e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.contact-item i {
    color: #3d65a5;
    font-size: 20px;
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

@media (max-width: 767px) {
    .contact-item p,
    .contact-item a {
        font-size: 15px;
    }
    
    .contact-item i {
        font-size: 18px;
    }
}

.contact-item a:hover {
    color: #3d65a5;
}

@media (max-width: 991px) {
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .contact-item {
        padding: 0;
    }
}

.footer-bottom {
    background-color: #fff;
    padding: 20px 0;
    margin-top: 60px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}

.copyright, .developer {
    color: #5d6d7e;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}

.developer {
    text-align: right;
}

.developer-link {
    color: #3d65a5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.developer-link:hover {
    color: #2641a6;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer .row.g-4 {
        display: flex;
        flex-direction: column;
    }

    .footer .col-lg-4 {
        order: -1;
        margin-bottom: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-description {
        margin: 1rem auto;
        max-width: 100% !important;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-heading {
        text-align: left;
        margin-top: 1.5rem;
    }

    .footer-links {
        text-align: left;
    }

    .footer-contact {
        text-align: left;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding: 1.5rem 0;
        text-align: center;
    }

    .footer-bottom .row {
        flex-direction: column;
        text-align: center !important;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .footer-bottom .col-6 {
        width: 100%;
        text-align: center !important;
    }

    .copyright, .developer {
        margin: 0;
        text-align: center !important;
        width: 100%;
    }

    .developer-link {
        display: inline-block;
        text-align: center;
    }
}

/* Social Media Buttons */
.fba-social .social {
    padding: 0;
    list-style: none;
}

.fba-social .social li {
    display: inline-block;
    margin-right: 16px;
}

.fba-social .social li:last-child {
    margin-right: 0;
}

.fba-social .social li a {
    border-radius: 100px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    border: 1px solid #bed9ff;
    color: #7e8ca2;
    position: relative;
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 60px;
    height: 60px;
    width: 60px;
}

.fba-social .social li a .text {
    position: absolute;
    letter-spacing: 0;
    left: 0;
    opacity: 0;
    font-family: "Gilroy";
}

.fba-social .social li a:hover {
    border-color: transparent;
    color: #ffffff;
    width: auto;
    padding: 0 40px;
    background-image: -webkit-gradient(linear, left top, right top, from(#2641a6), to(#d42c33));
    background-image: linear-gradient(90deg, #2641a6 0%, #d42c33 100%);
    box-shadow: 0px 10px 20px 0px rgba(59, 132, 241, 0.3);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(59, 132, 241, 0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(59, 132, 241, 0.3);
    -o-box-shadow: 0px 10px 20px 0px rgba(59, 132, 241, 0.3);
}

.fba-social .social li a:hover .text {
    position: relative;
    margin-left: 6px;
    opacity: 1;
}

.hero-area .col-md-6 img {
    width: 84%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-area .col-md-6 img {
        width: 100%;
    }
}

.hero-area .col-md-6.col-lg-5.d-flex.align-items-center {
    padding-left: 0;
    align-items: flex-start !important;
}

/* History Navigation Buttons */
.history-navigation {
    position: absolute;
    top: -50px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 20px;
}

.history-nav-btn {
    width: 60px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.history-nav-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.history-nav-btn i {
    color: #333;
    font-size: 18px;
}

@media (max-width: 768px) {
    .history-navigation {
        top: -32px;
        padding: 15px;
    }
    
    .history-nav-btn {
        width: 50px;
        height: 35px;
    }
    
    .history-nav-btn i {
        font-size: 16px;
    }
}


/*** Service Start ***/

.service .service-item .service-img img {
    transition: 0.5s;
}

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

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}


.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

/* service-content */
.service .service-item .service-content {
    transition: 0.5s;
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: #3d65a5;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
    transform-origin: bottom;
}

.service-content-inner {
    position: relative;
    z-index: 2;
}

.service-content-inner h4,
.service-content-inner p {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-item:hover .service-content-inner h4,
.service-item:hover .service-content-inner p {
    color: #fff;
    transition-delay: 0.2s;
}

.service-content .btn-primary {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.service-item:hover .service-content .btn-primary {
    background: #fff;
    color: #3d65a5;
    transition-delay: 0.3s;
}

/* .service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
} */


/* Product Section Styles */
.service {
    background: #f1f3f5;
}

.service-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: #fff;
}

.service-content-inner h4 {
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3; 
    color: #3d65a5;
}

.service-content-inner h4 a {
    color: #3d65a5;
    
}

.service-item:hover .service-content-inner h4 {
    color: #fff;
}

.service-item:hover .service-content-inner p {
    color: #fff;
}

.service-content-inner p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

.service-content .btn-primary {
    background: #3d65a5;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(61, 101, 165, 0.2);
}

.service-content .btn-primary:hover {
    background: #2d4d85;
    transform: translateY(-2px);
}

.service-content .btn-primary::before {
   
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3d65a5, #2d4d85);
    z-index: -1;
    transition: all 0.3s ease;
    opacity: 0;
}

.service-content .btn-primary:hover::before {
    opacity: 1;
}

.service-item:hover .service-content .btn-primary {
    background: #fff;
    color: #3d65a5;
    /* box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); */
}

.service-item:hover .service-content .btn-primary:hover {
    background: #fff;
    color: #2d4d85;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .service-img {
        height: 220px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content-inner h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .service-img {
        height: 200px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-content-inner h4 {
        font-size: 
        2rem;
    }
}

/* Section Title Styles */
.text-primary {
    color: #007bff !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 2rem;
}

.display-4 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-img {
        height: 180px;
    }
    
    .service-content {
        padding: 1rem !important;
    }
    
    .service-content-inner h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .service-img {
        height: 160px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Add spacing between cards */
.row.g-4 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row.g-4 > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

/* Adjust card spacing for different screen sizes */
@media (max-width: 991px) {
    .row.g-4 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
}

@media (max-width: 767px) {
    .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

/* Product Section Title Styles */
.service .text-center .text-primary {
    display: inline-block;
    background: #000;
    color: #fff !important;
    padding: 6px 8px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .service .text-center .text-primary {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .service .text-center .display-4 {
        font-size: 2rem;
    }
    
    .service .text-center p {
        font-size: 1rem;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #5d6d7e;
    transition: all 0.3s ease;
}

.phone-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0.95);
}

.phone-link:hover {
    color: #3d65a5;
}

.phone-link:hover .phone-logo {
    filter: brightness(1);
}

@media (max-width: 767px) {
    .footer .row.g-4 {
        display: flex;
        flex-direction: column;
    }

    .footer .col-lg-4 {
        order: -1;
        margin-bottom: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-description {
        margin: 1rem auto;
        max-width: 100% !important;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-heading {
        text-align: left;
        margin-top: 1.5rem;
    }

    .footer-links {
        text-align: left;
    }

    .footer-contact {
        text-align: left;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .footer-bottom .row {
        flex-direction: column;
        text-align: center !important;
    }

    .footer-bottom .col-6 {
        width: 100%;
        text-align: center !important;
    }

    .copyright, .developer {
        margin: 5px 0;
    }

    .developer {
        text-align: center !important;
    }

    .phone-link {
        justify-content: flex-start;
    }
}

/* Mega menu columns: full height, equal width, fully clickable */


@media (max-width: 900px) {
    .dropdown-mega {
        flex-direction: column;
        height: auto;
        min-height: 300px;
        padding: 1rem;
    }
    .dropdown-mega .row {
        flex-direction: column;
        align-items: flex-start;
    }
    .dropdown-mega .col-md-2 {
        padding: 1rem 0;
    }
}

/* Show mega menu on hover */

/* Mobile dropdown styles */
.mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1000;
    padding: 8px 0;
}

.mobile-dropdown li {
    list-style: none;
}

.mobile-dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.mobile-dropdown li a:hover {
    background: #f8f9fa;
    color: #1a237e;
}

/* Hide mega menu on mobile */
@media (max-width: 960px) {
    .dropdown-mega {
        display: none !important;
    }
    
    .stellarnav.mobile .nav-item.position-static:hover .mobile-dropdown,
    .stellarnav.mobile .nav-item.position-static:focus .mobile-dropdown {
        display: block;
    }
}

/* Show mega menu only on desktop */
@media (min-width: 961px) {
    .mobile-dropdown {
        display: none !important;
    }
}

.dropdown-mega {
    display: none;
    position: fixed;
    left: 0;
    top: 100px; /* Adjust this value to match your navbar height */
    width: 100vw;
    height: 40vh;
    min-height: 320px;
    background: url('../img/product/megamenu.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    z-index: 2000;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    align-items: flex-start;
    justify-content: center;
    padding: 0 3rem;
    transition: opacity 0.2s;
}

.dropdown-mega .row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.dropdown-mega .col-md-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 2rem 0 2rem;
}

.dropdown-mega h6 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #fff;
}

.dropdown-mega a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 0.3rem;
    display: block;
    transition: color 0.2s;
}

.dropdown-mega a:hover {
    color: #b48a4a;
}

.dropdown-mega {
  padding-left: 5vw;
  padding-right: 5vw;
}

.dropdown-mega .row {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.dropdown-mega .col-md-2 {
  flex: 1 1 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem 1rem 0 1rem;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
  max-width: 160px;
  min-width: 120px;
}

.dropdown-mega .col-md-2:hover {
  background: rgba(26, 26, 26, 0.6);
}

.dropdown-mega .col-md-2 a {
  width: 100%;
  display: block !important;
  text-decoration: none;
  color: #fff;
  margin-top: 0.5rem;
  text-align: left;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.dropdown-mega .col-md-2 h6 {
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
}


.dropdown-mega .col-md-2 a:hover,
.dropdown-mega .col-md-2:hover a {
  color: #fff;
}

/* Force links in mega menu columns to be left-aligned */
.dropdown-mega .col-md-2,
.dropdown-mega .col-md-2 * {
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

