/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================NAVBAR SECTION======================= */
.navbar {
    max-height:10vh;
    background:white;
    color: #4e4e4d;
    padding: 0.5rem 0;
    position:sticky;
    top: 0;
    z-index: 1000;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.nav-container {
    max-width:1200px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
}
.logo{
    display: inline-flex;
    align-items:center;
    justify-content:space-between;
    
}
.logo h1 {
    color: #1e3c72;
    font-size: 1.8rem;
    font-weight: bold;
    font-weight: 1000;
}
.logo img {
    margin-top:-5px;
display:inline-flex;
  }

.nav-menu {
    display: flex;
    list-style: none;
    gap:5px;
}

.nav-item {
    position: relative;
}
.catalog{
    background-color:#0d3786;
   
    
    border-radius: 5px;
}
.catalog a{
    color:rgb(189, 180, 101);
}
.nav-link {
    font-family: 'Playfair Display', serif;
            color:#2a5298;
            font-weight: 600;
            text-align: center;
            margin-bottom: 4rem;
            font-size: 1.2rem;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease-out;
            text-transform: uppercase;
            text-decoration: none;
            padding: 10px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    
}

.hamburger .bar {
    width: 30px;
    height: 10px;
    background:#03296f;
    margin: 2px 15px;
    transition: 0.3s;
    
}

/* ==================HERO SLIDER SECTION===================== */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background: rgba(0,0,0,0.5); */
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}



.hero-slider {
    position: relative;
    height:60vh;
    overflow: hidden;
    background-color: white;
    margin-top:8px;
    
    

}

.slider-container {
    position: relative;
    height: 100%;
        /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
         background: rgba(0, 0, 0, 0.4); */
         
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    cursor: pointer;
   
}

.slide img {
    width: 100%;
    height: 100%;
   

}

.slide.active {
    opacity: 1;
   
}
.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none; /* FIXED */
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2; /* MERGED */
}


.hero-dots .dot {
  height: 12px;
  width: 12px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dots .dot.active {
  background: #0d3786; /* active dot color */
}


.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align:center;
    z-index: 2;
    
    
}
.gradient-text {
  font-size: 30px;
  font-weight: bold;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(189, 180, 101));
   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}



.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0rem;
    /* animation: slideUp 1s ease-out; */
    text-transform:uppercase;
    font-weight: 1000;
   color: linear-gradient(to right, #ff7e5f, #feb47b);

    
}

.slide-content p {
    font-size: 1.3rem;
    /* animation: slideUp 1s ease-out 0.3s both; */
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================INFO SECTION ======================== */
.info-section {
  background: #fff;
  padding: 0rem 0rem;
  margin-top:3rem;
}

.info-section .container {
  max-width: 1100px;
  margin: 0 auto;
  /* display: flex; */
  /* justify-content: space-between; */
  /* align-items: flex-start;  top align heading + text */
  gap: 10px;
  float:right;
  
}
.contact{

    text-align: center;
}

.info-section h2 {
  /* flex: 3;                   */
  font-size: 2.5rem;
  font-weight: 800;
  color:#03296f;           
  letter-spacing: 2px;
  text-transform: uppercase; /* matches your screenshot */
  text-align:center;         /* push heading to the right side */
}

.info-section p {
  /* flex: 2;                   takes right column */
  font-size: 1rem;
  line-height: 1.6;
  color: #6b6b68;
  max-width: 650px;
}


/* 📱 Responsive */
@media (max-width: 768px) {
  .info-section .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .info-section h2 {
    text-align: center;
  }
}

/* ===============IMAGE SLIDER UNDER INFO SECTION ======================== */
/* Images Scroll Styles */
/* Enhanced Images Scroll Styles */
.images-scroll {
    padding: 1rem 0;
    background: rgb(255, 255, 255);
    overflow: hidden;
}

.scroll-container {
    height: 400px; /* Increased height to accommodate text */
    overflow: hidden;
    
}

.scroll-images {
    display: flex;
    animation: scrollRight 20s linear infinite;
    height: 100%;
    align-items: flex-start;
}

/* New image container to include text */
.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    min-width: 500px; /* Fixed width for consistent spacing */
    
}

.image-item img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    /* border-radius: 10px; */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.05);
}

/* Heading styles */
.image-heading {
    margin-top: 7px;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    color: #1e3c72;
    text-align: center;
    padding: 0 10px;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform:uppercase;
}

/* Update the media query for mobile */
@media screen and (max-width: 480px) {

    .hero-slider{
        max-width: 480px;
        height:240px;
    }
    .image-item {
        min-width: 300px;
    }
    
    .image-item img {
        width: 300px;
        height: 180px;
    }
    
    .image-heading {
        font-size: 1rem;
    }
    
    .scroll-container {
        height: 280px;
    }


    .info-section .container {
    float: none;
    width: 100%;
  }

  .info-section h2 {
    font-size: 2rem;
  }

  .scroll-container {
    height: 220px;
  }

  .image-item {
    min-width: 240px;
    margin-right: 10px;
  }

  .image-item img {
    width: 240px;
    height: 150px;
  }

  .image-heading {
    font-size: 0.9rem;
    min-height: 35px;
  }

}
@keyframes scrollRight {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/*====================== Distributors Section================ */
.distributors-section {
    background:rgb(2, 23, 72);
    padding: 2rem 0;
    text-align: center;
    margin-top: 0.2rem;

    
}
.highlighted {
  color:rgb(189, 180, 101);                  /* Gold color */
   font-family: 'Playfair Display', serif; 
  font-weight:900;             /* bold/heavy */
}

.distributors-section h2 {
    font-family: 'Playfair Display', serif;
            color:#ffffff;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.5rem;
            font-size: 2rem;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
            text-transform: uppercase;

}

.distributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.distributor-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border:3px solid rgb(189, 180, 101); 
}

.distributor-logo:hover {
    transform: translateY(-5px);
}

.distributor-logo img {
    width: 100%;
    height: auto;
    max-width: 150px;
}

/* Second Slider Styles */
.second-slider {
    padding: 4rem 0;
    background: white;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-btn {
    background: #1e3c72;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.slider-btn:hover {
    background: #2a5298;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.slider-content {
    display: flex;
    animation: scroll-left 20s linear infinite;
    gap: 15px;
}

.slider-item {
    flex: 0 0 auto;
    width: 220px;
    margin: 0 15px;
    text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
}

.slider-item.active {
    opacity: 1;
    transform: scale(1.05);
}

.slider-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-item h3 {
    margin-top: 1rem;
    color: #1e3c72;
}

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

.read-more-container {
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    background: #1e3c72;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* --------------Gallary section ------------------- */
  .gallery-section {
            position: relative;
            padding: 6rem 0;
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

       
        .gallery-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Title Styling */
        .gallery-h1 {
            font-family: 'Playfair Display', serif;
            color:#2a5298;
            font-weight: 800;
            text-align: center;
            margin-bottom: 4rem;
            font-size: 2rem;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }

        .gallery-h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
            border-radius: 2px;
            animation: expandLine 1.5s ease-out 0.5s both;
        }

     

        /* Gallery Grid */
        .gallery-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
            gap: 0.5rem;
            position: relative;
            z-index: 2;
        }

        /* Image Cards */
        .image-wrapper {
            position: relative;
            overflow: hidden;
            /* border-radius: 20px; */
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            cursor: pointer;
            animation: fadeInScale 0.8s ease-out forwards;
            opacity: 0;
            transform: scale(0.8);
        }

        .image-wrapper:nth-child(1) { animation-delay: 0.2s; }
        .image-wrapper:nth-child(2) { animation-delay: 0.4s; }
        .image-wrapper:nth-child(3) { animation-delay: 0.6s; }
        .image-wrapper:nth-child(4) { animation-delay: 0.8s; }

        @keyframes fadeInScale {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .image-wrapper:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.4);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .image-wrapper:hover::before {
            opacity: 0.1;
        }

        .image-wrapper img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }

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

        /* Glass Effect Caption */
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            z-index: 2;
        }

        /* .image-wrapper:hover .image-caption {
            transform: translateY(0);
        } */

        .image-caption h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .image-caption p {
            font-size: 1rem;
            color: #7f8c8d;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Floating Action Icon */
        .image-wrapper .expand-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease;
            z-index: 3;
            color: #667eea;
            font-size: 1.2rem;
        }

     .image-wrapper:hover .expand-icon {
            opacity: 1;
            transform: scale(1);
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 2000;
            cursor: pointer;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            animation: zoomIn 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox .close {
            position: absolute;
            top: 40px;
            right: 50px;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .lightbox .close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        } 

        /* Responsive Design */
        @media (max-width: 768px) {
            .gallery-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .gallery-h1 {
                font-size: 2.5rem;
                margin-bottom: 3rem;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .image-wrapper img {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .gallery-section {
                padding: 4rem 0;
            }
            
            .gallery-h1 {
                font-size: 2rem;
            }
            
            .image-caption {
                padding: 1.5rem;
            }
        }

        /* Scroll Animation */
        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* Video Section */
.video-section {
    padding: 4rem 0;
    background:white ;
}
.video-h1{
    color:#6f6f6e;
    font-weight:800;
    font-family: Arial, sans-serif;
    text-align: center;
}
.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: center;
}

.video-wrapper {
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

}

.video-wrapper video {
    width: 1536px;
    height: auto;
    display: block;
}

.video-info h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.video-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* Products Section */
/* Products Section - Fixed Height */
.products-section {
    padding: 1rem 0;
    background: #f4f4f4;
    text-align: center;
}

.products-section h2 {
    font-family: 'Playfair Display', serif;
            color:#2a5298;
            font-weight: 800;
            text-align: center;
            margin-bottom: 4rem;
            font-size: 2rem;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    /* background: white; */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height:auto; /* Fixed height for all cards */
    display: flex;
    flex-direction: column;
    border:3px solid #1e3c72;
    border-radius: 10px;
}
.product-card.active,
.product-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.2); */
}

.product-image {
    width: 100%;
    height: 250px; /* Fixed image height */
    overflow: hidden;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    text-align: left;
    flex: 1; /* Takes remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color:#1e3c72;
}

.product-info h3 {
    font-size: 1.2rem;
    color:white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    /* Limit title to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info p {
    color:white;
    line-height: 1.5;
    font-size: 0.95rem;
    /* Limit description to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* product 0 */
.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: opacity 0.5s ease; */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .products-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        height: 350px; /* Slightly smaller on mobile */
    }
    
    .product-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    logo h1 {
        font-size: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    .product-card {
        height: 320px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f4f4f4;
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e3c72;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer Styles */
.footer-logo {
    text-align: center;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 70px;   /* Adjust size */
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer {
    background: #1e3c72;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a5298;
}

.footer-bottom p {
    color: #ccc;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-float,
.call-float,
.scroll-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-float {
    background: #25D366;
}

.call-float {
    background: #007BFF;
}

.scroll-top,
.back-to-top {
    background: #1e3c72;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible,
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover,
.call-float:hover,
.scroll-top:hover,
.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
    overflow-y: scroll;
}

.modal-content {
    background-color: white;
    margin: 5px auto;
    padding: 2rem;
    /* border-radius: 15px; */
    width: 90%;
    max-width: 900px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
}

.close:hover {
    color: black;
}

.modal-content h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.modal-content p {
    line-height: 1.6;
    color: #666;
}

/* Products page layout styles */
.products-container {
    display: flex;
    min-height: calc(100vh - 70px);
    background: #f4f4f4;
}

/* Left Sidebar Navigation */
.products-sidebar {
    width: 300px;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 100;
}

.sidebar-header {
    background: #2a5298;
    color: white;
    padding:4.9vh;
    text-align: center;
}

.sidebar-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.sidebar-nav {
    padding: 0;
}

.nav-category {
    border-bottom: 1px solid #e9ecef;
}

/* Right Content Area */
.products-content {
    flex: 1;
    overflow-y: auto;
}

.welcome-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.welcome-message i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.product-detail-card {
    background: white;
    /* border-radius: 15px; */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    display: none;
}

.product-detail-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.product-detail-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 2rem;
    text-align: center;
}

.product-detail-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
}

.product-detail-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.product-detail-body {
    padding: 2rem;
}

.product-image-container {
    text-align: center;
    margin-bottom: 2rem;
}

.product-detail-image {
    max-width: 100%;
    max-height: 300px;
    /* border-radius: 10px; */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-detail-image.placeholder {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    /* border-radius: 10px; */
    margin: 0 auto;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.product-features {
    margin-top: 2rem;
}

.product-features h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
}

.feature-item i {
    color: #1e3c72;
    margin-right: 0.5rem;
}

/* Mobile sidebar toggle */
.mobile-sidebar-toggle {
    display: none;
    background: #1e3c72;
    color: white;
    border: none;
    padding: 1rem;
    width: 100%;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Updated Sidebar Button Styles */
.category-button {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid #e9ecef;
}

.category-button:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.category-button.active {
    background: #1e3c72;
    color: white;
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.2);
}

.category-button i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Products Display Grid */
/* Simplified Products Display Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.product-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 280px; /* Reduced height since no description */
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.product-item-image {
    width: 100%;
    height: 200px; /* Larger image area */
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.product-item:hover .product-item-image img {
    transform: scale(1.05);
}

.product-item-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.product-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* View Details Button Overlay */
.view-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-item:hover .view-details-overlay {
    opacity: 1;
}

/* Remove these old styles */
.product-item-description,
.product-item-footer,
.view-details-btn,
.product-features-list,
.feature-tag {
    display: none; /* Hide these elements */
}

/* Category Header */
.category-header {
    background:  #2a5298;
    color: white;
    padding:20px;
    text-align: center;
    /* border-radius: 12px; */
    margin-bottom: 1.5rem;
}

.category-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
}

.category-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color:whitesmoke;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slider-content {
        flex-direction: column;
        align-items: center;
    }
    
    .slider-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-slider {
        grid-template-columns: 1fr;
    }
    
    .distributors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-icons {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float,
    .call-float,
    .scroll-top,
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .products-container {
        flex-direction: column;
    }

    .products-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
    }

    .products-content {
        padding: 1rem;
    }

    .product-detail-header h2 {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .mobile-sidebar-toggle {
        display: block;
    }

    .sidebar-nav {
        display: none;
    }

    .sidebar-nav.show {
        display: block;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-item-image {
        height: 150px;
    }
    
    .category-header h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .video-wrapper {
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

}

.video-wrapper video {
    width: 480px;
    height: auto;
    display: block;
}

.video-info h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.video-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

    .logo h1 {
        font-size: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .info-section h2,
    .distributors-section h2,
    .products-section h2,
    .map-section h2 {
        font-size: 2rem;
    }
    
    .scroll-images img {
        width: 300px;
        height: 180px;
    }
    
    .modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-in-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3c72;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a5298;
}

@media (max-width: 1400px) {
     .main-image {
        height: 100%;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
     .main-image {
        height: 100%;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-item-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
     .main-image {
        height: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .product-item-image {
        height: 150px;
    }
    
    .product-item-title {
        font-size: 1rem;
    }
    
    .product-item-description {
        font-size: 0.85rem;
    }
}


@media (max-width: 1200px) {
     .main-image {
        height: 100%;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 900px) {
     .main-image {
        height: 100%;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-item {
        height: 320px;
    }
    
    .product-item-image {
        height: 180px;
    }
}

@media (max-width: 600px) {
     .main-image {
        height: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .product-item {
        height: 300px;
    }
    
    .product-item-image {
        height: 160px;
    }
    
    .category-header h2 {
        font-size: 1.5rem;
    }
}

/* Enhanced Modal Styles with Beautiful Design */
#individualProductModal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width:100;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Modal animations */
@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modalSlideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
}

/* Modal Content */
#individualProductModal .modal-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    margin: auto;
    /* border-radius: 10px; */
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Header Styles */
#individualProductModal .modal-header {
    background:#1e3c72;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 300% 100%;
    animation: colorWave 3s ease infinite;
}

@keyframes colorWave {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.product-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#individualProductModal .modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

/* Close Button */
#individualProductModal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#individualProductModal .close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
    color: white;
}

/* Modal Body */
#individualProductModal .modal-body {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
    scrollbar-width: thin;
    scrollbar-color: #667eea transparent;
    display: flex;
    gap: 2rem;
}

#individualProductModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#individualProductModal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

#individualProductModal .modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: content-box;
}

/* Left Side - Images */
.modal-left {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image-container {
    position: relative;
    /* border-radius: 15px; */
    overflow: hidden;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    /* background: linear-gradient(145deg, #f8f9ff, #ffffff); */
    
}

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

/* .main-image:hover {
    transform: scale(1.02);
} */

.main-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, #f8f9ff, #e8ecf0);
    border: 2px dashed #c1c8d1;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.main-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thumbnails-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.thumbnail {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(145deg, #f8f9ff, #ffffff);
}

.thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.thumbnail.active {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

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

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f8f9ff, #e8ecf0);
    border: 1px dashed #c1c8d1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.thumbnail-placeholder i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thumbnail-image {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f9ff, #ffffff);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side - Information */
.modal-right {
    flex: 1;
    padding: 2rem;
    background: white;
    border-left: 1px solid #e9ecef;
}

/* Detail Sections */
.product-details {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

.detail-section {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.detail-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    padding: 0.6rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e3c72, #1e3c72);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.section-header h3, .section-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    flex-grow: 1;
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    margin-left: 1rem;
}

/* Description Section */
.description-content {
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-weight: 400;
}

/* Specifications */
.specs-container, .specs-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-item, .specs-list li {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative;
}

.spec-item:last-child, .specs-list li:last-child {
    border-bottom: none;
}

.spec-item:hover, .specs-list li:hover {
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    transform: translateX(5px);
}

.spec-icon {
    margin-right: 1rem;
    color: #667eea;
    font-size: 0.8rem;
}

.spec-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spec-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.spec-value {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Features */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: featureSlideIn 0.6s ease forwards;
}

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

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.feature-icon {
    margin-right: 1rem;
    font-size: 1rem;
}

.feature-icon i {
    color: #27ae60;
}

.feature-text {
    color: #555;
    font-weight: 500;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Price Section */
.price-container {
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.price-display i {
    margin-right: 0.5rem;
}

/* Action Buttons */
.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 120px;
}

.primary-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.secondary-btn {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.secondary-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {

     .main-image {
        height: 100%;
    }
    #individualProductModal .modal-body {
        flex-direction: column;
    }
    
    .modal-right {
        border-left: none;
        border-top: 1px solid #e9ecef;
    }
    
    

}
/* Responsive Design */
@media (max-width: 768px) {

     .main-image {
        height: 100%;
    }
    #individualProductModal .modal-content {
        max-width: 95%;
        margin: 1rem;
        max-height: 95vh;
    }
    
    #individualProductModal .modal-body {
        padding: 1.5rem;
    }
    
    .product-details {
        padding: 1.5rem;
    }
    
    #individualProductModal .modal-header {
        padding: 1.5rem;
    }
    
    #individualProductModal .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .product-title-container {
        gap: 0.5rem;
    }
    
    .product-icon {
        font-size: 1.5rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .action-btn {
        min-width: auto;
    }
    
    .spec-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .spec-label {
        margin-bottom: 0;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {

     .main-image {
        height: 100%;
    }
    #individualProductModal {
        padding: 10px;
    }
    
    #individualProductModal .modal-header {
        padding: 1rem;
    }
    
    #individualProductModal .modal-body {
        padding: 1rem;
    }
    
    .product-details {
        padding: 1rem;
    }
    
    .section-header {
        flex-wrap: wrap;
    }
    
    .section-line {
        display: none;
    }
}
.product-item {
    animation: cardSlideIn 0.4s ease forwards;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }
.product-item:nth-child(4) { animation-delay: 0.4s; }
.product-item:nth-child(5) { animation-delay: 0.5s; }
.product-item:nth-child(6) { animation-delay: 0.6s; }
.product-item:nth-child(7) { animation-delay: 0.7s; }
.product-item:nth-child(8) { animation-delay: 0.8s; }



.pdf-modal {
    position: fixed;
    inset: 0;
    display: none;               /* visible only when opened */
    align-items: center;
    justify-content: center;
    z-index: 100;              /* high, but scoped */
    pointer-events: none;        /* prevent clicks when closed */
  }
  
  /* semi-transparent backdrop (separate element so clicks can be detected reliably) */
  .pdf-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(0.5px);
  }
  
  /* dialog / white panel */
  .pdf-modal__dialog {
    position: relative;
    width: 60vw;
    max-width: 800px;
    height: 80vh;
    max-height: 95vh;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    overflow: hidden;           /* ensure iframe fits inside and doesn't exceed rounded corners */
    z-index: 2;                 /* above the overlay */
    pointer-events: auto;
    display: flex;
    flex-direction: column;
  }
  
  /* content area (iframe fills this) */
  .pdf-modal__content {
    flex: 1 1 auto;
    position: relative;
    min-height: 0;              /* important so children can scroll inside flex */
  }
  
  /* iframe fills the dialog and is scrollable */
  .pdf-modal__content iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  
  /* close button placed above iframe, clickable */
  .pdf-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(255,255,255,0.95);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  /* accessible helper - visually hidden but available to screen readers */
  .sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }
  
  /* when open */
  .pdf-modal.is-open {
    display: flex;
    pointer-events: auto;
  }
  
  /* prevent background page scroll when modal is open */
  body.pdf-modal-open {
    overflow: hidden;
  }
  
  /* Responsive tweaks */
  @media (max-width: 640px) {

     .main-image {
        height: 100%;
    }
    .pdf-modal__dialog {
      width: 98vw;
      height: 95vh;
      border-radius: 6px;
    }
  
    .pdf-modal__close {
      width: 46px;
      height: 46px;
      font-size: 26px;
    }
  }



/* Contact Page Specific Styles */
/* Only applies when body has contact-page class or to contact-specific sections */

/* Contact Info Section Specific Styling */
.info-section.contact {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #0d3786;
}

.info-section.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="8" fill="url(%23a)"/><circle cx="30" cy="15" r="5" fill="url(%23a)"/><circle cx="60" cy="8" r="6" fill="url(%23a)"/><circle cx="80" cy="12" r="4" fill="url(%23a)"/></svg>') repeat; */
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.info-section.contact .container.contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  float: none !important;
}

.info-section.contact h2 {
  color: #0d3786;   
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
}

.info-section.contact h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  /* background: linear-gradient(90deg, #ffd89b 0%, #19547b 100%); */
  border-radius: 2px;
}

/* Contact Info Cards - Centered Layout */
.info-section.contact p {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid #0d3786;
  border-radius: 20px;
  padding: 30px 25px;
  margin: 20px auto;
  color: #0d3786;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-section.contact p::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.info-section.contact p:hover::before {
  left: 100%;
}

.info-section.contact p:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.info-section.contact p i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #ffd89b;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  display: inline-block;
  width: 30px;
  text-align: center;
}

/* Map Section Enhancements */
.map-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  position: relative;
}

.map-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
  border-radius: 22px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.map-container iframe {
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
     
  .info-section.contact {
    padding: 60px 0;
  }
  
  .info-section.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .info-section.contact p {
    font-size: 1.1rem;
    padding: 25px 20px;
    margin: 15px 0;
  }
  
  .map-section {
    padding: 60px 0;
  }
  
  .map-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .map-container {
    margin: 0 20px;
  }
}

@media (max-width: 480px) {

     .main-image {
        height: 100%;
    }
  .info-section.contact h2 {
    font-size: 1.8rem;
  }
  
  .info-section.contact p {
    font-size: 1rem;
    padding: 20px 15px;
  }
  
  .info-section.contact p i {
    font-size: 1.3rem;
    margin-right: 10px;
  }
}

.product-image-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.product-gallery-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}


@media (max-width: 768px) {
.info-section .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .info-section h2 {
    text-align: center;
  }
.gallery-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .gallery-h1 {
                font-size: 2.5rem;
                margin-bottom: 3rem;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .image-wrapper img {
                height: 250px;
            }
.products-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        height: 350px; /* Slightly smaller on mobile */
    }
    
    .product-image {
        height: 200px;
    }
.main-image {
        height: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .product-item-image {
        height: 150px;
    }
    
    .product-item-title {
        font-size: 1rem;
    }
    
    .product-item-description {
        font-size: 0.85rem;
    }
.main-image {
        height: 100%;
    }
    #individualProductModal .modal-body {
        flex-direction: column;
    }
    
    .modal-right {
        border-left: none;
        border-top: 1px solid #e9ecef;
    }
.main-image {
        height: 100%;
    }
    #individualProductModal .modal-content {
        max-width: 95%;
        margin: 1rem;
        max-height: 95vh;
    }
    
    #individualProductModal .modal-body {
        padding: 1.5rem;
    }
    
    .product-details {
        padding: 1.5rem;
    }
    
    #individualProductModal .modal-header {
        padding: 1.5rem;
    }
    
    #individualProductModal .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .product-title-container {
        gap: 0.5rem;
    }
    
    .product-icon {
        font-size: 1.5rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .action-btn {
        min-width: auto;
    }
    
    .spec-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .spec-label {
        margin-bottom: 0;
        margin-right: 1rem;
    }
.info-section.contact {
    padding: 60px 0;
  }
  
  .info-section.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .info-section.contact p {
    font-size: 1.1rem;
    padding: 25px 20px;
    margin: 15px 0;
  }
  
  .map-section {
    padding: 60px 0;
  }
  
  .map-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .map-container {
    margin: 0 20px;
  }
}


@media screen and (max-width: 480px) {
.hero-slider{
        max-width: 480px;
        height:240px;
    }
    .image-item {
        min-width: 300px;
    }
    
    .image-item img {
        width: 300px;
        height: 180px;
    }
    
    .image-heading {
        font-size: 1rem;
    }
    
    .scroll-container {
        height: 280px;
    }


    .info-section .container {
    float: none;
    width: 100%;
  }

  .info-section h2 {
    font-size: 2rem;
  }

  .scroll-container {
    height: 220px;
  }

  .image-item {
    min-width: 240px;
    margin-right: 10px;
  }

  .image-item img {
    width: 240px;
    height: 150px;
  }

  .image-heading {
    font-size: 0.9rem;
    min-height: 35px;
  }
.video-wrapper {
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

}

.video-wrapper video {
    width: 480px;
    height: auto;
    display: block;
}

.video-info h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.video-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

    .logo h1 {
        font-size: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .info-section h2,
    .distributors-section h2,
    .products-section h2,
    .map-section h2 {
        font-size: 2rem;
    }
    
    .scroll-images img {
        width: 300px;
        height: 180px;
    }
    
    .modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 1.5rem;
    }
}


@media (max-width: 480px) {
.gallery-section {
                padding: 4rem 0;
            }
            
            .gallery-h1 {
                font-size: 2rem;
            }
            
            .image-caption {
                padding: 1.5rem;
            }
logo h1 {
        font-size: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    .product-card {
        height: 320px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
.main-image {
        height: 100%;
    }
    #individualProductModal {
        padding: 10px;
    }
    
    #individualProductModal .modal-header {
        padding: 1rem;
    }
    
    #individualProductModal .modal-body {
        padding: 1rem;
    }
    
    .product-details {
        padding: 1rem;
    }
    
    .section-header {
        flex-wrap: wrap;
    }
    
    .section-line {
        display: none;
    }
.main-image {
        height: 100%;
    }
  .info-section.contact h2 {
    font-size: 1.8rem;
  }
  
  .info-section.contact p {
    font-size: 1rem;
    padding: 20px 15px;
  }
  
  .info-section.contact p i {
    font-size: 1.3rem;
    margin-right: 10px;
  }
}
/* ===================contact page ========================= */
/* Hero Banner Section */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  animation: float 20s linear infinite;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content Layout */
.contact-main {
  padding: 60px 20px;
  background: #f8f9fa;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* Left Side - Description */
.contact-description {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-description h2 {
  color: #667eea;
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.contact-description h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.contact-description p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  background: linear-gradient(135deg, #667eea15, #764ba215);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.info-card i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 15px;
}

.info-card h3 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Right Side - Contact Details & Map */
.contact-sidebar {
  position: sticky;
  top: 100px;
}

.contact-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.contact-card h3 {
  color: #667eea;
  font-size: 1.5rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-item:hover {
  background: #667eea10;
}

.contact-item i {
  color: #667eea;
  font-size: 1.3rem;
  margin-top: 3px;
  min-width: 25px;
}

.contact-item-content {
  flex: 1;
}

.contact-item-content strong {
  color: #333;
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.contact-item-content a,
.contact-item-content span {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item-content a:hover {
  color: #667eea;
}

/* Map Container */
.map-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-card h3 {
  color: #667eea;
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Responsive Design */
@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-sidebar {
    position: relative;
    top: 0;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-description {
    padding: 30px 25px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 100px 20px 60px;
  }

  .contact-hero h1 {
    font-size: 1.75rem;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .map-card {
    padding: 25px 20px;
  }
}