
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333; 
    background-color: #f4f4f4; 
}


body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
    background-color: #007bff; 
    color: #fff;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background-color: transparent; 
    transform: translateY(-2px);
    
}

.btn-secondary {
    background-color: #007bff; 
    color: #fff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background-color: transparent;
    transform: translateY(-2px);
}


/* Header & Navigation */
.site-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    padding: 20px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
   width: 100px;
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #fff;
    font-weight: 500;
    padding: 5px 0;
    position: relative; 
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transition: width 0.4s ease-in-out;
    transform-origin: left; 
}

.main-nav ul li a:hover {
    color: #ddd; 
}

.main-nav ul li a:hover::after {
    width: 100%; 
}

.nav-btn {
    margin-left: 30px; 
}

.menu-toggle {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle svg path {
    stroke: #fff; 
}

/* Hero Section */
.hero-section {
    position: relative; 
    min-height: 100vh; 
    background-image: url('images/bg-hero.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; 
    padding: 120px 0 80px; 
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 30, 40, 0.7); 
    z-index: 1; 
}

.hero-content-container {
    position: relative; 
    z-index: 2;
}

.hero-text {
    max-width: 650px; 
}

.hero-subtitle {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5em; 
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1em;
    margin-bottom: 35px;
    max-width: 550px; 
    line-height: 1.7;
}

.hero-btn {
    padding: 12px 35px;
    font-size: 1.1em;
}

.floating-icon {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2; 
}
.floating-icon svg {
    background-color: white;
    border-radius: 50%;
    padding: 5px; 
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


/* Animation for hero content */
.animate-on-load {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFadeIn 0.8s ease-out forwards;
}

/* Different delays for staggered animation */
.hero-subtitle.animate-on-load { animation-delay: 0.2s; }
.hero-title.animate-on-load { animation-delay: 0.4s; }
.hero-description.animate-on-load { animation-delay: 0.6s; }
.hero-btn.animate-on-load { animation-delay: 0.8s; }
.floating-icon.animate-on-load {animation-delay: 1s;}


@keyframes slideUpFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design - Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8em;
    }
    .hero-description, .hero-subtitle {
        font-size: 1em;
    }
    .main-nav ul li {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 0 15px; 
    }
    .main-nav {
        position: fixed; 
        top: 0;
        right: -100%; 
        width: 280px;
        height: 100vh;
        background-color: #1c2331; 
        padding-top: 80px; 
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1); 
        z-index: 999; 
        overflow-y: auto; 
    }

    .main-nav.active {
        right: 0; 
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav ul li {
        margin: 0; 
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid #2a3447; 
        font-size: 1.1em;
    }
    .main-nav ul li a::after { 
        bottom: 10px; 
    }
    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .nav-btn {
        display: none;  
    }

    .menu-toggle {
        display: block; 
        z-index: 1001; 
    }
    
    .menu-toggle.active-menu svg path {
        d: path("M6 18L18 6M6 6l12 12"); 
    }


    .hero-section {
        padding-top: 100px; 
        text-align: center; 
    }

    .hero-text {
        max-width: 100%; 
    }

    .hero-title {
        font-size: 2.2em;
    }

    .hero-description {
        font-size: 0.95em;
        margin: 0 auto 30px auto; 
    }
    .floating-icon {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
    .floating-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }
    .logo svg {
        width: 30px;
        height: 30px;
    }
    .hero-title {
        font-size: 2em;
    }
    .hero-description {
        font-size: 0.9em;
    }
    .btn {
        padding: 8px 20px;
        font-size: 0.9em;
    }
    .hero-btn {
        padding: 10px 30px;
    }
    .main-nav {
        width: 100%; 
    }
}

/* =================================== */
/* ==      Our Services Section     == */
/* =================================== */

.services-section {
    padding: 80px 0;
    background-color: #eaf6ff; 
    text-align: center;
}

.services-section .container { 
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #2c3e50; 
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1em;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 77, 153, 0.08); 
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    
    
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 77, 153, 0.15);
}

.service-card .icon-container {
    margin-bottom: 20px;
    font-size: 40px; 
    color: #007bff;
    transition: color 0.3s ease;
}

.service-card:hover .icon-container {
    color: #0056b3; 
}

.service-card h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

.section-button-container {
    text-align: center;
}
.section-button-container .btn { 
    display: inline-block;
    padding: 12px 35px;
    border-radius: 25px; 
    font-weight: 600;
    font-size: 1.1em;
    background-color: #007bff; 
    color: #fff;
    text-decoration: none; 
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.section-button-container .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}


/* Scroll Animation Styles for Services Section  */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition-property: opacity, transform; 
    transition-duration: 0.7s;
    transition-timing-function: ease-out;
    
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for service section elements */
.services-section .section-header.animate-on-scroll { transition-delay: 0.1s; }

.service-cards-grid .service-card.animate-on-scroll:nth-child(1) { transition-delay: 0.2s; }
.service-cards-grid .service-card.animate-on-scroll:nth-child(2) { transition-delay: 0.3s; }
.service-cards-grid .service-card.animate-on-scroll:nth-child(3) { transition-delay: 0.4s; }
.service-cards-grid .service-card.animate-on-scroll:nth-child(4) { transition-delay: 0.25s; }
.service-cards-grid .service-card.animate-on-scroll:nth-child(5) { transition-delay: 0.35s; }
.service-cards-grid .service-card.animate-on-scroll:nth-child(6) { transition-delay: 0.45s; }

.services-section .section-button-container.animate-on-scroll { transition-delay: 0.5s; }


/* Responsive adjustments for Services Section */
@media (max-width: 992px) { 
    .services-section .section-title { 
        font-size: 2.4em;
    }
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    /* Adjust animation delays for 2 columns if needed */
    .service-cards-grid .service-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
    .service-cards-grid .service-card.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
    .service-cards-grid .service-card.animate-on-scroll:nth-child(5) { transition-delay: 0.2s; }
    .service-cards-grid .service-card.animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
}

@media (max-width: 768px) { 
    .services-section {
        padding: 60px 0;
    }
    .services-section .section-title {
        font-size: 2em;
    }
    .services-section .section-subtitle {
        font-size: 1em;
    }
    .service-cards-grid {
        grid-template-columns: 1fr; 
    }
    .service-card {
        padding: 30px 25px;
    }
    .service-card h3 {
        font-size: 1.4em;
    }
    /* Adjust animation delays for 1 column for sequential effect */
    .service-cards-grid .service-card.animate-on-scroll:nth-child(1) { transition-delay: 0.2s; }
    .service-cards-grid .service-card.animate-on-scroll:nth-child(2) { transition-delay: 0.25s; }
    .service-cards-grid .service-card.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
    .service-cards-grid .service-card.animate-on-scroll:nth-child(4) { transition-delay: 0.35s; }
    .service-cards-grid .service-card.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
    .service-cards-grid .service-card.animate-on-scroll:nth-child(6) { transition-delay: 0.45s; }
}

/* =================================== */
/* ==     Our Portfolio Section     == */
/* =================================== */

.portfolio-section {
    padding: 80px 0;
    background-color: #fff; 
    text-align: center;
}

.portfolio-section .container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px;
}


.portfolio-section .section-header {
    margin-bottom: 50px;
}
.portfolio-section .section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}
.portfolio-section .section-subtitle {
    font-size: 1.1em;
    color: #555;
    max-width: 700px; 
    margin: 0 auto 30px auto; 
    line-height: 1.7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.4s ease-out;
}

.portfolio-item:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover img {
    transform: scale(1.08); 
}

.image-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.3); 
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.image-watermark .watermark-logo {
    margin-right: 5px;
    
}

/* Animation Delays for Portfolio Section */
.portfolio-section .section-header.animate-on-scroll { transition-delay: 0.1s; }

.portfolio-grid .portfolio-item.animate-on-scroll:nth-child(1) { transition-delay: 0.2s; }
.portfolio-grid .portfolio-item.animate-on-scroll:nth-child(2) { transition-delay: 0.3s; }
.portfolio-grid .portfolio-item.animate-on-scroll:nth-child(3) { transition-delay: 0.4s; }
.portfolio-grid .portfolio-item.animate-on-scroll:nth-child(4) { transition-delay: 0.5s; }


/* Responsive Adjustments for Portfolio Section */
@media (max-width: 1200px) { 
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
    
    .portfolio-grid .portfolio-item.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; } 
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
    
    .portfolio-grid .portfolio-item.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; } /* New row start */
    .portfolio-grid .portfolio-item.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
}

@media (max-width: 768px) { 
    .portfolio-section .section-title {
        font-size: 2.2em;
    }
    .portfolio-section .section-subtitle {
        font-size: 1em;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px; 
    }
    
    .portfolio-grid .portfolio-item.animate-on-scroll:nth-child(2) { transition-delay: 0.25s; }
    .portfolio-grid .portfolio-item.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
    .portfolio-grid .portfolio-item.animate-on-scroll:nth-child(4) { transition-delay: 0.35s; }
}

/* =================================== */
/* ==      Our Clients Section      == */
/* =================================== */

.clients-section {
    padding: 80px 0;
    background-color: #fff; 
    text-align: center;
}

.clients-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}


.clients-section .section-header {
    margin-bottom: 60px; 
}
.clients-section .section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}
.clients-section .section-subtitle {
    font-size: 1.1em;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    align-items: center; 
}

.client-logo-item {
    
    transition: transform 0.3s ease-in-out;
   
}

.client-logo-item img {
    max-width: 100%; 
    height: auto;   
    max-height: 100px; 
    display: block;
    margin: 0 auto; 
    
}

.client-logo-item:hover {
    transform: scale(1.05);
}



/* Animation Delays for Clients Section */
.clients-section .section-header.animate-on-scroll { transition-delay: 0.1s; }

.clients-grid .client-logo-item.animate-on-scroll:nth-child(1) { transition-delay: 0.2s; }
.clients-grid .client-logo-item.animate-on-scroll:nth-child(2) { transition-delay: 0.3s; }
.clients-grid .client-logo-item.animate-on-scroll:nth-child(3) { transition-delay: 0.4s; }
.clients-grid .client-logo-item.animate-on-scroll:nth-child(4) { transition-delay: 0.5s; }



/* Responsive Adjustments for Clients Section */
@media (max-width: 992px) { 
    .clients-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
    
    .clients-grid .client-logo-item.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; } 
}

@media (max-width: 768px) { 
    .clients-section .section-title {
        font-size: 2.2em;
    }
    .clients-section .section-subtitle {
        font-size: 1em;
    }
    .clients-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px; 
    }
    
    .clients-grid .client-logo-item.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; } /* New row start */
    .clients-grid .client-logo-item.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
}

@media (max-width: 480px) { 
    .clients-grid {
        grid-template-columns: 1fr; 
    }
     
    .clients-grid .client-logo-item.animate-on-scroll:nth-child(2) { transition-delay: 0.25s; }
    .clients-grid .client-logo-item.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
    .clients-grid .client-logo-item.animate-on-scroll:nth-child(4) { transition-delay: 0.35s; }
}

/* =================================== */
/* ==     Testimonial Section       == */
/* =================================== */

.testimonial-section {
    padding: 80px 0;
    background-color: #eaf6ff;
    text-align: center;
}

.testimonial-section .container {
    max-width: 800px; 
    margin: 0 auto;
    padding: 0 20px;
}


.testimonial-quote {
    font-size: 2.2em; 
    font-weight: 700;
    color: #2c3e50; 
    margin-bottom: 30px;
    line-height: 1.4;
    border: none; 
    padding: 0;
}
.testimonial-quote p { 
    margin-bottom: 0;
}


.testimonial-detail {
    font-size: 1.1em;
    color: #495057; 
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 700px; 
    margin-left: auto;
    margin-right: auto;
}



.author-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-designation {
    font-size: 0.95em;
    color: #555;
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.testimonial-section .testimonial-content.animate-on-scroll { transition-delay: 0.1s; } 
.testimonial-section .testimonial-quote.animate-on-scroll { transition-delay: 0.2s; } 
.testimonial-section .testimonial-detail.animate-on-scroll { transition-delay: 0.3s; }
.testimonial-section .testimonial-author.animate-on-scroll { transition-delay: 0.4s; }



/* Responsive Adjustments for Testimonial Section */
@media (max-width: 768px) { 
    .testimonial-section {
        padding: 60px 0;
    }
    .testimonial-quote {
        font-size: 1.8em;
    }
    .testimonial-detail {
        font-size: 1em;
    }
    .author-name {
        font-size: 1.1em;
    }
    .author-designation {
        font-size: 0.9em;
    }
}

/* =================================== */
/* ==   Stats and CTA Section       == */
/* =================================== */

.stats-cta-section {
    padding: 80px 0;
    background-color: #eaf6ff; 
}

.stats-cta-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Statistics Counters */
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
    margin-bottom: 70px; 
}

.stat-item {
    padding: 10px;
    
}

.stat-number {
    font-size: 3.5em; 
    font-weight: 700;
    color: #007bff; 
    display: inline-block; 
}
.stat-suffix { 
    font-size: 3.5em;
    font-weight: 700;
    color: #007bff;
    display: inline-block;
    margin-left: -5px; 
}

.stat-label {
    font-size: 1em;
    font-weight: 500;
    color: #2c3e50; 
    margin-top: 5px;
    line-height: 1.3;
}

/* CTA Box */
.cta-box {
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 77, 153, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text-content {
    flex-basis: 65%; 
    text-align: left;
}

.cta-text-content h3 {
    font-size: 2em;
    font-weight: 700;
    color: #007bff; 
    margin-bottom: 15px;
}

.cta-text-content p {
    font-size: 1.05em;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0; 
}

.cta-button-container {
    flex-basis: 30%;
    text-align: right;
}

.cta-btn { 
    padding: 12px 28px;
    font-size: 1.05em;
    font-weight: 600;
   
}
.cta-botton:hover{
    color: #007bff;
}

/* Animation Delays for Stats and CTA Section */
.stats-cta-section .stats-container.animate-on-scroll { transition-delay: 0.1s; }

.stats-cta-section .cta-box.animate-on-scroll { transition-delay: 0.3s; }


/* Responsive Adjustments for Stats and CTA Section */
@media (max-width: 992px) { 
    .stats-container {
        flex-wrap: wrap; 
        justify-content: space-around;
    }
    .stat-item {
        flex-basis: 45%; 
        margin-bottom: 30px;
    }
    .stat-number, .stat-suffix {
        font-size: 3em;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .cta-text-content {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 25px;
    }
    .cta-text-content h3 {
        font-size: 1.8em;
    }
    .cta-button-container {
        flex-basis: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) { 
    .stat-item {
        flex-basis: 100%; 
        margin-bottom: 25px;
    }
    .stat-item:last-child {
        margin-bottom: 0;
    }
    .stat-number, .stat-suffix {
        font-size: 2.5em;
    }
    .stat-label {
        font-size: 0.95em;
    }

    .cta-box {
        padding: 25px 20px;
    }
    .cta-text-content h3 {
        font-size: 1.6em;
    }
    .cta-text-content p {
        font-size: 1em;
    }
    .cta-btn {
        font-size: 1em;
        padding: 10px 24px;
    }
}

/* =================================== */
/* ==        Site Footer            == */
/* =================================== */

.site-footer {
    background-color: #0B1120; 
    color: #adb5bd; 
    padding: 60px 0 30px;
    font-size: 0.95em;
}

.site-footer .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px; 
}

.footer-column {
    flex: 1; 
    min-width: 220px; 
    margin-bottom: 20px; 
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 120px;
    margin-bottom: 15px;
}



.footer-description {
    line-height: 1.7;
    max-width: 280px; 
}

.footer-column h4 {
    color: #fff; 
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact p a {
    color: #adb5bd; 
    text-decoration: none;
    position: relative;
    padding-bottom: 3px; 
    transition: color 0.3s ease;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px; 
    bottom: 0;
    left: 0;
    background-color: #fff; 
    transition: width 0.35s ease-in-out;
    transform-origin: left;
}

.footer-links ul li a:hover {
    color: #fff; 
}

.footer-links ul li a:hover::after {
    width: 100%; 
}

.footer-contact p {
    margin-bottom: 10px;
    line-height: 1.6;
}
.footer-contact p a:hover {
    color: #fff; 
    text-decoration: underline; 
}


.footer-bottom {
    border-top: 1px solid #232a3b; 
    padding-top: 30px;
    text-align: center;
}

.payment-icons {
    margin-bottom: 15px;
}

.payment-icons i {
    font-size: 2em; 
    color: #adb5bd; 
    margin: 0 8px;
    transition: color 0.3s ease;
}
.payment-icons i:hover {
    color: #fff; 
}

.copyright-text {
    font-size: 0.9em;
    color: #adb5bd;
}

.copyright-text .sourcefind-link {
    color: #007bff; 
    font-weight: 500;
    text-decoration: none;
}
.copyright-text .sourcefind-link:hover {
    text-decoration: underline;
}

/* Persistent Floating Icon */
.persistent-floating-icon {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #007bff; 
    color: #fff; 
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.persistent-floating-icon:hover {
    transform: scale(1.1);
    background-color: #0056b3; 
}


/* Responsive Adjustments for Footer */
@media (max-width: 992px) { 
    .footer-top {
        
    }
    .footer-column.footer-about {
        flex-basis: 100%; 
        margin-bottom: 30px; 
        text-align: center; 
    }
    .footer-column.footer-about .footer-logo {
        justify-content: center; 
    }
    .footer-column.footer-about .footer-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) { 
    .footer-top {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
    .footer-column {
        min-width: 100%; 
        margin-bottom: 30px;
    }
    .footer-column:last-child {
        margin-bottom: 0;
    }
    .footer-column h4 {
        margin-bottom: 15px;
    }
    .footer-links ul li a::after { 
        left: 50%;
        transform: translateX(-50%); 
    }
    .footer-links ul li a:hover::after {
        width: 60%; 
    }
    .footer-logo { 
        justify-content: center;
    }
     .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        padding-top: 20px;
    }
    .payment-icons i {
        font-size: 1.8em;
        margin: 0 5px;
    }
    .copyright-text {
        font-size: 0.85em;
    }
    .persistent-floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
        bottom: 20px;
        left: 20px;
    }
}

/* =================================== */
/* ==     About Us Page Styles      == */
/* =================================== */

/* About Us Hero Section */
.about-hero-section {
    position: relative;
    min-height: 90vh; 
    
    background-image: url('images/ab-bg-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px; 
}

.about-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px; 
}

.about-hero-text h1 {
    font-size: 3.8em; 
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-hero-text .hero-subtitle { 
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-hero-text .hero-description {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9; 
}

/* Animation for About Hero Text (using existing .animate-on-load) */
.about-hero-text h1.animate-on-load { animation-delay: 0.2s; }
.about-hero-text .hero-subtitle.animate-on-load { animation-delay: 0.4s; }
.about-hero-text .hero-description.animate-on-load { animation-delay: 0.6s; }


/* About Content Section (with cards) */
.about-content-section {
    padding: 80px 0;
    background-color: #eaf6ff; 
}

.about-content-section .container { 
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 77, 153, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 77, 153, 0.12);
}

.about-card .card-indicator {
    height: 4px;
    width: 50px; 
    background-color: #007bff; 
    margin-bottom: 20px;
    border-radius: 2px;
    transition: width 0.4s ease-in-out; 
}

.about-card:hover .card-indicator {
    width: 80px; 
}

.about-card h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.7;
}

.about-card ul {
    list-style: none; 
    padding-left: 0;
    font-size: 1em;
    color: #555;
    line-height: 1.8;
}

.about-card ul li {
    margin-bottom: 8px;
    padding-left: 20px; 
    position: relative;
}

.about-card ul li::before {
    content: '▶'; 
    position: absolute;
    left: 0;
    top: 0; 
    color: #007bff; 
    font-size: 0.8em; 
}


/* Animation Delays for About Cards */
.about-cards-grid .about-card.animate-on-scroll:nth-child(1) { transition-delay: 0.2s; }
.about-cards-grid .about-card.animate-on-scroll:nth-child(2) { transition-delay: 0.3s; }
.about-cards-grid .about-card.animate-on-scroll:nth-child(3) { transition-delay: 0.4s; }


/* Responsive Adjustments for About Page */
@media (max-width: 992px) { 
    .about-hero-text h1 {
        font-size: 3em;
    }
    .about-hero-text .hero-subtitle {
        font-size: 1.3em;
    }
    .about-cards-grid {
        grid-template-columns: 1fr; 
    }
     .about-card {
        margin-bottom: 30px;
    }
    .about-card:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) { 
    .about-hero-section {
        min-height: 80vh;
    }
    .about-hero-text h1 {
        font-size: 2.5em;
    }
    .about-hero-text .hero-subtitle {
        font-size: 1.1em;
    }
    .about-hero-text .hero-description {
        font-size: 1em;
    }

    .about-content-section {
        padding: 60px 0;
    }
    .about-card h3 {
        font-size: 1.4em;
    }
    .about-card p, .about-card ul {
        font-size: 0.95em;
    }
}
/* =================================== */
/* ==   Our 6-D Process Section     == */
/* =================================== */

.process-section {
    padding: 80px 0;
    background-color: #f0f5fa; 
}

.process-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-section .section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #2c3e50;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px; 
}

.process-item {
    position: relative;
    padding: 20px;
    padding-top: 50px; 
    text-align: left;
    transition: transform 0.3s ease-out;
}

.process-item:hover {
    transform: translateY(-8px);
}

.process-number-bg {
    position: absolute;
    top: -5px;      
    left: 15px;     
    font-size: 6.5em; 
    font-weight: 700;
    color: rgba(0, 123, 255, 0.08); 
    z-index: 1;
    line-height: 1;
    pointer-events: none; 
    transition: color 0.3s ease-out;
}

.process-item:hover .process-number-bg {
    color: rgba(0, 123, 255, 0.15); 
}

.process-item h3.process-title {
    font-size: 1.5em; 
    font-weight: 700;
    color: #2c3e50; 
    margin-bottom: 12px;
    position: relative;
    z-index: 2; 
    transition: color 0.3s ease-out;
}

.process-item:hover h3.process-title {
    color: #007bff; 
}

.process-item p.process-description {
    font-size: 1em;
    color: #5a6875; 
    line-height: 1.7;
    position: relative;
    z-index: 2; 
    max-width: 300px; 
}

/* Animation Delays for Process Items (using existing .animate-on-scroll logic) */
.process-section .section-header.animate-on-scroll { transition-delay: 0.1s; }

.process-grid .process-item.animate-on-scroll:nth-child(1) { transition-delay: 0.2s; }
.process-grid .process-item.animate-on-scroll:nth-child(2) { transition-delay: 0.3s; }
.process-grid .process-item.animate-on-scroll:nth-child(3) { transition-delay: 0.4s; }
.process-grid .process-item.animate-on-scroll:nth-child(4) { transition-delay: 0.25s; }
.process-grid .process-item.animate-on-scroll:nth-child(5) { transition-delay: 0.35s; }
.process-grid .process-item.animate-on-scroll:nth-child(6) { transition-delay: 0.45s; }


/* Responsive Adjustments for Process Section */
@media (max-width: 992px) { 
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }
    .process-number-bg {
        font-size: 5.5em;
        left: 10px;
    }
    .process-item h3.process-title {
        font-size: 1.4em;
    }
    /* Adjusting animation delays for 2 columns */
    .process-grid .process-item.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
    .process-grid .process-item.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
    .process-grid .process-item.animate-on-scroll:nth-child(5) { transition-delay: 0.2s; }
    .process-grid .process-item.animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
}

@media (max-width: 768px) { 
    .process-section .section-title {
        font-size: 2.4em;
    }
    .process-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .process-item {
        text-align: center; 
        padding-top: 60px; 
    }
    .process-number-bg {
        left: 50%;
        transform: translateX(-50%); 
        top: -10px;
        font-size: 6em;
    }
    .process-item p.process-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
    }
    /* Adjusting animation delays for 1 column */
    .process-grid .process-item.animate-on-scroll:nth-child(1) { transition-delay: 0.2s; }
    .process-grid .process-item.animate-on-scroll:nth-child(2) { transition-delay: 0.25s; }
    .process-grid .process-item.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
    .process-grid .process-item.animate-on-scroll:nth-child(4) { transition-delay: 0.35s; }
    .process-grid .process-item.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
    .process-grid .process-item.animate-on-scroll:nth-child(6) { transition-delay: 0.45s; }
}

/* =================================== */
/* ==   Why Choose Us Section       == */
/* =================================== */


.container-fluid-split {
    display: flex;
    flex-wrap: wrap; 
}

.wcu-image-column {
    flex: 1; 
    min-width: 300px; 
    background-image: url('images/why-pic.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px; 
}

.wcu-accordion-column {
    flex: 1; 
    min-width: 300px; 
    background-color: #eaf6ff; 
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.wcu-content-wrapper {
    max-width: 550px;
    margin: 0 auto;
}

.wcu-accordion-column .section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: left; 
}

.accordion-container {
    width: 100%;
}

.accordion-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 77, 153, 0.07);
    overflow: hidden; 
}
.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 25px;
    background-color: #fff; 
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: 500;
    color: #343a40;
    transition: background-color 0.3s ease;
}

.accordion-title {
    position: relative; 
    padding-bottom: 3px; 
    color: #343a40; 
    transition: color 0.3s ease;
}
.accordion-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: #007bff; 
    transition: width 0.35s ease-in-out;
}
.accordion-header:hover .accordion-title {
    color: #007bff; 
}
.accordion-header:hover .accordion-title::after {
    width: 100%; 
}

.accordion-icon {
    font-size: 1em;
    color: #343a40;
    width: 28px; 
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid #343a40;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.accordion-item.active .accordion-title {
    color: #007bff; 
}
.accordion-item.active .accordion-title::after {
    width: 100%;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #555;
    line-height: 1.7;
    font-size: 0.95em;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Smooth transition */
}
.accordion-content p {
    margin: 0;
    padding-bottom: 20px;
}

.accordion-item.active .accordion-content {
   
    padding-top: 10px;
}


/* Animation Delays for Why Choose Us Section */
.why-choose-us-section .wcu-image-column.animate-on-scroll { transition-delay: 0.1s; }
.why-choose-us-section .wcu-accordion-column.animate-on-scroll { transition-delay: 0.2s; }


/* Responsive Adjustments for Why Choose Us Section */
@media (max-width: 992px) { 
    .container-fluid-split {
        flex-direction: column;
    }
    .wcu-image-column {
        min-height: 350px;
        order: 1; 
    }
    .wcu-accordion-column {
        padding: 50px 30px;
        order: 2;
    }
    .wcu-accordion-column .section-title {
        font-size: 2.4em;
        text-align: center; 
    }
}

@media (max-width: 576px) { 
    .wcu-image-column {
        min-height: 250px;
    }
    .wcu-accordion-column {
        padding: 40px 20px;
    }
    .wcu-accordion-column .section-title {
        font-size: 2em;
    }
    .accordion-header {
        padding: 15px 20px;
        font-size: 1em;
    }
    .accordion-content {
        font-size: 0.9em;
    }
     .accordion-content p {
        padding-bottom: 15px;
    }
}

/* =================================== */
/* ==        Map Section            == */
/* =================================== */

.map-section {
    width: 100%;
    height: 50vh; 
    min-height: 300px; 
    overflow: hidden; 
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none; 
}

/* Animation Delay for Map Section */
.map-section.animate-on-scroll {
    transition-delay: 0.2s; 
}


/* =================================== */
/* ==       Contact Section         == */
/* =================================== */

.contact-section {
    
    min-height: 600px;
    padding: 40px 0;   
    background-color: #eaf6ff; 
    display: flex;
    align-items: center; 
    overflow-y: auto;    
}

.contact-section .container {
    max-width: 1140px; 
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;   
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;    
    gap: 40px;          
    align-items: flex-start; 
}

/* Left Column: Get In Touch */
.contact-info {
    flex: 1; 
    min-width: 300px;
}

.contact-info .section-title { 
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: left;
}

.contact-subtitle { 
    font-size: 1.4em;
    font-weight: 600;
    color: #343a40; 
    margin-bottom: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #495057;
    line-height: 1.6;
}

.contact-detail-item i {
    font-size: 1.2em;
    color: #007bff; 
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
    text-align: center;
}
.contact-detail-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-detail-item a:hover {
    color: #0056b3; 
    text-decoration: underline;
}

/* Right Column: Contact Form  */
.contact-form-wrapper {
    flex: 1.2;
    min-width: 300px;
    max-width: 500px;
    margin-left: auto; 
    margin-right: auto;

    background: linear-gradient(to right, #86a8e7, #5ffbf1);
 
    color: #e9ecef;           
    padding: 30px 35px;         
    border-radius: 10px;
    border: 1px solid #34495e;  
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
}

.contact-form-wrapper .section-title {
    font-size: 2em;
    margin-bottom: 25px;
    color: #ffffff;    
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 18px; 
}

.contact-form label {
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
    color: #ffffff;   
    font-size: 0.9em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px; 
    border: 1px solid #4a5568; 
    border-radius: 6px;
    font-size: 0.95em;
    font-family: 'Poppins', sans-serif;
    background-color:#62cff4; 
    color: #e9ecef;           
    transition: border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

/* Input Hover Effects (Dark Theme) */
.contact-form input[type="text"]:hover,
.contact-form input[type="email"]:hover,
.contact-form input[type="tel"]:hover,
.contact-form textarea:hover {
    border-color: #0097e6; 
    background-color:#62cff4; 
}

/* Input Focus Effects (Dark Theme) */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: #0097e6;      
    background-color:#736efe;  
    box-shadow: 0 0 0 3px rgba(0, 151, 230, 0.2); 
    outline: none; 
}

.contact-form textarea {
    resize: vertical;
    min-height: 90px; 
}

/* Submit Button (Dark Theme) */
.btn-form-submit {
    display: block;
    width: 100%;   
    background-color: #0097e6; 
    color: #fff;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden; 
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-form-submit:hover {
    background-color: #007ac1; 
    transform: translateY(-2px) scale(1.01); 
    box-shadow: 0 5px 15px rgba(0, 151, 230, 0.3); 
}

.btn-form-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-form-submit:hover::before {
    left: 120%;
}

/* Animation Delays for Contact Section Elements */
.contact-section .contact-info.animate-on-scroll { transition-delay: 0.2s; }
.contact-section .contact-form-wrapper.animate-on-scroll { transition-delay: 0.3s; }

.contact-info .contact-subtitle.animate-on-scroll { transition-delay: 0.3s; }
.contact-info .contact-detail-item.animate-on-scroll:nth-of-type(1) { transition-delay: 0.4s; }
.contact-info .contact-detail-item.animate-on-scroll:nth-of-type(2) { transition-delay: 0.5s; }
.contact-info .contact-detail-item.animate-on-scroll:nth-of-type(3) { transition-delay: 0.6s; }


/* Responsive Adjustments for Contact Section */
@media (max-width: 992px) { 
    .contact-section {
        height: auto; 
        min-height: none;
        padding: 60px 0; 
    }
    .contact-info {
        padding-right: 0; 
        margin-bottom: 40px; 
    }
    .contact-form-wrapper {
        margin-left: auto; 
        margin-right: auto;
        max-width: 520px; 
    }
}

@media (max-width: 768px) {
    .contact-info .section-title,
    .contact-form-wrapper .section-title {
        font-size: 2.1em;
        text-align: center; 
    }
    .contact-subtitle {
        text-align: center;
    }
    .contact-detail-item {
        justify-content: center; 
    }
    .contact-detail-item > div { 
        text-align: center;
    }
    .contact-form-wrapper {
        padding: 30px 25px;
        max-width: 100%; 
    }
}

@media (max-width: 480px) { 
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 11px 14px;
        font-size: 0.9em;
    }
    .btn-form-submit {
        padding: 11px 22px;
        font-size: 0.95em;
    }
    .contact-detail-item > div { 
        text-align: left; 
    }
     .contact-detail-item { 
        flex-direction: column;
        align-items: center;
        text-align:center;
    }
    .contact-detail-item i {
        margin-right:0;
        margin-bottom:8px;
    }
}

/* =================================== */
/* ==       Shop Page Styles        == */
/* =================================== */
.shop-page-main .container {
    padding-top: 40px;
    padding-bottom: 60px;
}
.shop-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}
.breadcrumbs {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}
.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.shop-header h1 {
    font-size: 3em;
    font-weight: 700;
    color: #007bff; 
    margin-bottom: 20px;
}
.shop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
}
.result-count {
    color: #555;
}
.woocommerce-ordering .orderby {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.product-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; 
    object-fit: cover;
}
.product-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1; 
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
}
.product-category {
    font-size: 0.8em;
    color: #6c757d;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.product-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}
.product-price {
    font-size: 1.1em;
    font-weight: 500;
    color: #007bff;
    margin-bottom: 15px;
}
.add-to-cart-btn { 
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: auto; 
}
.add-to-cart-btn:hover{
    color: #0056b3;
}


/* =================================== */
/* ==      Modal Styles             == */
/* =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    overflow-y: auto; 
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
}
.modal-dialog {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 700px; 
    position: relative; 
    max-height: 90vh; 
    overflow-y: auto;
}
.modal-dialog.modal-lg {
    max-width: 1000px;
}
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2em;
    color: #888;
    cursor: pointer;
    line-height: 1;
}
.modal-close-btn:hover {
    color: #333;
}
.modal-dialog h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Cart Modal Specific Styles */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.95em;
}
.cart-table th, .cart-table td {
    border: 1px solid #e9ecef;
    padding: 10px 12px;
    text-align: left;
    vertical-align: middle;
}
.cart-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}
.product-thumbnail img {
    width: 60px;
    height: auto;
    border-radius: 4px;
}
.product-remove button {
    background: none; border: none; color: #dc3545; font-size: 1.2em; cursor: pointer;
}
.product-quantity input {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ced4da;
    border-radius: 4px;
}
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap; 
    gap: 15px;
}
.coupon { display: flex; gap: 10px; }
.coupon input[type="text"] { padding: 9px 12px; border: 1px solid #ced4da; border-radius: 4px; }
.apply-coupon-btn, .update-cart-btn { 
    padding: 10px 18px;
}
.cart-totals {
    border-top: 2px solid #007bff;
    padding-top: 20px;
}
.cart-totals h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2c3e50;
}
.cart-totals table { width: 100%; }
.cart-totals th, .cart-totals td { padding: 8px 0; border-bottom: 1px dashed #e0e0e0; }
.cart-totals th { text-align: left; font-weight: 500; }
.cart-totals td { text-align: right; }
.cart-totals .order-total th, .cart-totals .order-total td { font-weight: 700; font-size: 1.1em; border-bottom: none; }
.proceed-to-checkout-btn { 
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    font-size: 1.1em;
}
.proceed-to-checkout-btn:hover{
    color: #0056b3;
}

/* Checkout Modal Specific Styles */
.checkout-modal-content .coupon-banner {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 5px;
    font-size: 0.95em;
}
.checkout-modal-content .coupon-banner a { color: #007bff; text-decoration: none; }
.checkout-modal-content .coupon-banner a:hover { text-decoration: underline; }
.checkout_coupon input[type="text"] { width: calc(100% - 130px); margin-right: 10px; } 

.checkout-columns {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* For responsiveness */
}
.billing-details, .order-review {
    flex: 1;
    min-width: 300px;
}
.billing-details h3, .order-review h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.form-row { margin-bottom: 15px; }
.form-row label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 0.9em; }
.form-row input[type="text"], .form-row input[type="email"], .form-row input[type="tel"],
.form-row select, .form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    font-size: 0.95em;
}
.form-row textarea { min-height: 80px; }
.form-row abbr[title="required"] { color: red; text-decoration: none; border: none; }

.shop_table { width: 100%; border-collapse: collapse; font-size: 0.9em; margin-bottom: 20px; }
.shop_table th, .shop_table td { padding: 8px 0; border-bottom: 1px solid #eee; text-align: left; }
.shop_table .product-name { font-weight: 500; }
.shop_table .product-quantity { font-size: 0.9em; }
.shop_table .product-total { text-align: right; }
.shop_table tfoot th { font-weight: 600; }
.shop_table tfoot .order-total th, .shop_table tfoot .order-total td { font-size: 1.1em; font-weight: 700; }

.woocommerce-checkout-payment { margin-top: 20px; }
.wc_payment_methods { list-style: none; padding: 0; margin: 0; }
.wc_payment_method { padding: 10px; border: 1px solid #e0e0e0; border-radius: 4px; margin-bottom: 10px; }
.wc_payment_method input[type="radio"] { margin-right: 10px; }
.payment_box { background-color: #f9f9f9; padding: 10px; margin-top: 10px; font-size: 0.9em; border-radius: 3px; }
.payment_box p { margin: 0; }
.place-order button { 
    display: block; width: 100%; padding: 12px; font-size: 1.1em; margin-top: 15px;
}
.place-order button:hover{
    color: #0056b3;
}


@media (max-width: 768px) {
    .modal-dialog {
        padding: 20px;
        max-width: 95%; 
    }
    .modal-dialog h2 { font-size: 1.5em; margin-bottom: 20px; }
    .cart-actions { flex-direction: column; align-items: stretch; }
    .coupon input[type="text"] { width: 100%; margin-bottom: 10px; }
    .coupon { flex-direction: column; align-items: stretch;}
    .apply-coupon-btn, .update-cart-btn { width: 100%; }

    .checkout-columns { flex-direction: column; }
    .order-review { margin-top: 30px; }
}