:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --secondary: #2d7dd2;
    --accent: #00b4d8;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --steam-blue: #0096c7;
    --steam-green: #2a9d8f;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
    font-weight: 400;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

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

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid var(--primary);
}

.cta-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 8px rgba(67, 97, 238, 0.2);
}

.cta-button.secondary {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.cta-button.secondary:hover {
    background: transparent;
    color: white;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slide backgrounds with img tags */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    animation: zoomEffect 20s ease-in-out infinite;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

@keyframes zoomEffect {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
    color: white;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-slide h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
    line-height: 1.2;
    overflow: hidden;
}

.hero-slide h1 span {
    color: var(--light-gray);
    display: inline-block;
    animation: slideInUp 1s ease-out;
}

.hero-slide p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    animation: slideInUp 1.2s ease-out 0.3s both;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: slideInUp 1.4s ease-out 0.6s both;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    animation: slideInUp 1.6s ease-out 0.9s both;
}

.highlight {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 6px;
    gap: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight:hover {
    background: rgba(255, 255, 255, 0.25);
}

.highlight i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero {
    padding: 160px 0 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.page-hero h1 span {
    color: var(--accent);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.steam-hero {
    background: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.web-hero {
    background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.page-hero .hero-btns {
    justify-content: center;
}

/* Page Hero Alignment Fix */
.page-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero .hero-btns {
    justify-content: center;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure proper spacing */
.page-hero h1 {
    margin-bottom: 25px;
}

.page-hero p {
    margin-bottom: 0;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--light-gray);
    opacity: 1;
    transform: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--gray);
}

.service-features i {
    color: var(--steam-green);
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* About Section */
.about {
    background-color: var(--light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    opacity: 1;
    transform: none;
}

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

.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.feature p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   SIMPLE QUOTE FORM STYLES WITH PULSING BUTTON
   ============================================ */

/* Simple Form Container */
.quote-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.05),
        0 5px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

/* Simple Form Layout */
#whatsappQuoteForm {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form Groups */
#whatsappQuoteForm .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#whatsappQuoteForm label {
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

#whatsappQuoteForm label::after {
    content: '*';
    color: #ef4444;
    margin-left: 4px;
}

#whatsappQuoteForm label[for="wpOrganization"]::after {
    content: '';
}

/* Form Inputs */
#whatsappQuoteForm input,
#whatsappQuoteForm select,
#whatsappQuoteForm textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
}

#whatsappQuoteForm input:hover,
#whatsappQuoteForm select:hover,
#whatsappQuoteForm textarea:hover {
    border-color: #cbd5e1;
}

#whatsappQuoteForm input:focus,
#whatsappQuoteForm select:focus,
#whatsappQuoteForm textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#whatsappQuoteForm select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364758d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 45px;
    cursor: pointer;
}

#whatsappQuoteForm textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

/* Updated WhatsApp Submit Button with Border Pulse Animation */
.whatsapp-submit-btn {
    background:  #25D366;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    
    /* Create pseudo-element for border pulse */
    border: 3px solid #25D366;
}

/* Pseudo-element for the border pulse effect */
.whatsapp-submit-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid #25D366;
    border-radius: 13px; /* Slightly larger to account for border */
    opacity: 0;
    animation: border-pulse 2s infinite;
    pointer-events: none;
}

@keyframes border-pulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}


/* Remove the border pulse on hover */
.whatsapp-submit-btn:hover::before {
    animation: none;
    opacity: 0;
}

.whatsapp-submit-btn:active {
    transform: translateY(0);
}

.whatsapp-submit-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.whatsapp-submit-btn:hover i {
    transform: scale(1.1);
}

/* Loading State */
.whatsapp-submit-btn.loading {
    opacity: 0.9;
    cursor: not-allowed;
    animation: pulse-green-slow 2s infinite;
}

@keyframes pulse-green-slow {
    0%, 100% {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }
    50% {
        background: linear-gradient(135deg, #20b858 0%, #0f7a66 100%);
    }
}

.whatsapp-submit-btn.loading i {
    animation: spin 1s linear infinite;
}

.whatsapp-submit-btn.loading::before {
    animation: border-pulse 2s infinite;
}

.whatsapp-submit-btn:hover {
    transform: translateY(-2px);
    animation: none; /* Stop pulsing on hover */
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-submit-btn:active {
    transform: translateY(0);
}

.whatsapp-submit-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.whatsapp-submit-btn:hover i {
    transform: scale(1.1);
}

/* Loading State */
.whatsapp-submit-btn.loading {
    opacity: 0.9;
    cursor: not-allowed;
    animation: pulse-green-slow 2s infinite;
}

@keyframes pulse-green-slow {
    0%, 100% {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }
    50% {
        background: linear-gradient(135deg, #20b858 0%, #0f7a66 100%);
    }
}

.whatsapp-submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Validation States */
#whatsappQuoteForm input:invalid:not(:focus):not(:placeholder-shown),
#whatsappQuoteForm select:invalid:not(:focus),
#whatsappQuoteForm textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ef4444;
    background-color: #fef2f2;
}

#whatsappQuoteForm input:valid:not(:placeholder-shown),
#whatsappQuoteForm select:valid,
#whatsappQuoteForm textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Form Success Message */
.form-success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 4.5s forwards;
    max-width: 320px;
    border-left: 4px solid #25D366;
    display: none;
}

.form-success-message.show {
    display: block;
}

.success-message-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.success-message-content i {
    font-size: 1.8rem;
    color: #25D366;
    flex-shrink: 0;
}

.success-message-text h4 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.success-message-text p {
    margin: 0 0 8px 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

.success-message-text small {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Form Error Message */
.form-error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 4.5s forwards;
    max-width: 320px;
    border-left: 4px solid #ef4444;
    display: none;
}

.form-error-message.show {
    display: block;
}

.error-message-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.error-message-content i {
    font-size: 1.8rem;
    color: #ef4444;
    flex-shrink: 0;
}

.error-message-text h4 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.error-message-text p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-form-container {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .whatsapp-submit-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .form-success-message,
    .form-error-message {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .quote-form-section {
        padding: 60px 0;
    }
    
    .quote-form-container {
        padding: 25px 20px;
    }
    
    #whatsappQuoteForm {
        gap: 20px;
    }
    
    #whatsappQuoteForm input,
    #whatsappQuoteForm select,
    #whatsappQuoteForm textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .whatsapp-submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="%23ffffff" fill-opacity="0.03" d="M0,0L1000,0L1000,1000L0,1000Z"></path></svg>');
    background-size: cover;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary);
    border-color: white;
    padding: 12px 30px;
    font-size: 1rem;
}

.cta-section .cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .cta-button.secondary:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    color: white;
    text-decoration: none;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-links h4:after,
.footer-services h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info i {
    margin-right: 12px;
    color: var(--primary);
    width: 18px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   ADDITIONAL STYLES FOR STEAM.HTML & WEB.HTML
   ============================================ */

/* Steam Icon Grid */
.steam-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.steam-icon-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.steam-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.steam-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.steam-icon-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.steam-icon-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Steam Explanation */
.steam-explanation {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.steam-explanation h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.steam-explanation>p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.benefit i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Programs Tabs */
.programs-tabs {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tab-buttons {
    display: flex;
    background: var(--light);
    border-bottom: 1px solid var(--light-gray);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background: white;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

.program-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.program-details>p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Web Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}

.service-detail-icon {
    flex: 0 0 100px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.service-detail-content {
    flex: 1;
    padding: 30px;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-detail-content>p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--steam-green);
    font-size: 0.9rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
    margin-top: 10px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-slide h1 {
        font-size: 3rem;
    }

    .hero-slide p {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .hero-slide .container {
        padding-top: 100px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-slide h1 {
        font-size: 2.8rem;
        min-height: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-highlights {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .steam-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-icon {
        flex: 0 0 80px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .slide-bg {
        max-width: fit-content;
        animation: none;

    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 25px 25px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0 0 15px 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .hero-slider {
        min-height: 600px;
        height: 110vh;
    }

    .hero-slide h1 {
        font-size: 1rem;
    }

    .hero-slide p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .page-hero {
        padding: 140px 0 80px;
        min-height: 50vh;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.2rem;
    }

    .quote-form {
        padding: 30px 20px;
    }

    .steam-icon-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .program-features {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--light-gray);
        border-left: 3px solid transparent;
    }

    .tab-btn.active {
        border-left: 3px solid var(--primary);
        border-bottom: 1px solid var(--light-gray);
    }

    .service-features ul {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .page-hero .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero .hero-btns .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .hero-btns,
    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
    }

    .hero-slide h1 {
        font-size: 1.8rem;
    }

    .hero-slider {
        min-height: 550px;
    }

    .hero-slide p {
        font-size: 1rem;
    }

    .highlight {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 70px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-hero .hero-btns {
        max-width: 250px;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero-slider {
        min-height: -webkit-fill-available;
    }

    .slide-bg {
        height: -webkit-fill-available;
    }
}
.modern-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.modern-testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(67, 97, 238, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(42, 157, 143, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.modern-testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 5px 15px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.testimonial-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--steam-green));
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.category-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.web-tag {
    background: linear-gradient(135deg, var(--primary) 0%, var(--steam-blue) 100%);
    color: white;
}

.steam-tag {
    background: linear-gradient(135deg, var(--steam-green) 0%, #34a0a4 100%);
    color: white;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    display: flex;
    gap: 5px;
}

.testimonial-quote {
    position: relative;
    margin: 40px 0;
    padding: 0 20px;
}

.quote-icon {
    color: var(--light-gray);
    font-size: 2rem;
    position: absolute;
}

.quote-icon:first-child {
    top: -20px;
    left: 0;
}

.quote-icon:last-child {
    bottom: -20px;
    right: 0;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark);
    font-weight: 400;
    font-style: italic;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--steam-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(67, 97, 238, 0.2);
}

.author-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.testimonial-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    gap: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--light-gray);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.testimonial-indicators {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.service-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 15px;
    min-width: 80px;
}

.service-indicator:hover {
    opacity: 0.8;
    background: rgba(67, 97, 238, 0.05);
}

.service-indicator.active {
    opacity: 1;
    background: rgba(67, 97, 238, 0.1);
}

.service-indicator.active .indicator-icon {
    transform: scale(1.1);
}

.indicator-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--steam-blue));
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.2);
}

.service-indicator[data-type="steam"] .indicator-icon {
    background: linear-gradient(135deg, var(--steam-green), #34a0a4);
}

.indicator-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-counter {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.current-index {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.total-testimonials {
    color: var(--dark);
}

/* Auto-rotation indicator */
.auto-rotation-indicator {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.rotation-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    margin: 0 4px;
    transition: all 0.3s ease;
}

.rotation-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Styles for Testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .testimonial-navigation {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-indicators {
        order: 3;
        width: 100%;
        margin-top: 20px;
    }
    
    .testimonial-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .category-tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}
/* ============================================
   WHATSAPP POPUP STYLES FOR STEAM PAGE
   ============================================ */

/* Popup Container */
.whatsapp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-popup.show {
    display: block;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.whatsapp-popup.show .popup-container {
    transform: translate(-50%, -50%) scale(1);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px 20px;
    border-bottom: 1px solid var(--light-gray);
    background: linear-gradient(135deg, var(--primary) 0%, var(--steam-green) 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-body {
    padding: 30px;
}

.popup-description {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
}

/* Form Styles for Popup */
#whatsappQuoteForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#whatsappQuoteForm .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#whatsappQuoteForm label {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

#whatsappQuoteForm label::after {
    content: '*';
    color: #ef4444;
    margin-left: 4px;
}

#whatsappQuoteForm label[for="wpGrade"]::after,
#whatsappQuoteForm label[for="wpOrganization"]::after {
    content: '';
}

#whatsappQuoteForm input,
#whatsappQuoteForm select,
#whatsappQuoteForm textarea {
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    width: 100%;
}

#whatsappQuoteForm input:hover,
#whatsappQuoteForm select:hover,
#whatsappQuoteForm textarea:hover {
    border-color: #cbd5e1;
}

#whatsappQuoteForm input:focus,
#whatsappQuoteForm select:focus,
#whatsappQuoteForm textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

#whatsappQuoteForm select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364758d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 45px;
    cursor: pointer;
}

#whatsappQuoteForm textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* WhatsApp Submit Button for Popup */
.whatsapp-submit-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    
    border: 3px solid #25D366;
}

.whatsapp-submit-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid #25D366;
    border-radius: 13px;
    opacity: 0;
    animation: border-pulse 2s infinite;
    pointer-events: none;
}

.whatsapp-submit-btn:hover {
    transform: translateY(-2px);
    animation: none;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-submit-btn:hover::before {
    animation: none;
    opacity: 0;
}

.whatsapp-submit-btn:active {
    transform: translateY(0);
}

.whatsapp-submit-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.whatsapp-submit-btn:hover i {
    transform: scale(1.1);
}

.whatsapp-submit-btn.loading {
    opacity: 0.9;
    cursor: not-allowed;
    animation: pulse-green-slow 2s infinite;
}

.whatsapp-submit-btn.loading i {
    animation: spin 1s linear infinite;
}

/* Form Validation */
#whatsappQuoteForm input:invalid:not(:focus):not(:placeholder-shown),
#whatsappQuoteForm select:invalid:not(:focus),
#whatsappQuoteForm textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ef4444;
    background-color: #fef2f2;
}

#whatsappQuoteForm input:valid:not(:placeholder-shown),
#whatsappQuoteForm select:valid,
#whatsappQuoteForm textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .popup-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .popup-header {
        padding: 20px 25px 18px;
    }
    
    .popup-header h3 {
        font-size: 1.2rem;
    }
    
    .popup-body {
        padding: 25px 20px;
    }
    
    .whatsapp-submit-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .popup-container {
        width: 98%;
        max-height: 90vh;
    }
    
    .popup-header {
        padding: 18px 20px 16px;
    }
    
    .popup-body {
        padding: 20px 15px;
    }
    
    #whatsappQuoteForm {
        gap: 16px;
    }
    
    #whatsappQuoteForm input,
    #whatsappQuoteForm select,
    #whatsappQuoteForm textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .whatsapp-submit-btn {
        padding: 13px 20px;
        font-size: 1rem;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
    height: 50px; 
}

.logo-img {
    height: 100px; 
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
@media (max-width: 768px) {
    .logo-img {
        height: 120px; 
    }
    
    .nav-container {
        padding: 8px 0;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 80px; 
    }
}
