* {
    font-family: 'Poppins', sans-serif;
}

.top-header {
    background: #378ebd;
    color: #fff;
    font-size: 14px;
}

/* Contact Icons */
.top-header i {
    font-size: 16px;
}

/* Social Icon Design */
.social-icon {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    /* Blue background */
    color: #378ebd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Hover Animation */
.social-icon:hover {
    background: #fff;
    color: #0d6efd;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Sticky Navbar */
.sticky-nav {
    position: sticky !important;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
}

/* Logo Size */
.logo-img {
    height: 55px;
    /* adjust as per your need */
    width: auto;
}

/* Dropdown on Hover */
.hover-dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/* Dropdown Animation */
.dropdown-animate {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

/* Dropdown item hover effect */
.dropdown-item:hover {
    background: #0d6efd;
    color: #fff;
}

/* Navbar links */
.nav-link {
    padding: 10px 15px;
    margin-left: 15px;
    font-weight: 500;
    color: #333 !important;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* slider section */

.full-slider {
    width: 100%;
}

/* MAIN SLIDER */
/*.main-slider {*/
/*    width: 100%;*/
/*    height: 82vh;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    perspective: 1000px;*/
/*}*/

/* SLIDE IMAGES */
/*.main-slider img {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
    /* object-fit: cover; */
/*    opacity: 0;*/
/*    transform: rotateY(90deg);*/
/*    transition: all .7s ease;*/
/*}*/

/*.main-slider img.active {*/
/*    opacity: 1;*/
/*    transform: rotateY(0deg);*/
/*}*/

/* ARROWS */
/*.arrow {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    font-size: 25px;*/
/*    color: #fff;*/
/*    cursor: pointer;*/
/*    padding: 10px 18px;*/
/*    border-radius: 8px;*/
/*    transition: .3s;*/
/*    background: rgba(0,0,0,0.35);*/
/*    backdrop-filter: blur(4px);*/
/*    z-index: 99;*/
/*}*/

/*.arrow:hover {*/
/*    background: rgba(0,0,0,0.55);*/
/*}*/

/* Left Arrow */
.arrow-left {
    left: 20px;
}

/* Right Arrow */
.arrow-right {
    right: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .main-slider {
        height: 330px;
    }

    .arrow {
        font-size: 40px;
        padding: 8px 12px;
    }

    .arrow-left { left: 10px; }
    .arrow-right { right: 10px; }
}


/* Breadcrumb  */

.page-breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.page-breadcrumb .page-title {
    font-size: 26px;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "â€º";   /* arrow symbol */
    color: #6c757d;
}

.breadcrumb a {
    text-decoration: none;
    color: #0d6efd;
}

.breadcrumb a:hover {
    color: #0a58ca;
}



/* About Us  */

.export-about-section {
    padding: 25px 0;
    background: #f8f9fc;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.export-about-section .about-title {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.export-about-section .about-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #444;
}

.export-about-section .about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 850px;
    margin: 0 auto 20px;
}

.about-points {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.point-box {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

.point-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 25px rgba(0,0,0,0.12);
}



/* why choose */

.why-choose-section {
    padding: 30px 0;
    background: #ffffff;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.choose-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.choose-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    justify-content: center;
}

.choose-box {
    background: #f8f9fc;
    padding: 30px 25px;
    border-radius: 14px;
    transition: all 0.4s ease;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.06);
}

.choose-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
}

.choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    font-size: 32px;
    background: #378ebd;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.choose-box:hover .choose-icon {
    background: #1b4d81;
    transform: scale(1.1);
}

.choose-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.choose-box p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* export process */

.export-process-section {
    padding: 30px 0;
    background: #f8f9fc;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.process-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.process-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.process-step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0px 14px 28px rgba(0,0,0,0.12);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    font-size: 32px;
    background: #378ebd;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.process-step:hover .step-icon {
    background: #174e82;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.process-step p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* mission & vision */

.mission-vision-section {
    padding: 30px 0;
    background: #f7f9fc;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.mv-title {
    font-size: 25px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.mv-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    justify-content: center;
}

.mv-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.mv-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.mv-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: #378ebd;
    color: #fff;
    font-size: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.35s ease;
}

.mv-box:hover .mv-icon {
    background: #084298;
    transform: scale(1.1);
}

.mv-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.mv-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}


/* COUNTER STATS SECTION */

.counter-modern-section {
    background: linear-gradient(135deg, #1a4b80, #378ebd);
    color: #fff;
    text-align: center;
}

.counter-box {
    padding: 11px 10px;
    border-radius: 15px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.18);
}

.counter-box i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
    color: #fff;
}

.counter-box h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin: 10px 0 5px;
}

.counter-box p {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}



/* Product section */

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
}

/* FILTER TABS */
.product-tabs .nav-link {
    padding: 8px 22px;
    border-radius: 25px;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s ease;
    color: #444;
    font-weight: 500;
    border: 1px solid #ddd;
}

.product-tabs .nav-link.active,
.product-tabs .nav-link:hover {
    background: #378ebd;
    color: #fff !important;
    border-color: #378ebd;
}

/* PRODUCT BOX */
.product-box {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-box:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 30px rgba(0,0,0,0.20);
}

/* VIDEO */
.product-video {
    height: 260px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 12px;
}

.product-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PRODUCT NAME */
.product-box h4 {
    font-size: 1.1rem;
}

/* BUTTON */
.view-btn {
    padding: 8px 15px;
    background: #378ebd;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    border: none;
    transition: 0.3s;
}

.view-btn:hover {
    background: #0848c4;
    color: #fff;
    transform: translateY(-3px);
}


/* testimonial */


.google-review svg {
  width: 45px;
  height: auto;
}

.testimonials-section {
  background: #f8f9fb;
}

.swiper-slide .card {
  transition: transform .3s ease;
}

.swiper-slide:hover .card {
  transform: translateY(-6px);
}

/* we export */

.export-countries-section {
 background: linear-gradient(135deg, #1a4b80, #378ebd);
  width: 100%;
}

.export-countries-section h2 {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .5px;
}

.country-box {
  background: #ffffff;
  padding: 5px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0,0,0,0.15);
  transition: .3s ease;
}



.country-box img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.country-box h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* call to action */

.cta-banner {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('../images/global.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  border-radius: 0;
}

.cta-title {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 15px;
}

.cta-desc {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-btn {
  background: #ffcc00;
  color: #000;
  padding: 14px 35px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}


/* blog */

.blog-section {
    padding: 30px 0;
    background: #f9f9f9;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1px;
}

.blog-desc {
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #555;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-desc-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    line-height: 1.5em;
}

.blog-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* company profile */

.company-overview {
    padding: 90px 0;
    background: #f8f9fc;
}

.overview-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.overview-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.overview-btn {
    padding: 12px 24px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.overview-btn:hover {
    background: #0056d2;
    color: #fff;
}

/* RIGHT SIDE GRID */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.overview-box {
    padding: 22px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s;
    border-left: 4px solid #378ebd;
}

.overview-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overview-box p {
    font-size: 15px;
    color: #666;
}

.overview-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-left-color: #0056d2;
}

/* MOBILE */
@media (max-width: 767px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

/* our export journey */

.export-journey-section {
    padding: 30px 0;
    background: #f9fafb;
}

.export-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.export-subtext {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #555;
}

.journey-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.journey-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.journey-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #d0d0d0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #e8f0ff;
    color: #2b6cb0;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: 0.3s ease;
}

.journey-box:hover .icon-circle {
    background: #2b6cb0;
    color: #fff;
}

.journey-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.journey-box p {
    color: #666;
    font-size: 15px;
}


/* our team */

.team-section {
    padding: 30px 0;
    background: #f8f9fa;
}

.team-main-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-subtext {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.team-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e2e2;
    transition: 0.35s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-color: #d1d1d1;
}

.team-photo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e6e6e6;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.team-card:hover .team-photo img {
    border-color: #2b6cb0;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    font-size: 15px;
    font-weight: 600;
    color: #2b6cb0;
    margin-bottom: 12px;
}

.team-desc {
    color: #666;
    font-size: 15px;
}


/* certification */

.certification-section {
    padding: 30px 0;
    background: #f9fafb;
}

.cert-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cert-subtext {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    justify-items: center;
}

.cert-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e4e4e4;
}

.cert-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.cert-card:hover img {
    transform: scale(1.05);
}

.cert-card:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-color: #2b6cb0;
}


/* port to dispatce */

.ports-section {
    padding: 30px 0;
    background: #f9fafb;
}

.ports-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ports-subtext {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.ports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.port-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e4e4e4;
    transition: 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.port-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: #2b6cb0;
}

.port-icon {
    width: 60px;
    height: 60px;
    background: #e8f0ff;
    color: #2b6cb0;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: 0.3s ease;
}

.port-card:hover .port-icon {
    background: #2b6cb0;
    color: #fff;
}

.port-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.port-card p {
    color: #666;
    font-size: 15px;
}


/* packing */

.packaging-section {
    padding: 30px 0;
    background: #f9fafb;
}

.packaging-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.packaging-subtext {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.pack-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e4e4e4;
    transition: 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: #2b6cb0;
}

.pack-icon {
    width: 60px;
    height: 60px;
    background: #e8f0ff;
    color: #2b6cb0;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: 0.3s ease;
}

.pack-card:hover .pack-icon {
    background: #2b6cb0;
    color: #fff;
}

.pack-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pack-card p {
    color: #666;
    font-size: 15px;
}


/* payment */
.payment-shipping-section {
    padding: 30px 0;
    background: #f9fafb;
}

.payment-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-subtext {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.payment-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e4e4e4;
    transition: 0.35s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: #2b6cb0;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: #e8f0ff;
    color: #2b6cb0;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: 0.3s ease;
}

.payment-card:hover .payment-icon {
    background: #2b6cb0;
    color: #fff;
}

.payment-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-card p {
    color: #666;
    font-size: 15px;
}

/* contact us */

.contact-section {
    padding: 30px 0;
    background: #f4f6f8;
}

.contact-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-subtext {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 16px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
}

.bg-blue { background: #2b6cb0; }
.bg-green { background: #28a745; }
.bg-orange { background: #ff7f50; }

.info-card h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.info-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.contact-form {
    flex: 1 1 400px;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2b6cb0;
}

.btn-submit {
    background: #2b6cb0;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #1d4e8c;
}

@media (max-width: 991px) {
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }
}


/* blog details */

.export-blog-section {
    padding: 30px 0;
    background: #f9fafb;
}

.export-blog-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.export-blog-meta {
    font-size: 14px;
    color: #666;
}

.export-blog-content h3 {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 600;
}

.export-blog-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.export-blog-content blockquote {
    padding: 15px 25px;
    margin: 20px 0;
    border-left: 5px solid #2b6cb0;
    background: #e8f0ff;
    font-style: italic;
    color: #333;
    border-radius: 6px;
}

.export-blog-tags h5 {
    margin-bottom: 10px;
}

.export-badge {
    margin-right: 8px;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 14px;
    background: #2b6cb0;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
    text-decoration: none;
}

.export-badge:hover {
    background: #1d4e8c;
}

.export-social-share h5 {
    margin-bottom: 10px;
}

.export-btn-share {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-right: 8px;
    transition: 0.3s;
    color: #333;
    text-decoration: none;
}

.export-btn-share:hover {
    background: #2b6cb0;
    color: #fff;
    transform: scale(1.1);
}

.export-col-main {
    flex: 0 0 65%;
    max-width: 65%;
}

.export-col-sidebar {
    flex: 0 0 30%;
    max-width: 30%;
}

.export-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.export-sidebar-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.export-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.export-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.export-sidebar-list li {
    margin-bottom: 10px;
}

.export-sidebar-list li a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.export-sidebar-list li a:hover {
    color: #2b6cb0;
}

.export-tag-cloud a {
    margin: 5px 5px 0 0;
    display: inline-block;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 6px;
    background: #6c757d;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.export-tag-cloud a:hover {
    background: #0a58ca;
    color: #fff;
}

@media (max-width: 991px) {
    .export-col-main, .export-col-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.export-blog-comments {
    margin-top: 50px;
}

.export-comments-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.export-comment-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.export-comment-author {
    font-weight: 600;
    color: #2b6cb0;
    margin-bottom: 5px;
}

.export-comment-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.export-comment-text {
    font-size: 15px;
    color: #555;
}

.export-add-comment h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.export-form-group {
    margin-bottom: 15px;
}

.export-form-group input,
.export-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.export-form-group input:focus,
.export-form-group textarea:focus {
    border-color: #2b6cb0;
}

.export-btn-submit {
    background: #2b6cb0;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.export-btn-submit:hover {
    background: #1d4e8c;
}

@media (max-width: 991px) {
    .export-col-main, .export-col-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.export-col-sidebar {
    flex: 0 0 30%;
    max-width: 30%;
    position: sticky;
    top: 100px; /* Distance from top when scrolling */
    align-self: flex-start;
}

@media (max-width: 991px) {
    .export-col-sidebar {
        position: relative; /* Disable sticky on mobile */
        top: auto;
        max-width: 100%;
    }
}

/* products details */
/* VIDEO */
.proview-main-video {
    width: 100%;
    object-fit: cover;
    height: 500px;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.2);
}

/* IMAGE GRID */
.proview-img-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.proview-img-item:hover {
    transform: scale(1.03);
}

/* STICKY SIDEBAR */
.proview-details {
    padding: 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.proview-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
}
.proview-enq-btn {
    background: #378ebd;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}
.proview-enq-btn:hover {
    background: #0a58ca;
    color: #fff;
}

/* LIGHTBOX */
.proview-lightbox {
    display: none;
    position: fixed;
    top:0; left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index: 999999;
}
.proview-light-img {
    width: 75%;
    border-radius: 12px;
}
.proview-lightbox-close {
    position:absolute;
    top:20px; right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

/* RELATED PRODUCT BOX */
.proview-related-box {
    background:#fff;
    padding: 5px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}
.proview-related-box:hover {
    transform: translateY(-5px);
}
.proview-related-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius:12px;
}
.proview-related-name {
    font-size: 17px;
    margin: 5px 0 8px;
}
.proview-related-btn {
    background:#378ebd;
    color:#fff;
    padding:8px 16px;
    border-radius:40px;
    text-decoration: none;
    font-size:14px;
    display:inline-block;
}
.proview-related-btn:hover {
    background:#378ebd;
}

.proview-related-section {
    background:#f7f1e5;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 997 !important;
}

.proview-related-dots {
    margin-top: 20px;
    text-align: center;
}

.proview-related-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #378ebd;
    opacity: 0.4;
    transition: 0.3s;
}

.proview-related-dots .swiper-pagination-bullet-active {
    opacity: 1;
    background: #378ebd;
    transform: scale(1.2);
}


/* footer */

.export-footer {
    background: url('../images/footer-img.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 0;
    position: relative;
}

.footer-overlay {
    background: rgba(0, 0, 0, 0.75);
    padding: 60px 0;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ffcc00;
    display: block;
    margin-top: 8px;
    border-radius: 5px;
}

.footer-text {
    color: #dcdcdc;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #eaeaea;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #ffffff22;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffcc00;
    color: #000;
    transform: translateY(-4px);
}

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.newsletter input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.newsletter button {
    background: #ffcc00;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #fff;
    color: #000;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #ffffff33;
    font-size: 14px;
    color: #ddd;
}
