*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}
.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/back.jpg); 
    background-position: center;
    background-size: cover;
    position: relative; 
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
   list-style: none;
   display: inline-block;
   padding: 8px 12px;
   position: relative; 
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #2a2a2a;
  min-width: 160px;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu a {
  color: #ddd;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background-color: #e74c3c;
  color: white;
}

.dropdown-menu i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 40px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

nav .fa{
    display: none;
} 

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li {
        display: block;
    } 
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #141313;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }

}

.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.col-2{
    flex-basis: 50%;
    min-width: 300px;
}
.col-2 img{
    max-width: 100%;
    padding: 50px 0;
}

.col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}
.btn{
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5;
    cursor: pointer;
}

.btn:hover{
    background: #563434;
}

.categories{
    margin: 70px 0;
}

.col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-3 img{
    width: 100%;
}

.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.col-4{
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}
.col-4 img{
    width: 100%;
}

.title{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}

.title::after{
    content: '';
    background: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
h4{
    color: #555;
    font-weight: normal;
}

.col-4 P{
    font-size: 14px;
}

.col-4:hover{
    transform: translateY(-5px);
}

/*----- course ------*/

.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.course-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
/*----------------------------promo--------------------------------------*/
.slider-container{
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;

}
.slider-container h2{
    text-align: center;
    margin-bottom: 30px;
    color: #333333;
}

.slider{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.slide.active{
    opacity: 1;
}
.slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide, .col-5 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-banner {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff4757;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.slide-info{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px;
}

.slide-info h3{
    font-size: 28px;
    margin-bottom: 15px;
}

.slide-info p{
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e40af;
}
.shop-btn{
    background-color: #3496db;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: #333;
    border: none;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover{
    background-color: rgba(255, 255, 255, 0.8);
}

.prev-btn{
    left: 20px;
}

.next-btn{
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active{
    background-color: white;
}

/*-------------responsive Design----------*/
@media (max-width: 768px) {
    .slider{
        height: 400px;
    }
    .slide-info h3{
        font-size: 22px;
    }
    .slide-info p{
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 300px;
    }
    .promo-banner{
        font-size: 12px;
        padding: 5px 16px;
    }
    .slide-info{
        padding: 15px;
    }
    .slide-info h3{
        font-size: 18px;
    }
    .slide-info p{
        font-size: 16px;
    }
    .shop-btn{
        padding: 8px 15px;
        font-size: 14px;
    }
    .slider-btn{
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/*-------------------------offer---------------------------*/
.offer{
    background: radial-gradient(#fff,#141111);
    margin-top: 80px;
    padding: 30px 0;
}

.col-2 .offer-img{
    padding: 50px;
}
small{
    color: #555;
}

/*-------------------Testimonial----------------------*/
.testimonial{
    padding-top: 100px;
}
.testimonial .col-3{
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.5s;
}

.testimonial .col-3 img{
    width: 50px;
    margin-top: 20px;
    border-radius: 50%;
}

.testimonial .col-3:hover{
    transform: translateY(-10px);
}
.fa.fa-quote-left{
    font-size: 34px;
    color: #ff523b;
}

.col-3 p{
    font-size: 12px;
    margin: 12px 0;
    color: #777;
}

.testimonial .col-3 h3{
    font-weight: 600;
    color: #555;
    font-size: 16px;
}
/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-about p {
    margin: 15px 0;
    line-height: 1.6;
    color: #cccccc;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #e74c3c;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #e74c3c;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333333;
    color: #999999;
    font-size: 14px;
}

.designer-credit {
    text-align: center;
    margin-top: 10px;
    color: #666666;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
/*----------media query for menu---------*/
@media only screen and (max-width: 800px){
    nav ul{
        position: absolute;
        top: 70px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li{
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a{
        color: #fff;
    }
    .menu-icon{
        display: block;
        cursor: pointer;
    }
}

/*----------------------------------Categories-----------------------------------*/
.featured-categories {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-header p {
  color: #7f8c8d;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  color: #333;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-icon {
  font-size: 2.5rem;
  color: #e74c3c;
  margin-bottom: 15px;
}

.category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.category-card p {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.shop-now {
  color: #e74c3c;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.category-card:hover .shop-now {
  color: #2c3e50;
}

.category-card:hover .shop-now i {
  transform: translateX(5px);
}

.hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(231,76,60,0.1) 0%, rgba(46, 134, 193, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover .hover-bg {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
/*-------------------Showcase----------------------------------*/
.product-showcase {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #2c3e50, #e74c3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 8s infinite alternate;
}

.scrolling-subtitle {
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-subtitle span {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 20s linear infinite;
    color: #666;
    font-size: 1.1rem;
}

/* Product Carousel */
.product-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.product-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.product-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    transition: all 0.5s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg) scale(1.05);
}

.hover-float:hover {
    animation: float 3s ease-in-out infinite;
}

.hover-scale:hover {
    transform: scale(1.1);
}

.hover-tilt:hover {
    transform: perspective(500px) rotateX(10deg);
}

.product-info {
    padding: 20px;
    position: relative;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-tag {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.price-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #2c3e50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.view-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:hover {
    background: #2c3e50;
    color: white;
}

.view-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.view-btn:hover i {
    transform: translateX(5px);
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.product-card:hover .shine-effect {
    left: 100%;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.control-btn:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

.pagination-dots {
    display: flex;
    gap: 10px;
}

.pagination-dots span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.pagination-dots span.active {
    background: #2c3e50;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-carousel {
        gap: 20px;
    }
    
    .product-card {
        flex: 0 0 240px;
    }
    
    .showcase-header h1 {
        font-size: 2.2rem;
    }
}

/*-----------------All Products Page--------------------*/
.row-2{
    justify-content: space-between;
    margin: 100px auto 50px;
}
select{
    border: 1px solid #ff523b;
    padding: 5px;
}

select:focus{
    outline: none;
}
.page-btn{
    margin: 0 auto 80px;

}
.page-btn span{
    display: inline-block;
    border: 1px solid #ff523b;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.page-btn span:hover{
    background: #ff523b;
    color: #fff;
}

/*---------------------Single Product Details------------------------*/
.single-product{
    margin-top: 0;
}

.single-product .col-2 img{
    padding: 0;
}
.single-product .col-2{
    padding: 20px;
}

.single-product h4{
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
}

.single-product select{
    display: block;
    padding: 10px;
    margin-top: 20px;
}

.single-product input{
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #ff523b;
}
input:focus{
    outline: none;
}
.single-product .fa{
    color: #ff523b;
    margin-left: 10px;
}

.small-img-row{
    display: flex;
    justify-content: space-between;
}

.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
/*--------------About Us--------------------*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(img/pro.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}
.sub-header h1{
    margin-top: -40px;
}
.sub-header p{
    margin-top: -80px;
}

.about-us {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 0px;
}

.about-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 100%;
}

.about-col h1{
    padding-top: 0;
}

.about-col p{
    padding: 15px 0 25px;
}

.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}

.red-btn:hover{
    color: #fff;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --accent: #3b82f6;
    --light: #f9fafb;
    --dark: #1f2937;
    --gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.benefits-section {
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.section-title span {
    color: var(--primary-dark);
    font-weight: 700;
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
    min-width: 250px;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 15px;
    min-width: 24px;
}

.benefit-content {
    line-height: 1.4;
}

.benefit-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
    white-space: nowrap;
}

.benefit-text {
    color: var(--gray);
    font-size: 0.85rem;
    display: none; /* Hidden in inline version */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-row {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 350px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    animation: fadeIn 0.5s ease forwards;
}

/*--------------------Contact Us Page------------------*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 20px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --accent: #3b82f6;
    --light: #f9fafb;
    --dark: #1f2937;
    --gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.stores-section {
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.section-title span {
    color: var(--primary-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.stores-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.store-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.store-image {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.store-details {
    padding: 25px;
}

.store-name {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.store-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
}

.store-title {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 600;
}

.store-address {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.store-buttons {
    display: flex;
    gap: 10px;
}

.directions-btn, .gallery-btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
}

.directions-btn {
    background-color: var(--primary);
}

.directions-btn:hover {
    background-color: var(--primary-dark);
}

.gallery-btn {
    background-color: var(--gray);
}

.gallery-btn:hover {
    background-color: #5a6268;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stores-container {
        grid-template-columns: 1fr;
    }
    
    .store-buttons {
        flex-direction: column;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/*----------media query for less than 600 screen size---------*/
@media only screen and (max-width: 800px){
    .row{
        text-align: center;

    }
    .col-2, .col-3, .col-4{
        flex-basis: 100%;
    }
    .single-product .row{
        text-align: left;
    }
    .single-product .col-2{
        padding: 20px 0;
    }
    .single-product h1{
        font-size: 26px;
        line-height: 32px;
    }
    .cart-info p{
        display: none;
    }
}
 
