/* Brand Color Palette */
:root {
    --primary: #da1782;       /* Calming blue - trust, professionalism */
    --primary-dark: #1a5f8b;  /* Darker blue */
    --secondary: #1a5f8b;     /* Soothing green - growth, health */
    --accent: #f8c537;        /* Warm yellow - compassion, energy */
    --light: #f9f9f9;         /* Off-white background */
    --dark: #333;             /* Main text color */
    --gray: #e0e0e0;          /* Borders and subtle elements */
    --white: #ffffff;         /* Pure white */
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply fonts globally */
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* Headings use Poppins */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #111;
}

/* Optional: Use Poppins for nav or buttons */
nav, button {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* or dark: #111 */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--primary-dark); /* Color */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header Styles */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Reduced padding for better logo centering */
    height: 80px; /* Fixed header height */
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 120%;
}

.header-logo {
    height: 150px; /* Fixed height maintains proportion */
    width: auto; /* Width adjusts automatically */
    object-fit: contain; /* Prevents distortion */
    transition: all 0.3s ease;
}

/* Optional: Add hover effect */
.logo:hover .header-logo {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-header .container {
        height: 70px;
        padding: 5px 15px;
    }
    .header-logo {
        height: 140px;
    }
}
@keyframes softGlow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(0,150,255,0.3)); }
    50% { filter: drop-shadow(0 0 8px rgba(0,150,255,0.6)); }
}
.header-logo {
    animation: softGlow 3s infinite;
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav li {
    margin-left: 25px;
    position: relative;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a.active {
    color: var(--primary);
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-nav a.active {
    color: var(--primary);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
        margin-right: 10px;
    }
}
/* Introduction Banner Styles */
.intro-banner {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('images/banner-bg.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    margin-top: 80px; /* Offset for fixed header */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 222, 222, 0.7); /* Primary color with opacity */
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: var(--light);
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.highlight-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(90, 158, 90, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
/* About Us Section Styling */
:root {
    --primary-red: #e63946;       /* Vibrant red for primary elements */
    --soft-pink: #ffcad4;        /* Gentle pink for backgrounds */
    --dark-red: #9e2a2b;         /* Dark red for text/accents */
    --light-pink: #fff0f3;       /* Very light pink for sections */
    --primary-blue: #457b9d;     /* Calming blue for links/buttons */
}

/* === About Image Styles === */
.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 400px; /* Fixed height */
    max-height: 60vh; /* Maximum height relative to viewport */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers container without distortion */
    display: block;
    transition: transform 0.6s ease;
    border-radius: 12px;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Changed from 60% to cover full image */
    height: 100%; /* Changed from 60% to cover full image */
    background: linear-gradient(135deg, rgba(158, 42, 43, 0.2), rgba(69, 123, 157, 0.2));
    opacity: 0.6;
    transition: background 0.4s ease;
}

.about-image:hover .image-overlay {
    background: linear-gradient(135deg, rgba(158, 42, 43, 0.3), rgba(69, 123, 157, 0.3));
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-image {
        height: 250px;
    }
}
.about-hero .container {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}
/* === About Image Styles === */
.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 12px;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(158, 42, 43, 0.2), rgba(69, 123, 157, 0.2));
    opacity: 0.6;
    transition: background 0.4s ease;
}

.about-image:hover .image-overlay {
    background: linear-gradient(135deg, rgba(158, 42, 43, 0.3), rgba(69, 123, 157, 0.3));
}

.play-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: var(--primary-red);
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.play-video-btn:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translate(-50%, -50%) scale(1.05);
}

.play-video-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.play-video-btn:hover i {
    transform: scale(1.2);
}


/* === About Features Section === */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(158, 42, 43, 0.15);
}

.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature i {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: rotate(12deg) scale(1.1);
}

.feature h4 {
    color: var(--dark-red);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* === CTA Buttons === */
.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-about {
    padding: 12px 30px;
    background: var(--primary-red);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-about:hover {
    background: #b33939;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(158, 42, 43, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}
/* === Stats Section === */
.stats-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(158, 42, 43, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--dark-red);
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-card p {
    font-size: 1rem;
    color: #555;
}
/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card i {
    font-size: 2.5rem;
    color: #da1782;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: #e63946;
    margin-bottom: 15px;
}

.mission-card p {
    color: #555;
    line-height: 1.6;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
}

.approach-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background: #f5f5f5;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: #2a7fba;
    color: white;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.pane-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pane-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pane-text h3 {
    color: #2a7fba;
    margin-bottom: 20px;
}

.pane-text ul {
    list-style: none;
}

.pane-text li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.pane-text li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #5a9e5a;
    position: absolute;
    left: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-content i {
    font-size: 2rem;
    color: #f8c537;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.client-info h4 {
    color: #2a7fba;
    margin-bottom: 5px;
}

.client-info span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Play Video Button */
.play-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    color: #2a7fba;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-video-btn:hover {
    background: #2a7fba;
    color: white;
}

.play-video-btn i {
    font-size: 1.2rem;
}

/* About CTA Buttons */
.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-about {
    padding: 12px 30px;
    background: #2a7fba;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #1a5f8b;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2a7fba;
    color: #2a7fba;
}

.btn-outline:hover {
    background: #2a7fba;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .pane-content {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
/* Services Section Styling */
.services-section {
    padding: 80px 0;
    background-color: #fff9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 15px;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: #e57373;
    font-weight: 500;
}

.services-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    background: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    color: #555;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn.active {
    background: #d32f2f;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(211,47,47,0.3);
}

.tab-btn:hover:not(.active) {
    background: #ffebee;
    color: #d32f2f;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.service-details {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    background: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d32f2f;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-text {
    flex: 1;
    padding: 40px;
}

.service-text h3 {
    font-size: 1.8rem;
    color: #d32f2f;
    margin-bottom: 20px;
}

.service-text p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    padding: 20px;
    border-radius: 10px;
    background: #fff5f5;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(211,47,47,0.1);
}

.feature-card i {
    font-size: 1.8rem;
    color: #d32f2f;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #d32f2f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.service-cta {
    padding: 15px 30px;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-cta:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211,47,47,0.3);
}

/* Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

.close-modal:hover {
    color: #d32f2f;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #b71c1c;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalFadeIn {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-details {
        flex-direction: column;
    }
    
    .service-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .service-text {
        padding: 30px 20px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}
/* Contact Section Styles */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fb 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-info h2 span {
    color: #b71c1c;
    font-weight: 700;
}

.contact-info p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ecf0f1;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #f8d7da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #b71c1c;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-item p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: #b71c1c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.close-modal:hover {
  color: #333;
}

.modal-body i {
  font-size: 50px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.modal-body h3 {
  color: #333;
  margin-bottom: 15px;
}

.modal-body h3 span {
  color: #e74c3c; /* Red color for the name */
  font-weight: 600;
}

.modal-body p {
  color: #666;
  font-size: 16px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #b71c1c;
    margin-bottom: 15px;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: #1a5f8b;
    font-weight: 500;
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: #b71c1c;
    color: white;
    border-color: #b71c1c;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #b71c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 20px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overlay-content p {
    margin-bottom: 20px;
}

.view-btn {
    background: white;
    color: #b71c1c;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #f8c537;
    color: white;
}

.portfolio-meta {
    padding: 20px;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #b71c1c;
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-meta h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

/* Testimonial Carousel */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-slide {
    text-align: center;
}

.testimonial-content i {
    font-size: 2rem;
    color: red;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.client-info h4 {
    font-size: 1.2rem;
    color: #da1782;
    margin-bottom: 5px;
}

.client-info span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Story Modal */
.story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 50px auto;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    z-index: 1;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.story-image {
    height: 100%;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 40px;
}

.story-content h3 {
    font-size: 1.8rem;
    color: #da1782;
    margin-bottom: 10px;
}

.story-content .service-tag {
    margin-bottom: 20px;
}

.story-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.story-details {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7f8c8d;
}

.detail-item i {
    color: #f8c537;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .testimonial-carousel {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
/* Services Hero */
.services-hero {
    height: 400px;
    background: url('../images/services-hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.services-hero .hero-overlay {
    background: #2a7fba; /* blue overlay */
}

.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Care Services Section */
.care-services {
    padding: 80px 0;
    background: #f9f9f9;
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.service-tab {
    padding: 15px 25px;
    background: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-tab.active, .service-tab:hover {
    background: #2a7fba;
    color: white;
    transform: translateY(-5px);
}

.service-tab i {
    font-size: 1.2rem;
}

.service-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-pane.active {
    display: block;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-media {
    position: relative;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    color: #2a7fba;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.video-btn:hover {
    background: #2a7fba;
    color: white;
}

.service-info {
    padding: 40px;
}

.service-info h3 {
    scroll-margin-top: 100px; /* Should match your header height */
    padding-top: 20px; /* Adds some space above the heading */
}
.service-info h3 {
    color: #2a7fba;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    padding: 20px;
    border-radius: 10px;
    background: #f5f9ff;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(42,127,186,0.1);
}

.feature-card i {
    font-size: 1.8rem;
    color: #2a7fba;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #2a7fba;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.service-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-service {
    padding: 12px 30px;
    background: #2a7fba;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-service:hover {
    background: #1a5f8b;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2a7fba;
    color: #2a7fba;
}

.btn-outline:hover {
    background: #2a7fba;
    color: white;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #2a7fba;
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: #f9f9f9;
}

.comparison-table i.fa-check {
    color: #5a9e5a;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: #2a7fba;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    background: white;
    padding: 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

/* Modals */
.video-modal, .download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: #333;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.download-modal h3 {
    color: #2a7fba;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #2a7fba;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1a5f8b;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .service-media {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .service-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .service-cta {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .service-info {
        padding: 30px 20px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 20px;
    }
}
 .subscribe-container {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .subscribe-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .subscribe-header h2 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
        }

        .subscribe-header p {
            color: var(--dark);
            font-size: clamp(1rem, 1.25vw, 1.1rem);
            line-height: 1.5;
        }

        .subscribe-form .form-group {
            margin-bottom: 1.5rem;
        }

        .subscribe-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: clamp(0.95rem, 1.1vw, 1.05rem);
        }

        .subscribe-form input[type="text"],
        .subscribe-form input[type="email"] {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--gray);
            border-radius: 6px;
            font-size: clamp(0.95rem, 1.1vw, 1.05rem);
            transition: all 0.3s ease;
        }

        .subscribe-form input[type="text"]:focus,
        .subscribe-form input[type="email"]:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(218, 23, 130, 0.15);
        }

        .subscribe-form button {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 0.875rem;
            font-size: clamp(1rem, 1.15vw, 1.1rem);
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .subscribe-form button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .form-footer {
            margin-top: 1.75rem;
            text-align: center;
            font-size: clamp(0.85rem, 1vw, 0.95rem);
            color: var(--dark);
            line-height: 1.5;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-content h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
        }

        .modal-content p {
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-size: clamp(1rem, 1.25vw, 1.1rem);
        }

        .modal-content button {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: clamp(0.95rem, 1.1vw, 1.05rem);
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .modal-content button:hover {
            background-color: var(--primary-dark);
        }

        /* Responsive Breakpoints */
        @media (min-width: 768px) {
            .subscribe-container {
                padding: 3rem;
            }
            
            .subscribe-form input[type="text"],
            .subscribe-form input[type="email"] {
                padding: 1rem 1.25rem;
            }
            
            .subscribe-form button {
                padding: 1rem;
            }
        }

        @media (min-width: 1200px) {
            .subscribe-container {
                max-width: 550px;
            }
        }

        @media (max-width: 480px) {
            .subscribe-container {
                padding: 1.75rem;
            }
            
            .subscribe-header {
                margin-bottom: 1.5rem;
            }
            
            .subscribe-form .form-group {
                margin-bottom: 1.25rem;
            }
        }