/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.hero-content .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #D31715;
    border: none;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #b3120f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Slick Carousel Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #D31715;
    opacity: 1;
}

.slick-prev,
.slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    font-size: 18px;
}

.slick-prev:before {
    content: '\f053';
}

.slick-next:before {
    content: '\f054';
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content {
        max-width: 80%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Base Styles */
:root {
    --primary-color: #1a237e;
    --secondary-color: #D31715;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #666;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Show mobile menu only on mobile devices */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
}

/* Desktop styles */
@media (min-width: 993px) {
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .main-nav {
        display: block !important;
    }
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #0d1a6b;
    color: white;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Header Styles */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1rem;
}

.main-header {
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.logo h1 {
    font-size: 2.2rem; /* Larger font size */
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    line-height: 1;
}

.logo img {
    max-height: 110px; /* Significantly increased height */
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo span {
    color: var(--secondary-color);
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 10px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search Form Styles */
.search-container {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-input {
    width: 200px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    width: 250px;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.1);
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.1rem;
    margin-left: -35px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--secondary-color);
}

/* Mobile Search */
.mobile-search-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .search-container {
        display: none;
    }
    
    .mobile-search-btn {
        display: block;
    }
    
    .search-container.mobile-visible {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .search-container.mobile-visible .search-input {
        width: 100%;
    }
}

.header-actions a {
    color: var(--text-color);
    margin-left: 20px;
    font-size: 1.2rem;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-slide {
    position: relative;
    height: 95vh;
    min-height: 700px;
    max-height: 1000px;
    display: flex !important;
    align-items: center;
    color: var(--white);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slick Carousel Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--white);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--white);
    opacity: 1;
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-prev { left: 20px; }
.slick-next { right: 20px; }

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    opacity: 1;
}

.slick-prev:before {
    content: '\f053';
}

.slick-next:before {
    content: '\f054';
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-slide {
        height: 90vh;
        min-height: 650px;
    }
}

@media (max-width: 992px) {
    .hero-slide {
        height: 80vh;
        min-height: 550px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 70vh;
        min-height: 500px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .slick-prev { left: 10px; }
    .slick-next { right: 10px; }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.product-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.benefit-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    transition: var(--transition);
    background-color: #f9f9f9;
    border: 1px solid #eee;
}

.benefit-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(26, 35, 126, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
}

.benefit-item h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.product-card h3 {
    padding: 15px;
    font-size: 1.1rem;
    margin: 0;
}

.product-card .btn {
    display: block;
    margin: 15px;
    text-align: center;
}

.product-category {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 10px 0;
    text-transform: capitalize;
}

.product-category a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.product-category a:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: url('images/about-bg.jpg') center/cover no-repeat;
    color: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 35, 126, 0.9);
}

.about-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff5722 !important; 
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Categories */
.categories {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card h3 {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    color: var(--white);
    text-align: center;
    font-size: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
}

.category-card .btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-top .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-widget {
    margin-bottom: 30px;
    padding: 0 15px;
}

/* Add more space after contact info */
.footer-widget:last-child {
    margin-bottom: 50px;
}

/* Add space between contact info items */
.contact-info {
    margin-bottom: 20px;
}

.contact-info li {
    margin-bottom: 18px;
    line-height: 1.6;
    align-items: center;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #ccc;
    transition: var(--transition);
}

.footer-widget a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
   
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    
    color: var(--secondary-color);
   
}

.social-links {
    display: flex;
    margin: 25px 0 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

.footer-widget .initiative-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end; /* Align items to the bottom */
    gap: 30px; /* Increased gap for better spacing */
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: nowrap; /* Prevent wrapping to new line */
    min-height: 100px; /* Ensure enough height for both logos */
}

.initiative-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: nowrap;
}

.initiative-logo {
    display: flex;
    align-items: flex-end; /* Align to bottom */
    justify-content: center;
    text-align: center;
    height: 100%;
    margin: 0;
    padding: 5px 0;
}

/* Base logo styles */
.initiative-logo img {
    height: 60px; /* Base size for both logos */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 0;
}

/* Make Swachh Bharat logo white */
.initiative-logo:last-child img {
    filter: brightness(0) invert(1);
}

/* Make Made in India logo larger */
.initiative-logo:first-child img {
    height: 85px; /* Increased size for Made in India logo */
}

.initiative-logo:hover img {
    transform: scale(1.1);
}

.initiative-logo span {
    color: #ccc;
    font-size: 11px;
    font-weight: 500;
    display: block;
    margin-top: 3px;
}

.footer-widget .initiative-logo span {
    color: #eee;
    font-size: 12px;
}

@media (max-width: 576px) {
    .initiative-logos {
        flex-direction: column;
        gap: 15px;
    }
    
    .initiative-logo img {
        height: 35px;
    }
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .featured-products,
    .about-section,
    .categories {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .hero-slide {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 8px 16px;
    }
    
    .footer-top .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        text-align: left;
    }
}
/* Hover Effects for Feature Items */
.feature-item {
    position: relative;
    overflow: hidden;
}

.feature-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #1a237e, #D31715);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    opacity: 0;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: transparent;
}

.feature-item:hover:before {
    height: 100%;
    opacity: 1;
    bottom: 0;
}

.feature-item:hover .feature-icon {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.feature-item:hover .feature-icon i {
    color: #fff !important;
}

.feature-item:hover h3 {
    color: #fff !important;
}

.feature-item > * {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .feature-item {
        padding: 30px 15px !important;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .feature-icon i {
        font-size: 28px !important;
    }
}