/* Global Styles */
:root {
    --primary-color: #00BCD4;
    --secondary-color: #4CAF50;
    --accent-color: #FFB74D;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #444;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-padding: 1.5rem;
    --section-padding: 4rem 0;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.logo, .footer-logo {
    max-width: 200px;
    max-height: 80px;
    transition: all 0.3s ease;
  }
  
  .site-header.scrolled .logo {
    max-height: 70px;
  }
  
  @media (max-width: 768px) {
    .logo, .footer-logo {
      max-width: 160px;
    }
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

/* Base Typography */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

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

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

/* Header Styles */
:root {
    --header-height: 90px;
    --header-scrolled-height: 80px;
    --nav-link-padding: 10px 15px;
    --nav-link-radius: 8px;
    --nav-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    transition: var(--nav-transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 2%;
}

.main-header.scrolled {
    height: var(--header-scrolled-height);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
}

.main-header .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    transition: var(--nav-transition);
    z-index: 1001;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
    transition: var(--nav-transition);
    background: linear-gradient(135deg, var(--primary-color), #00acc1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo p {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin: 2px 0 0;
    font-weight: 500;
    transition: var(--nav-transition);
    text-align: right;
}

.main-header.scrolled .logo h1 {
    font-size: 1.6rem;
}

.main-header.scrolled .logo p {
    font-size: 0.8rem;
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-start;
    gap: 20px;
    transition: var(--nav-transition);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
}

.nav-links li {
    position: relative;
    margin: 0 2px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    padding: var(--nav-link-padding);
    border-radius: var(--nav-link-radius);
    transition: var(--nav-transition);
    display: block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease, right 0.3s ease;
    border-radius: 3px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(0, 188, 212, 0.05);
    transform: translateY(-2px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
    right: auto;
    left: 0;
}

/* Contact Button */
.contact-btn {
    background: linear-gradient(135deg, var(--primary-color), #00acc1);
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #00acc1, var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
}

.contact-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4) !important;
}

.contact-btn:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.contact-btn i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(-3px);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--nav-transition);
    position: relative;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 100px 30px 50px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        gap: 15px;
    }

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

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

    .nav-links a {
        padding: 12px 20px;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 8px;
    }

    .hamburger {
        display: flex;
    }

    .contact-btn {
        margin-right: auto;
        margin-left: 20px;
        padding: 12px 25px !important;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .logo p {
        font-size: 0.75rem;
    }

    .main-header.scrolled .logo h1 {
        font-size: 1.4rem;
    }

    .main-header.scrolled .logo p {
        font-size: 0.7rem;
    }

    .nav-links {
        width: 85%;
        padding: 90px 20px 40px;
    }
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.contact-btn::before {
    display: none !important;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}

.quick-call {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.quick-call i {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.quick-call:hover {
    background: rgba(0, 188, 212, 0.05);
    border-color: rgba(0, 188, 212, 0.2);
}

.quick-call:hover i {
    transform: rotate(-15deg);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    margin-right: -5px;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
        width: 90%;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Staggered animation for nav items */
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links li:nth-child(5) { transition-delay: 0.3s; }
    
    .quick-call span {
        display: none;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: #fff;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 80px);
        padding: 1.5rem 0;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        transform: translateX(0);
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
}

/* Programs Section */
.programs {
    background-color: #f9f9f9;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(79, 70, 229, 0.1) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(79, 70, 229, 0.1) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(79, 70, 229, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.03;
    z-index: 0;
}

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

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

.program-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--primary-color);
}

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

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, var(--primary-color), #00acc1);
    color: #fff;
    transform: rotateY(180deg);
}

.program-card h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.program-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.program-card:hover h3::after {
    width: 80px;
}

.program-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 80px;
}

.program-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.program-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.program-details i {
    color: var(--primary-color);
}

.program-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary-color), #00acc1);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.program-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #43a047);
    transition: var(--transition);
    z-index: -1;
    border-radius: 50px;
}

.program-btn:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.programs-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.programs-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-dots.png') no-repeat center/cover;
    opacity: 0.1;
    z-index: 0;
}

.programs-cta p {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.programs-cta .cta-button {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .programs-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .program-card {
        padding: 25px 20px;
    }
    
    .programs-cta {
        padding: 25px 15px;
    }
    
    .programs-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .programs {
        padding: 60px 0;
    }
    
    .program-card {
        margin-bottom: 20px;
    }
    
    .programs-cta p {
        font-size: 1rem;
    }
}

/* About Me Section */
.about-me {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about-me::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(79, 70, 229, 0.1) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(79, 70, 229, 0.1) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(79, 70, 229, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.03;
    z-index: 0;
}

.about-me .container {
    position: relative;
    z-index: 1;
}

.about-me-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.about-me-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.about-me-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-me-content:hover::before {
    width: 15px;
}

.about-me-text {
    flex: 1;
}

.about-me-text h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-me-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.about-me-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-me-text p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-me-image {
    flex: 0 0 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-me-image:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-me-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .about-me-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 20px;
    }
    
    .about-me-text h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .about-me-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .about-me-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-me {
        padding: 60px 0;
    }
    
    .about-me-content {
        padding: 25px 15px;
    }
    
    .about-me-text h3 {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f9fc 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: right;
}

.hero .badge {
    display: inline-block;
    background: rgba(0, 188, 212, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin: 0 0 15px;
    color: var(--primary-color);
    font-weight: 800;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
    color: var(--secondary-color);
    font-weight: 700;
    display: block;
    margin-top: 5px;
    font-size: 0.8em;
}

.hero .tagline {
    font-size: 1.4rem;
    color: #3a5a78;
    margin: 0 0 25px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
    position: relative;
    padding-bottom: 20px;
}

.hero .tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.hero .description {
    font-size: 1.1rem;
    color: #5a6f88;
    line-height: 1.8;
    margin: 0 0 35px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 0 0 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0 0;
    animation: fadeInUp 0.8s ease 1s both;
}

.feature {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature span {
    display: block;
    font-size: 0.85rem;
    color: #3a5a78;
    font-weight: 600;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    animation: fadeIn 1s ease 0.5s both;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    top: 15px;
    right: 15px;
    z-index: 1;
    transition: all 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: translate(-10px, -10px);
}

.hero-image-container:hover .image-decoration {
    transform: translate(10px, 10px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.08), rgba(0, 150, 200, 0.15));
    z-index: 1;
    animation: float 15s infinite ease-in-out;
    filter: blur(1px);
}

.floating-element-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(104, 159, 56, 0.15));
}

.floating-element-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 20%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.08), rgba(255, 152, 0, 0.15));
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 20px) rotate(5deg); }
    50% { transform: translate(0, 40px) rotate(0deg); }
    75% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .tagline {
        font-size: 1.3rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero .tagline::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .hero .description {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .tagline {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .floating-element-1,
    .floating-element-2,
    .floating-element-3 {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.3rem;
    }
    
    .hero .description {
        font-size: 1.15rem;
    }
    
    .hero-features {
        gap: 1.2rem;
    }
    
    .feature {
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
        margin: 1.2rem auto 1.8rem;
        padding-bottom: 1.5rem;
    }
    
    .hero .description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin: 2rem auto 1.5rem;
    }
    
    .primary-btn, .secondary-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .tagline {
        font-size: 1.15rem;
    }
    
    .hero .description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button i {
    font-size: 1.1em;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), #00acc1);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    background: linear-gradient(135deg, #00acc1, var(--primary-color));
}

/* Green Pay Button */
.pay-btn {
    background: linear-gradient(135deg, var(--secondary-color), #5fc66a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(76, 175, 80, 0.45);
    background: linear-gradient(135deg, #5fc66a, var(--secondary-color));
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: calc(1rem - 2px) 2rem;
}

.secondary-btn:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    top: -3.5px;
}

.section-divider::before {
    right: -15px;
}

.section-divider::after {
    left: -15px;
}

/* Brief Section */
.brief {
    padding: 80px 0;
    background-color: #fff;
}

.brief-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.brief-content p {
    margin-bottom: 25px;
}

.brief-highlight {
    color: var(--primary-color);
    font-weight: 500;
}

/* Qualifications Section */
.qualifications {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.qualification-card {
    background-color: #fff;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.qualification-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.qualification-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    line-height: 1.5;
}

/* Qualifications Section */
.qualifications {
    padding: 100px 0;
    background-color: #f9fbfe;
    position: relative;
    overflow: hidden;
}

.qualifications::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.03) 0%, rgba(76, 175, 80, 0.03) 100%);
    z-index: 0;
}

.qualifications .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.qualification-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.1);
    position: relative;
    overflow: hidden;
}

.qualification-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
}

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

.qualification-card:hover::before {
    height: 7px;
}

.qualification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.qualification-card:hover .qualification-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.qualification-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.qualification-card p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.qualification-year {
    display: inline-block;
    background: rgba(0, 188, 212, 0.1);
    color: var(--primary-color);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.qualification-card:hover .qualification-year {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 992px) {
    .qualifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .qualifications {
        padding: 80px 0;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Specializations Section */
.specializations {
    padding: 80px 0;
    background-color: #fff;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.specialization-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

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

.specialization-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.specialization-card:hover .icon-box {
    background-color: var(--primary-color);
}

.specialization-card .icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.specialization-card:hover .icon-box i {
    color: #fff;
}

.specialization-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* Experience Section */
.experience {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.03) 0%, rgba(76, 175, 80, 0.03) 100%);
    z-index: 0;
}

.experience .section-header {
    position: relative;
    z-index: 1;
}

.experience .section-subtitle {
    color: #64748b;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: 400;
}

.experience-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.experience-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
}

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

.experience-card:hover::before {
    height: 6px;
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
}

.experience-content {
    flex: 1;
}

.experience-header {
    margin-bottom: 15px;
    position: relative;
}

.experience-header h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.experience-year {
    display: inline-block;
    background: rgba(0, 188, 212, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.experience-description {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.experience-tags span {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-tags span {
    background: rgba(0, 188, 212, 0.1);
    color: var(--primary-color);
}

/* Skills Section */
.skills-section {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.skills-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.skill-tag {
    background: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 188, 212, 0.2);
}

/* Responsive styles for skills section */
@media (max-width: 768px) {
    .skills-tags {
        padding: 0 15px;
        gap: 10px;
    }
    
    .skill-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .skills-title {
        font-size: 1.5rem;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .experience-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-card {
        padding: 25px;
    }
    
    .skills-container {
        padding: 20px;
    }
    
    .skills-title {
        font-size: 1.5rem;
    }
}

/* Header Layout */
.main-header .container {
    width: 100%;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    flex-direction: row-reverse; /* Reverse direction for RTL */
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 80px;
    transition: var(--transition);
    margin-left: 30px; /* Add space between logo and nav */
    order: 2; /* Make sure logo is on the right side */
}

.nav-container {
    order: 1; /* Make sure nav is on the left side */
}

.logo img.site-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 200px;
    transition: var(--transition);
}

.main-header.scrolled .logo img.site-logo {
    height: 70px;
}

@media (max-width: 768px) {
    .logo {
        height: 60px;
    }
    
    .logo img.site-logo {
        max-width: 160px;
    }
    
    .main-header.scrolled .logo img.site-logo {
        height: 50px;
    }
}

.logo p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: #fff;
}

.services .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1000px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.4s ease;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* Service Button */
.service-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    color: white;
    text-decoration: none;
}

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

/* Workshops Section */
.workshops {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.workshop-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workshop-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.workshop-card:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.workshop-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.workshop-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.4s ease;
}

.workshop-card:hover h3::after {
    width: 80px;
}

.workshop-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* Pricing Info */
.pricing-info {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.pricing-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pricing-info p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .workshops-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .workshop-card {
        padding: 25px 20px;
    }
    
    .pricing-info {
        padding: 30px 20px;
        margin: 30px 15px 0;
    }
    
    .pricing-info h3 {
        font-size: 1.5rem;
    }
    
    .pricing-info p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f9fc 100%);
    position: relative;
    overflow: hidden;
}

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

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.1);
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 188, 212, 0.15);
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.form-header .header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-header .header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.form-header .header-icon i {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(0, 188, 212, 0.3));
    border-radius: 3px;
    transition: all 0.4s ease;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 15px auto 0;
    max-width: 80%;
    text-align: center;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

/* Floating Labels */
.form-group.floating {
    position: relative;
    padding-top: 15px;
}

.form-group.floating label {
    position: absolute;
    right: 15px;
    top: 30px;
    color: #8a9aae;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
    transform-origin: right center;
    line-height: 1;
}

.form-group.floating .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b5c1d1;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.form-group.floating.focused label,
.form-group.floating.filled label {
    top: 0;
    right: 10px;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: white;
    padding: 0 8px;
}

.form-group.floating.focused .input-icon,
.form-group.floating.filled .input-icon {
    color: var(--primary-color);
}

/* Input and Select Styling */
.contact-form ws-input,
.contact-form ws-select,
.contact-form ws-textarea {
    width: 100%;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 15px 20px 15px 45px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
    color: #3a5a78;
    height: auto;
}

.contact-form ws-textarea {
    min-height: 120px;
    resize: vertical;
    padding: 15px 20px;
    line-height: 1.6;
}

.contact-form ws-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23b5c1d1' stroke='%23b5c1d1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 12px;
    padding-right: 15px;
}

/* Focus and Hover States */
.contact-form ws-input:focus,
.contact-form ws-select:focus,
.contact-form ws-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
    outline: none;
}

.contact-form ws-input:hover,
.contact-form ws-select:hover,
.contact-form ws-textarea:hover {
    border-color: #b5c1d1;
}

/* Form Footer */
.form-footer {
    margin-top: 20px;
    position: relative;
}

/* Submit Button */
.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 50px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn .btn-text {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.submit-btn .btn-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(5px);
    opacity: 0;
}

.submit-btn:hover .btn-text {
    transform: translateX(-5px);
}

.submit-btn:hover .btn-icon {
    transform: translateX(0);
    opacity: 1;
}

/* Loading State */
.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
    opacity: 0;
    transform: translateX(10px);
}

.submit-btn.loading .btn-loader {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Form Validation & Error States */
.form-group.error ws-input,
.form-group.error ws-select,
.form-group.error ws-textarea {
    border-color: #ef4444 !important;
    background: linear-gradient(90deg, rgba(255, 245, 245, 0.9) 0%, rgba(255, 250, 250, 0.95) 100%) !important;
    padding-right: 45px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
    animation: shake 0.6s cubic-bezier(.36,.07,.19,.97) both;
    border-right: 3px solid #ef4444;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-group.error .input-icon {
    color: #ef4444 !important;
    animation: pulse 1.2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
}

.form-group.error label {
    color: #ef4444 !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(239, 68, 68, 0.1);
}

.form-group.error .floating-label {
    transform: translateY(-30px) scale(0.9);
    right: 15px;
    background: linear-gradient(90deg, #fff 30%, rgba(255, 255, 255, 0.8) 100%);
    padding: 0 8px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.15);
        opacity: 1;
    }
    100% { 
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes float {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Form Messages */
.form-message {
    margin: 20px 0;
    padding: 20px 25px 20px 70px;
    border-radius: 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    visibility: hidden;
    position: relative;
    line-height: 1.7;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    backdrop-filter: blur(10px);
    overflow: hidden;
    min-height: 80px;
}

.form-message .message-decoration {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    font-size: 40px;
    transition: all 0.5s ease;
}

.form-message.visible .message-decoration {
    transform: translateY(-50%) scale(1);
    opacity: 0.15;
}

.success-message .message-decoration {
    color: #10b981;
}

.error-message .message-decoration {
    color: #ef4444;
}

.form-message::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 100%);
    z-index: -1;
    border-radius: 8px;
}

.form-message i {
    font-size: 1.5rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.form-message.visible i {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.form-message span {
    display: block;
    padding-right: 30px;
    position: relative;
    z-index: 1;
}

.form-message.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    animation: slideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #0d8c6a;
    border-left-color: #10b981;
}

.error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #d62c2c;
    border-left-color: #ef4444;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: translateY(-50%) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
    70% {
        transform: translateY(-50%) scale(0.9);
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* Error message for individual fields */
.form-group .error-message {
    font-size: 0.85rem;
    margin-top: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: 8px;
    color: #d62c2c;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideIn 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    border-right: 3px solid #ef4444;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.1);
    transform-origin: top right;
    opacity: 0;
    transform: translateX(10px);
}

.form-group.error .error-message {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-group .error-message i {
    font-size: 1rem;
    color: #ef4444;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-3px); }
}

/* Loading state for form submission */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Disabled state for submit button */
.submit-btn:disabled {
    background-color: #e2e8f0 !important;
    color: #94a3b8 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.submit-btn:disabled:hover .btn-icon {
    transform: translateX(5px) !important;
    opacity: 0 !important;
}

/* Focus styles for accessibility */
.contact-form ws-input:focus-visible,
.contact-form ws-select:focus-visible,
.contact-form ws-textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Animation for form elements */
.contact-form {
    animation: fadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    perspective: 1000px;
}

.form-group {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Add staggered animation for form groups */
.form-group {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Staggered animation delays */
.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }
.form-group:nth-child(9) { animation-delay: 0.9s; }
.form-group:nth-child(10) { animation-delay: 1s; }

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

/* Hover effect for form cards */
.contact-form-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(12px);
    transform-style: preserve-3d;
    border-radius: 16px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-form-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, rgba(0, 188, 212, 0) 70%);
    top: -150px;
    right: -150px;
    z-index: -1;
    pointer-events: none;
    animation: pulse 8s infinite alternate;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-form-card:hover {
    transform: translate3d(0, -10px, 0) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 188, 212, 0.18), 0 5px 15px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(0, 188, 212, 0.4);
    animation: float 6s ease-in-out infinite;
}

.contact-form-card:hover::before {
    opacity: 0.6;
    animation: gradientBG 10s ease infinite;
    background-size: 200% 200%;
}

/* Add subtle floating animation to form elements */
.form-group {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-group:focus-within {
    transform: translate3d(0, -3px, 0);
}

/* Enhanced input focus states */
.form-group:focus-within .input-icon {
    transform: scale(1.1);
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(0, 188, 212, 0.3));
}

/* Decorative elements */
.form-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
    filter: blur(15px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.decoration-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.2) 0%, rgba(0, 188, 212, 0) 70%);
    animation: float 15s ease-in-out infinite;
    animation-delay: 0.5s;
}

.decoration-2 {
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, rgba(104, 159, 56, 0) 70%);
    animation: float 18s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.decoration-3 {
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: 0;
    animation: rotate 30s linear infinite;
}

.contact-form-card:hover .decoration-1 {
    transform: scale(1.1);
    opacity: 0.8;
}

.contact-form-card:hover .decoration-2 {
    transform: scale(1.2);
    opacity: 0.6;
}

.contact-form-card:hover .decoration-3 {
    animation: rotate 20s linear infinite;
    opacity: 0.1;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating animation for form elements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.contact-form-card:hover {
    animation: float 6s ease-in-out infinite;
}

/* Decorative elements */
.contact-form-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .contact {
        padding: 60px 0;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-header p {
        font-size: 0.95rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

/* WindSurf Grid Styles */
ws-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Base styles for all screen sizes */
ws-grid[columns="1"] {
    grid-template-columns: 1fr;
}

/* Small screens (sm breakpoint) */
@media (min-width: 576px) {
    ws-grid[columns-sm="2"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens (lg breakpoint) */
@media (min-width: 992px) {
    ws-grid[columns-lg="3"] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styles */
ws-card.testimonial-card {
    --ws-card-padding: 2rem;
    --ws-card-border-radius: 12px;
    --ws-card-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --ws-card-hover-box-shadow: 0 15px 30px rgba(0, 188, 212, 0.15);
    --ws-card-hover-transform: translateY(-10px);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.1);
    background: #fff;
}

.testimonial-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px dashed #e0e0e0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-left: 1rem;
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    margin: 0 0 0.25rem;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.author-info span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        top: 5px;
        right: 15px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

ws-accordion-content[slot="content"] {
    animation: fadeIn 0.3s ease-out;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 188, 212, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 25px;
    line-height: 1.7;
    color: #555;
    padding-bottom: 20px;
}

/* Active state for FAQ items */
.faq-item.active .faq-question {
    background-color: var(--primary-color);
}

.faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-item.active .faq-toggle {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
    border-top: 1px solid #eee;
}

/* Application Method */
.application-method {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(0, 188, 212, 0.3);
}

.application-method::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.application-method h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.application-method p {
    color: #555;
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .application-method {
        margin: 30px 20px;
        padding: 20px;
    }
    
    .application-method h3 {
        font-size: 1.3rem;
    }
    
    .application-method p {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    position: relative;
    background-color: #f8fbfe;
    overflow: hidden;
    padding: 100px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300bcd4" fill-opacity="0.05" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center/cover;
    z-index: 0;
}

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

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 40px;
}

.about-text {
    padding: 20px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 188, 212, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-text .highlight-text {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}

.about-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.1);
    border-color: rgba(0, 188, 212, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
}

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

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* About Image */
.about-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

/* Badges */
.experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.certification-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.certification-badge i {
    margin-left: 8px;
    color: #FFB74D;
}

/* Stats Overlay */
.stats-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.stat-item {
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.15);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.primary-btn {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.primary-btn:hover {
    background: #00acc1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.secondary-btn:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: translateY(-3px);
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .about-text {
        padding: 0;
        text-align: center;
    }
    
    .features-grid {
        max-width: 600px;
        margin: 30px auto;
    }
    
    .about-cta {
        justify-content: center;
    }
    
    .image-container {
        max-width: 450px;
        margin: 40px auto 0;
    }
    
    .stats-overlay {
        position: relative;
        bottom: 0;
        margin-top: 30px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px 15px;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .stats-overlay {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: calc(50% - 10px);
    }
}

/* Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 188, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
    }
}

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

.features {
    list-style: none;
    margin-top: 30px;
}

.features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.features i {
    color: var(--secondary-color);
    margin-left: 10px;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 350px;
    height: 350px;
    background-color: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-placeholder i {
    font-size: 10rem;
    color: var(--primary-color);
}

/* Privacy Policy Section */
.privacy-policy {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

/* Privacy Cards */
.privacy-card {
    --ws-card-padding: 2rem;
    --ws-card-border-radius: 12px;
    --ws-card-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --ws-card-hover-box-shadow: 0 15px 30px rgba(0, 188, 212, 0.15);
    --ws-card-hover-transform: translateY(-5px);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.1);
    text-align: center;
    background: #fff;
}

.privacy-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 188, 212, 0.1);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.privacy-item p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.privacy-contact {
    margin-top: 50px;
    padding: 25px;
    background-color: rgba(0, 188, 212, 0.05);
    border-right: 4px solid var(--primary-color);
    border-radius: 8px;
}

.privacy-contact p {
    margin: 0;
    color: #555;
    font-size: 1.05rem;
}

.privacy-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-contact a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Styles for Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 25px 20px;
    }
    
    .privacy-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .privacy-item h3 {
        font-size: 1.2rem;
    }
    
    .privacy-contact {
        margin-top: 30px;
        padding: 20px 15px;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

/* Contact Grid Layout */
.contact-container {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

/* Contact Info Card */
.contact-info-card {
    --ws-card-padding: 2.5rem;
    --ws-card-border-radius: 16px;
    --ws-card-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    background: #fff;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.15);
    border-color: rgba(0, 188, 212, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

/* Info Item */
.info-item {
    --ws-card-padding: 2rem 1.5rem;
    --ws-card-border-radius: 12px;
    --ws-card-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    --ws-card-hover-box-shadow: 0 10px 30px rgba(0, 188, 212, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--ws-card-hover-box-shadow);
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    flex: 1;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 150, 200, 0.15));
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item:hover .info-icon {
    background: linear-gradient(135deg, var(--primary-color), #00acc1);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
}

.info-content h3 {
    margin: 0.5rem 0 0.25rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.info-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.2);
}

.quick-call {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-call i {
    margin-left: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.quick-call::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: 1;
}

.quick-call:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.quick-call:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.quick-call:hover i {
    transform: translateX(3px);
}

.quick-call span {
    position: relative;
    z-index: 2;
}

/* Contact Form Card */
.contact-form-card {
    --ws-card-padding: 2.5rem;
    --ws-card-border-radius: 12px;
    --ws-card-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    background: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Form Inputs */
ws-input,
ws-select,
ws-textarea {
    --ws-input-border-radius: 8px;
    --ws-input-border-color: #e0e0e0;
    --ws-input-focus-border-color: var(--primary-color);
    --ws-input-focus-box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
    --ws-input-padding: 0.75rem 1rem;
    --ws-input-font-family: 'Tajawal', sans-serif;
    --ws-input-transition: all 0.3s ease;
    margin-bottom: 0;
}

ws-textarea {
    --ws-textarea-min-height: 120px;
}

/* Submit Button */
.submit-btn {
    --ws-button-padding: 0.875rem 2rem;
    --ws-button-font-weight: 600;
    --ws-button-border-radius: 8px;
    --ws-button-transition: all 0.3s ease;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-container {
        gap: 2rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        --ws-card-padding: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .contact-info-card,
    .contact-form-card {
        --ws-card-padding: 1.5rem;
    }
    
    .info-content {
        flex-direction: row-reverse;
        text-align: right;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .submit-btn {
        width: 100%;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 50px 0 20px;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.footer-links i {
    font-size: 0.9em;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.1em;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .footer-section {
        width: 100%;
        text-align: center;
    }
    
    .footer-section h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
}

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

/* Articles Section */
.articles {
    padding: 80px 0;
    background-color: #f9fbfd;
}

.articles .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.article-date {
    color: #777;
    font-size: 0.85rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(-3px);
}

.view-all-articles {
    text-align: center;
    margin-top: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .image-placeholder {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
}
