        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            overflow-x: hidden;
            padding-top: 120px;
            background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),   linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));  
        }

        /* Header styles */
        .top-bar {
            background-color: #10a5c8;
            color: white;
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            padding: 10px 5%;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 101; 
        }

        .contact-info {
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 5px;
        }

        .social-icons {
            display: flex;
            align-items: center;
        }

        .follow-text {
            margin-right: 10px;
            font-size: 14px;
            font-weight: 500;
        }

        .social-icons a {
            color: white;
            margin-left: 10px;
            text-decoration: none;
            width: 24px;
            height: 24px;
            background: white;
            color: #0057FF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        /* Main navigation - FIXED POSITION */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: fixed;
            top: 40px;
            left: 0;
            right: 0;
            z-index: 100;
            transition: all 0.3s ease;
            height: 80px; /* Set explicit height to match the padding-top value in body */
            box-sizing: border-box;
        }
        
        .logo {
            display: flex;
            align-items: center;
            height: 100%; /* Make logo container take full height of header */
            overflow: hidden;
        }
        
        .logo img {
            height: 100%; /* Make image take full height of logo container */
            width: auto; /* Maintain aspect ratio */
            object-fit: contain;
            transform-origin: left center;
            transition: transform 0.3s ease;
        }
        
        .logo img:hover {
            transform: scale(1.2); /* Enlarge by 20% on hover */
        }

        .brand-name {
            color: #333;
            font-size: 24px;
            font-weight: bold;
            margin-left: 10px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            position: relative;
            margin: 0 15px;
        }

        .nav-menu a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            padding: 10px 0;
            display: block;
        }

        .nav-menu a:hover {
            color: #0057FF;
        }

        .dropdown::after {
            content: "▼";
            font-size: 10px;
            margin-left: 5px;
            vertical-align: middle;
        }

        .utility-nav {
            display: flex;
            align-items: center;
        }

        .search-icon {
            margin-right: 15px;
            cursor: pointer;
            font-size: 18px;
            color: #333;
            transition: color 0.3s ease;
        }

        .search-icon:hover {
            color: #0057FF;
        }

        .cart-icon {
            position: relative;
            margin-right: 20px;
            cursor: pointer;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #0057FF;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
        }

        .cta-button {
            background-color: #0057FF;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 87, 255, 0.3);
        }

        .cta-button:hover {
            background-color: #0048d5;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 87, 255, 0.4);
        }

        .hamburger-menu {
            display: none;
            cursor: pointer;
            background: transparent;
            border: none;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 210;
        }

        .hamburger-menu span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #333;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger-menu span:nth-child(1) {
            top: 0px;
        }

        .hamburger-menu span:nth-child(2) {
            top: 8px;
        }

        .hamburger-menu span:nth-child(3) {
            top: 16px;
        }

        .hamburger-menu.active span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .hamburger-menu.active span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }

        /* Add margin-top to body to account for fixed header */
        body {
            padding-top: 80px; /* Adjust based on header height */
        }

        /* Slider styles */
        .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            height: 80vh;
        }

        .slider {
            display: flex;
            transition: transform 0.8s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .slide img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Improved slide overlay with better contrast */
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 11, 46, 0.7); /* Darkened overlay for better contrast */
            z-index: 2;
        }

        /* Improved slider content visibility */
        .slide-content {
            max-width: 800px;
            position: relative;
            z-index: 3; /* Above the overlay */
            color: white;
            padding: 0 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
        }

        .slide-tagline {
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ffffff, #00a7d0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            opacity: 1; /* Make visible by default */
            animation: fadeInUp 1s forwards;
        }

        .slide h1 {
            font-size: 48px;
            margin-bottom: 20px;
            opacity: 1; /* Make visible by default */
            animation: fadeInUp 1s forwards 0.2s;
            position: relative;
        }

        .slide h1::after {
            content: '';
            width: 80px;
            height: 4px;
            background: #00a7d0;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .slide p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 1; /* Make visible by default */
            animation: fadeInUp 1s forwards 0.4s;
        }

        .slide-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            opacity: 1; /* Make visible by default */
            animation: fadeInUp 1s forwards 0.6s;
        }

        .slide-button {
            display: inline-block;
            background-color: #00a7d0;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 167, 208, 0.3);
        }

        .slide-button:hover {
            background-color: white;
            color: #0a0b2e;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
        }

        .slide-button.outline {
            background-color: transparent;
            border: 2px solid white;
        }

        .slide-button.outline:hover {
            background-color: white;
            color: #0a0b2e;
        }

        /* Shape divider */
        .shape-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 4;
        }

        .shape-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 70px;
        }

        .shape-divider .shape-fill {
            fill: rgba(255, 255, 255, 0.9);
    
        }

        /* Slider navigation */
        .slider-nav {
            position: absolute;
            bottom: 80px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 5;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background-color: white;
            transform: scale(1.2);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* CSS for the product stamp image */
/* Existing styles (assumed) - add these if you don't have them already */

/* CSS for the product stamp image */
/************* Stamp ************/
/* Existing styles (assumed) - add these if you don't have them already */
.product-card {
    position: relative;
    border-radius: 8px;
    overflow: visible; /* Changed from 'hidden' to allow elements to extend outside */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    background-color: #fff;
}

.product-image {
    position: relative;
    overflow: visible; /* Changed from 'hidden' to allow stamp to display properly */
}

/* Completely revised stamp positioning */
.product-stamp {
    position: absolute;
    top: -60px; /* Negative value to place it higher than the container */
    left: 0px; /* Negative value to ensure it extends to the left */
    z-index: 10; /* Increased z-index to ensure it appears on top of everything */
    width: 180px;
    height: 180px;
    pointer-events: none; /* So it doesn't interfere with clicks */
}

.stamp-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: top left;
    transition: transform 0.3s ease;
}

/* Optional hover effect for stamp */
.product-card:hover .stamp-image {
    transform: scale(1.05);
}

/* Hover effect for product card */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Media queries for responsiveness */
@media (max-width: 1024px) {
    .product-stamp {
        width: 135px;
        height: 135px;
        top: -15px;
        left: 0px;
    }
}

@media (max-width: 768px) {
    .product-stamp {
        width: 112px;
        height: 112px;
        top: -10px;
        left: 0px;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .product-stamp {
        width: 90px;
        height: 90px;
        top: -28px;
        left: 0px;
    }
    
    .product-card {
        margin-bottom: 15px;
    }
}

/* Alternative position classes if needed */
.product-stamp.top-right {
    top: -20px;
    left: auto;
    right: -20px;
}

.product-stamp.bottom-right {
    top: auto;
    bottom: -20px;
    right: -20px;
    left: auto;
}

.product-stamp.bottom-left {
    top: auto;
    bottom: -20px;
    right: auto;
    left: -20px;
}

/* For centered stamp */
.product-stamp.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}
/***********stamp end**********/

        /* Search modal */
        .search-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .search-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .search-form {
            width: 80%;
            max-width: 600px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 15px 20px;
            font-size: 18px;
            border-radius: 30px;
            border: none;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search-button {
            position: absolute;
            right: 20px;
            top: 15px;
            background: transparent;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

        .close-search {
            position: absolute;
            top: 40px;
            right: 40px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-search:hover {
            transform: rotate(90deg);
        }

        /* Responsive styles - Improved */
        @media (max-width: 1024px) {
            .slide h1 {
                font-size: 42px;
            }
            
            .slide p {
                font-size: 17px;
            }
            
            .cta-button {
                padding: 10px 20px;
                font-size: 15px;
            }
            
            .slider-container {
                height: 70vh;
            }
            
            .shape-divider svg {
                height: 60px;
            }
            
            body {
                padding-top: 70px; /* Adjust based on smaller header height */
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 101;
                height: auto; /* Let it take natural height */
            }
        
            .main-header {
                top: 80px; /* Increase this value to account for the expanded top-bar height */
            }
            
            body {
                padding-top: 140px; /* Adjust this based on combined height of top-bar and main-header */
            }

            .social-icons {
                margin-top: 10px;
            }

            .hamburger-menu {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -300px;
                background-color: white;
                flex-direction: column;
                width: 300px;
                height: 100vh;
                box-shadow: -2px 0 5px rgba(0,0,0,0.1);
                transition: right 0.3s ease;
                padding: 80px 30px 30px;
                z-index: 150;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }
            
            .utility-nav .cta-button {
                display: none;
            }
            
            .slide {
                height: 100%;
            }

            .slide h1 {
                font-size: 32px;
            }

            .slide-tagline {
                font-size: 14px;
            }

            .slide p {
                font-size: 16px;
            }
            
            .slide-content {
                padding: 0 15px;
                width: 90%; /* Ensure content is not cut off */
            }
            
            .slider-container {
                height: 60vh;
                 /* Add margin to avoid content overlap */
            }
            
            .shape-divider svg {
                height: 50px;
            }
            
            .slide-buttons {
                flex-direction: column;
                gap: 10px;
                width: 80%;
                max-width: 250px;
                margin: 0 auto;
            }
            
            .slider-nav {
                bottom: 60px;
            }
            
        }

        @media (max-width: 480px) {
            .top-bar {
                padding: 8px 2%;
            }
            
            .contact-info {
                font-size: 13px;
            }
            
            .follow-text {
                font-size: 12px;
            }
            
            .main-header {
                top: 70px; /* Adjust for smaller top-bar on very small screens */
            }  
            .logo img {
                height: 40px;
            }
            
            .brand-name {
                font-size: 20px;
            }
            
            .slide h1 {
                font-size: 24px;
            }
            
            .slide-tagline {
                font-size: 12px;
                letter-spacing: 1px;
            }
            
            .slide p {
                font-size: 14px;
                margin-bottom: 20px;
            }
            
            .slide-button {
                padding: 10px 20px;
                font-size: 14px;
                width: 100%; /* Take full width on very small screens */
            }
            
            .slider-container {
                height: 50vh;
            }
            
            .shape-divider svg {
                height: 30px;
            }
            
            .slider-nav {
                bottom: 40px;
            }
            
            .slider-dot {
                width: 8px;
                height: 8px;
            }
            
            .close-search {
                top: 20px;
                right: 20px;
            }
            
            body {
                padding-top: 120px; /* Adjust this value based on actual heights */
            }
        }

/*********      (Header+Slider) End ***********/


/************       Product Start ****************/
    /* Color variables based on company logo */
/* Color variables based on company logo */
:root {
    --premier-navy: #0A0A2A;
    --premier-teal: #08ABC9;
    --premier-white: #FFFFFF;
    --premier-light-gray: #F5F5F5;
    --premier-accent: #FF6B35;
    --premier-light-teal: rgba(8, 171, 201, 0.1);
    --premier-dark-teal: #067d94;
    --premier-light-blue: #e6f7fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.products-section {
    padding: 25px 5% 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"), linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

/* Decorative elements to match logo style */
.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--premier-navy) 0%, var(--premier-teal) 100%);
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: var(--premier-light-teal);
    opacity: 0.5;
    border-radius: 50% 0 0 0;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--premier-navy);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80%;
    height: 5px;
    background: linear-gradient(90deg, var(--premier-teal) 0%, var(--premier-navy) 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.section-title p {
    color: #555;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    background: var(--premier-light-teal);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 30px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Modified products container to show 3 per row */
.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Updated Product Card Style */
.product-card {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    background-color: var(--premier-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 1; /* Changed from 0 to make cards visible immediately */
    transform: translateY(0); /* Changed from translateY(30px) for immediate visibility */
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    height: auto; /* Changed from fixed height to auto */
    min-height: 340px; /* Added min-height instead of fixed height */
    cursor: pointer;
}

/* Added animation for card appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

/* Hover effects for non-touch devices only */
@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(8, 171, 201, 0.3);
        border-color: var(--premier-teal);
    }

    .product-card:hover .product-image img {
        transform: scale(1.05);
        filter: brightness(0.8);
    }

    .product-card:hover .product-overlay {
        opacity: 1;
        visibility: visible;
    }

    .product-card:hover .product-title h3 {
        color: var(--premier-teal);
    }

    .product-card:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .product-card:hover::after {
        opacity: 1;
    }
}

.product-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--premier-navy) 0%, var(--premier-teal) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

/* Logo-inspired decorative corner */
.product-card::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 15px;
    height: 15px;
    background-color: var(--premier-teal);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: -50px;
    background: linear-gradient(90deg, var(--premier-teal) 0%, var(--premier-navy) 100%);
    color: white;
    padding: 12px 60px;
    font-weight: bold;
    font-size: 0.55rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

/* Enhanced overlay styles */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 42, 0.9) 0%, rgba(8, 171, 201, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden; /* Added for better mobile experience */
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

/* Add active class for the touch devices */
.product-card.active .product-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: white;
}

.product-title {
    padding: 15px;
    text-align: center;
    position: relative;
}

.product-title h3 {
    color: var(--premier-navy);
    font-size: 1.4rem;
    margin-bottom: 0px;
    transition: all 0.3s ease;
}

/* Features styling for overlay */
.product-features {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.feature:last-child {
    margin-bottom: 0;
}

@media (hover: hover) {
    .feature:hover {
        transform: translateX(5px);
    }
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--premier-teal);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.8rem;
    box-shadow: 0 3px 6px rgba(8, 171, 201, 0.2);
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.feature span:last-child {
    font-weight: 500;
    color: white;
    text-align: left;
}

/* Enhanced Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0 5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

@media (hover: hover) {
    .btn:hover::before {
        left: 0;
    }
    
    .btn-primary:hover {
        background-color: var(--premier-dark-teal);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(8, 171, 201, 0.4);
    }
    
    .btn-outline:hover {
        background-color: white;
        color: var(--premier-navy);
        transform: translateY(-3px);
    }
}

.btn-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--premier-teal);
    color: white;
    box-shadow: 0 5px 15px rgba(8, 171, 201, 0.3);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

/* Add a "View Details" button that's visible on mobile without hover */
.mobile-view-details {
    display: none;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--premier-teal);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(8, 171, 201, 0.3);
    z-index: 3;
    text-decoration: none;
}

/* Media Queries */
@media (max-width: 1200px) {
    .product-card {
        flex: 0 0 calc(33.33% - 20px);
        max-width: calc(33.33% - 20px);
    }
}

@media (max-width: 992px) {
    .product-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .section-title h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
        min-height: 280px;
    }
    
    .product-image {
        height: 190px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .feature {
        margin-bottom: 8px;
    }
    
    .feature span:last-child {
        font-size: 0.85rem;
    }
    
    .product-overlay {
        padding: 15px;
    }
    
    .product-features {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    /* Show mobile view details button */
    .mobile-view-details {
        display: block;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 30px 4% 50px;
    }
    
    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 270px;
        margin-bottom: 15px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-features {
        padding: 10px;
        max-height: 140px;
        overflow-y: auto;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .product-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .product-title h3 {
        font-size: 1.2rem;
    }
    
    .feature span:last-child {
        font-size: 0.8rem;
    }
}

/* For small mobile screens */
@media (max-width: 380px) {
    .product-image {
        height: 160px;
    }
    
    .product-features {
        max-height: 120px;
    }
    
    .feature {
        margin-bottom: 6px;
    }
}
/**************     Product End         **********************/

/*************      why choose us       **********************/
     /* Base Variables */
     :root {
        --premier-navy: #010136;
        --premier-teal: #08ABC9;
        --premier-light-teal: #E0F7FC;
        --premier-dark-teal: #057A91;
        --premier-white: #FFFFFF;
        --premier-light-gray: #F8FBFE;
        --premier-text: #333844;
        --premier-accent: #FFB900;
        --premier-radius: 15px;
    }

    /* Why Choose Us Section Styles - Contained within section */
    .why-choose-us-section {
        padding: 25px 5% 20px;
        background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),   linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
        position: relative;
        overflow: hidden;
        margin: 0;
        border: none;
        box-sizing: border-box;
    }

    /* Background geometric elements inspired by the logo */
    .premier-bg-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }
    
    .premier-bg-shapes::before {
        content: '';
        position: absolute;
        top: 5%;
        right: 5%;
        width: 200px;
        height: 200px;
        border-radius: 50px 50px 0 50px;
        border: 3px solid rgba(1, 1, 54, 0.06);
        transform: rotate(45deg);
    }
    
    .premier-bg-shapes::after {
        content: '';
        position: absolute;
        bottom: 10%;
        left: 3%;
        width: 150px;
        height: 150px;
        background-color: rgba(8, 171, 201, 0.05);
        border-radius: 40px 0 40px 40px;
    }

    .why-choose-us-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 10px;
        background: linear-gradient(90deg, var(--premier-navy) 0%, var(--premier-teal) 100%);
    }

    .section-title {
        text-align: center;
        position: relative;
        margin-bottom: 40px;
        padding-bottom: 20px;
        z-index: 1;
    }

    .logo-accent {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        background-color: var(--premier-teal);
        border-radius: 10px;
        opacity: 0.1;
        z-index: -1;
    }

    .section-title h2 {
        color: var(--premier-navy);
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--premier-navy), var(--premier-teal));
        border-radius: 2px;
    }

    .section-title p {
        color: var(--premier-teal);
        font-size: 1.2rem;
        font-weight: 500;
        margin: 0;
    }

    .features-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 20px 0;
        position: relative;
        z-index: 2;
    }

    .feature-box {
        background-color: var(--premier-white);
        border-radius: var(--premier-radius);
        padding: 35px 25px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-align: center;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(8, 171, 201, 0.08);
    }

    .feature-box:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(8, 171, 201, 0.15);
        border-color: rgba(8, 171, 201, 0.2);
    }

    .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 50%;
        background: linear-gradient(to bottom, var(--premier-teal), transparent);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .feature-box:hover::before {
        opacity: 1;
        height: 70%;
    }

    .premier-feature-icon {
        width: 90px;
        height: 90px;
        background-color: var(--premier-light-teal);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        margin: 0 auto 25px;
        color: var(--premier-teal);
        transition: all 0.4s ease;
        position: relative;
    }

    .premier-feature-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: 2px dashed var(--premier-teal);
        opacity: 0.3;
        animation: rotate 30s linear infinite;
    }

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .feature-box:hover .premier-feature-icon {
        background-color: var(--premier-teal);
        color: var(--premier-white);
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(8, 171, 201, 0.2);
    }

    .feature-box h3 {
        color: var(--premier-navy);
        font-size: 1.5rem;
        margin-bottom: 18px;
        font-weight: 700;
        position: relative;
        padding-bottom: 12px;
    }

    .feature-box h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background-color: var(--premier-teal);
        opacity: 0.6;
    }

    .feature-box p {
        color: var(--premier-text);
        line-height: 1.7;
        font-size: 1rem;
    }

    .about-premier {
        margin-top: 70px;
        display: flex;
        align-items: stretch;
        gap: 40px;
        background-color: var(--premier-white);
        border-radius: 25px;
        padding: 0;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    .premier-logo-element {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
        background-color: var(--premier-light-teal);
        border-radius: 30px 0 0 0;
        transform: rotate(20deg);
        z-index: 0;
        opacity: 0.5;
    }

    .premier-logo-element::before {
        content: '';
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-color: var(--premier-teal);
        border-radius: 10px;
    }

    .about-content {
        flex: 1.5;
        padding: 60px 50px;
        position: relative;
        z-index: 1;
    }

    .about-content h3 {
        font-size: 2.5rem;
        color: var(--premier-navy);
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .about-content h3 span {
        color: var(--premier-teal);
        font-weight: 700;
        display: block;
        margin-top: 5px;
        font-family: 'Arial', sans-serif;
    }

    .about-content p {
        color: var(--premier-text);
        line-height: 1.8;
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    .btn-about {
        display: inline-block;
        padding: 14px 35px;
        background: linear-gradient(90deg, var(--premier-navy) 0%, var(--premier-teal) 100%);
        color: white;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.05rem;
        box-shadow: 0 10px 20px rgba(1, 1, 54, 0.2);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .btn-about:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(1, 1, 54, 0.3);
    }

    .btn-about::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: all 0.6s ease;
        z-index: -1;
    }

    .btn-about:hover::before {
        left: 100%;
    }

    .about-image {
        flex: 1;
        position: relative;
        min-height: 300px;
    }

    .image-frame {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 0 25px 25px 0;
        overflow: hidden;
        box-shadow: -10px 0 30px rgba(1, 1, 54, 0.1);
        transition: transform 0.5s ease;
    }

    .image-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(8, 171, 201, 0.2) 0%, transparent 100%);
        z-index: 1;
    }

    .image-frame::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to top, rgba(1, 1, 54, 0.7), transparent);
        z-index: 1;
    }

    .image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: all 0.6s ease;
    }

    .about-image:hover .image-frame {
        transform: scale(1.02);
    }

    .about-image:hover .image-frame img {
        transform: scale(1.1);
    }

    /* New quality badge element */
    .premier-quality-badge {
        position: absolute;
        right: 5%;
        bottom: -30px;
        width: 120px;
        height: 120px;
        background-color: var(--premier-navy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 10px 30px rgba(1, 1, 54, 0.3);
        transform: rotate(-10deg);
        transition: all 0.3s ease;
    }

    .premier-quality-badge:hover {
        transform: rotate(0) scale(1.05);
    }

    .badge-inner {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        border: 2px dashed var(--premier-teal);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 10px;
    }

    .badge-icon {
        color: var(--premier-teal);
        margin-bottom: 5px;
    }

    .badge-inner span {
        font-weight: bold;
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .badge-inner p {
        margin: 0;
        font-size: 0.8rem;
        opacity: 0.8;
    }

    /* Responsive Media Queries */
    @media (max-width: 1200px) {
        .features-container {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .about-content {
            padding: 40px 30px;
        }
        
        .about-content h3 {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 1024px) {
        .features-container {
            grid-template-columns: repeat(2, 1fr);
        }

        .about-premier {
            flex-direction: column;
        }

        .about-content {
            padding: 40px;
        }

        .image-frame {
            position: relative;
            height: 400px;
            border-radius: 0 0 25px 25px;
        }
    }

    @media (max-width: 768px) {
        .why-choose-us-section {
            padding: 25px 4% 20px;
        }
        
        .section-title h2 {
            font-size: 2.4rem;
        }

        .features-container {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .feature-box {
            padding: 30px;
        }

        .about-content h3 {
            font-size: 2rem;
        }

        .premier-quality-badge {
            right: 50%;
            transform: translateX(50%) rotate(-10deg);
        }
    }

    @media (max-width: 480px) {
        .why-choose-us-section {
            padding: 25px 3% 20px;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
        
        .section-title p {
            font-size: 1rem;
        }

        .premier-feature-icon {
            width: 80px;
            height: 80px;
        }

        .feature-box h3 {
            font-size: 1.4rem;
        }

        .about-content {
            padding: 30px 25px;
        }

        .about-content h3 {
            font-size: 1.8rem;
        }

        .btn-about {
            padding: 12px 30px;
            font-size: 1rem;
        }
        
        .image-frame {
            height: 300px;
        }
        
        .premier-quality-badge {
            width: 100px;
            height: 100px;
        }
        
        .badge-inner {
            width: 90px;
            height: 90px;
        }
        
        .badge-inner span {
            font-size: 1rem;
        }
    }
/**************     Why choose us end       ********************/
/**************     Review Section  START     **********************/

:root {
    --premier-navy: #05052A;
    --premier-teal: #08ABC9;
    --premier-white: #FFFFFF;
    --premier-light-gray: #F5F5F5;
    --premier-dark-teal: #067d94;
    --premier-light-teal: rgba(8, 171, 201, 0.1);
    --premier-text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.testimonials-section {
    padding: 25px 5%;
    background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),   linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--premier-navy) 0%, var(--premier-teal) 100%);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 30%;
    background-image: radial-gradient(var(--premier-light-teal) 20%, transparent 20%);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.section-title {
    margin-top: 0px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--premier-navy);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80%;
    height: 5px;
    background: linear-gradient(90deg, var(--premier-teal) 0%, var(--premier-navy) 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.section-title p {
    color: #555;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    background: var(--premier-light-teal);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 30px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* New slider layout */
.testimonials-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    width: 100%;
    position: relative;
    height: 450px;
}

.testimonial-slide {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    top: 0;
    left: 0;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.testimonial-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.client-image-container {
    width: 370px;
    height: 370px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(5, 5, 42, 0.2);
    border: 5px solid var(--premier-white);
    position: relative;
    z-index: 2;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.client-image-container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed var(--premier-teal);
    border-radius: 15px;
    z-index: 1;
    opacity: 0.5;
}

.client-image-container:hover {
    transform: rotate(0deg) scale(1.02);
}

.client-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1.5;
    background-color: var(--premier-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 5px solid var(--premier-teal);
    z-index: 1;
}

.testimonial-content::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    right: 30px;
    top: 20px;
    opacity: 0.1;
    color: var(--premier-teal);
    font-family: Georgia, serif;
}

.testimonial-client-info h4 {
    color: var(--premier-navy);
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.testimonial-client-info p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
}

.testimonial-rating {
    color: #FFB900;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    margin: 15px 0;
}

.testimonial-text p {
    color: var(--premier-text);
    line-height: 1.8;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-product {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tag {
    background-color: var(--premier-light-teal);
    color: var(--premier-navy);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--premier-teal);
    transition: all 0.3s ease;
}

.product-tag:hover {
    background-color: var(--premier-teal);
    color: white;
}

/* Slider controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.prev-btn, .next-btn {
    background: var(--premier-navy);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(5, 5, 42, 0.2);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--premier-teal);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active, .dot:hover {
    background-color: var(--premier-teal);
    transform: scale(1.2);
}

.testimonial-cta {
    margin-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-cta p {
    font-size: 1.3rem;
    color: var(--premier-navy);
    margin-bottom: 10px;
    font-weight: 500;
}

.btn-testimonial {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(90deg, var(--premier-teal) 0%, var(--premier-navy) 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(8, 171, 201, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8, 171, 201, 0.5);
}

.btn-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-testimonial:hover::before {
    left: 100%;
}

/* Media Queries */
/* Keep all original CSS the same until the Media Queries section */

/* Media Queries - Minimal Changes */
@media (max-width: 1024px) {
    .testimonials-slider {
        height: 500px;
    }
    
    .testimonial-slide {
        flex-direction: column;
        height: auto;
    }
    
    .testimonial-image, .testimonial-content {
        flex: none;
        width: 100%;
    }
    
    .testimonial-image {
        padding-bottom: 0;
    }
    
    .client-image-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    
    .testimonial-content {
        padding: 30px;
        border-left: none;
        border-top: 5px solid var(--premier-teal);
        margin-top: -30px;
        z-index: 0;
    }
    
    .section-title h2 {
        font-size: 2.4rem;
    }
    
    /* Add just enough space for controls */
    .slider-controls {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 25px 4% 35px; /* Slight increase to bottom padding */
    }
    
    .testimonials-slider {
        height: 570px; /* Slightly increased to accommodate content */
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-client-info h4 {
        font-size: 1.4rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 20px 3% 30px; /* Small increase to bottom padding */
    }
    
    .testimonials-slider {
        height: 650px; /* Increased to prevent overlap */
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .client-image-container {
        width: 200px;
        height: 200px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-text p {
        font-size: 0.95rem;
    }
    
    .testimonial-cta p {
        font-size: 1.1rem;
    }
    
    .btn-testimonial {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
    }
}
/**************     REVIEW SECTION END        **********************/

/**************     INTEGRATED SECTION START        ***************/
:root {
    --primary-color: #00205B; /* Dark blue from logo */
    --secondary-color: #00B2D6; /* Turquoise blue from logo */
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --text-color: #555555;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.integrated-section {
    width: 100%;
    overflow: hidden;
    background-color: var(--light-gray);
    position: relative;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    background-color: var(--primary-color);
    padding: 0;
}

.nav-tabs .tab {
    padding: 15px 30px;
    color: var(--white);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    font-size: 16px;
    text-align: center;
}

.nav-tabs .tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-tabs .tab.active {
    background-color: var(--secondary-color);
}

.tab-content {
    display: flex;
    transition: all 0.5s ease;
}

.tab-pane {
    min-width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0;
}

.tab-pane-image {
    flex: 0 0 40%;
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    order: 1; /* Image on the left */
}

.tab-pane-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    min-height: 100%;
}

.tab-pane:hover .tab-pane-image img {
    transform: scale(1.05);
}

.tab-pane-content {
    flex: 0 0 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),   linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
    order: 2; /* Content on the right */
    min-height: 480px; /* Set minimum height to ensure image proportions */
}

/* Make image height match content height in desktop view */
@media (min-width: 769px) {
    .tab-pane {
        align-items: stretch;
    }
    
    .tab-pane-image {
        display: flex;
        align-items: stretch;
        min-height: 100%;
    }
}

h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    margin-top: 15px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 0.3s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 15px;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-left: 3px solid var(--secondary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.timeline {
    position: relative;
    margin-top: 20px;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 3px solid var(--primary-color);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.vision-values {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.vision-value-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.vision-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vision-value-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.testimonial {
    background-color: var(--white);
    padding: 20px;
    border-radius: 5px;
    position: relative;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 60px;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .tab-pane-content {
        padding: 25px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .vision-value-item {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .nav-tabs .tab {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .tab-pane {
        flex-direction: column;
    }
    
    .tab-pane-image {
        order: 1; /* Image first in mobile view */
        min-height: 250px;
        flex: 0 0 250px;
        width: 100%;
    }
    
    .tab-pane-content {
        order: 2; /* Content second in mobile view */
        min-height: auto;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .stat-item {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .nav-tabs {
        flex-direction: column;
    }
    
    .nav-tabs .tab {
        padding: 10px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .tab-pane-content {
        padding: 20px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .stats-container, .vision-values {
        flex-direction: column;
    }
    
    .stat-item, .vision-value-item {
        min-width: 100%;
    }
}
/**************     INTEGRATED SECTION END      *****************/