:root {
  --dark-blue: #28344a;     /* Muted navy with gray undertone – less harsh */
  --dark-green: #3a4f5f;    /* Calm earthy green-teal */
  --light-blue: #8fa4c4;    /* Softer, dusty blue */
  --gold: #bfa25a;          /* Muted warm gold, less shiny */
  --white: #ffffff;         /* Pure white – keep for readability */
  --gray: #7d8590;          /* Softer neutral gray */
  --light-gray: #e9ecef;    /* Gentle light gray for backgrounds */
  --black: #1c1f26;         /* Softer near-black for headings */
  --cream: #f2ebe3;         /* Slightly richer cream, warm but subtle */
  --charcoal: #3a3f4b;      /* Softer charcoal with blue-gray undertone */
}


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--dark-blue);   
    /*opacity: 0.9;
    background-image:  radial-gradient(var(--light-blue) 0.9px, transparent 0.9px), radial-gradient(var(--white) 0.9px, var(--dark-blue) 0.9px);
    background-size: 20px 20px;
    background-position: 0 0,10px 10px;*/
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Typography Hierarchy */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    font-family: "Avenir Roman", Sans-serif;
    color: var(--light-gray);
    font-weight: 510;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--dark-blue);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background-color: rgba(212, 175, 55, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    background-color: var(--gold);
    color: var(--black) !important;
    min-width: 70px !important;
    height: 50px !important;
    border-radius: 8px !important;
    padding: 15px 35px !important;
    font-weight: 600;
}

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    background-color: rgba(26, 54, 93, 0.95);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

.logo a {
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    white-space: nowrap;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ========== DROPDOWN MENU STYLES ========== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    color: var(--dark-blue) !important;
    padding: 12px 20px !important;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(191, 162, 90, 0.1);
    color: var(--gold) !important;
    border-left-color: var(--gold);
}

.dropdown-menu a::after {
    display: none;
}

.nav-links a.active {
    color: var(--gold) !important;
}

.dropdown-menu a.active {
    background: rgba(191, 162, 90, 0.1);
    color: var(--gold) !important;
    border-left-color: var(--gold);
}


.btn-nav {
    padding: 10px 20px;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* WordPress Development Page Styles */

/* WordPress Hero Section */
.wordpress-hero {
    padding: 150px 0 10px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2a3d6d 100%);
    position: relative;
    overflow: hidden;
}

.wordpress-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.wordpress-hero-text {
    flex: 1;
}

.wordpress-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight {
    color: var(--gold);
}

.wordpress-hero .subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.wordpress-hero-features {
    margin-bottom: 40px;
}

.wordpress-hero-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.wordpress-hero-features .feature i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.5rem;
}

.wordpress-hero-features .feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

.wordpress-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wordpress-hero-image {
    flex: 0 0 450px;
    height: auto;
    
}

.wordpress-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    bottom: 0;
    
}

/* WordPress Stats Section */
.wordpress-stats {
    background-color: var(--cream);
    padding: 80px 0;
    color: var(--black);
}

.wordpress-stats h2 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.stat-text {
    color: var(--charcoal);
    font-weight: 600;
}

/* WordPress Explanation Section */
.wordpress-explanation {
    background-color: var(--dark-blue);
    padding: 100px 0;
}

.explanation-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.explanation-text {
    flex: 1;
}

.explanation-text h2 {
    margin-bottom: 30px;
}

.explanation-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.wordpress-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.wordpress-badge i {
    font-size: 3rem;
    color: var(--gold);
    margin-right: 20px;
}

.badge-title {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.badge-desc {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.explanation-visual {
    flex: 0 0 400px;
}

.platform-comparison {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.platform-wordpress, .platform-others {
    padding: 30px;
    text-align: center;
}

.platform-wordpress {
    background: linear-gradient(135deg, #21759b 0%, #1a5a7a 100%);
    color: white;
}

.platform-others {
    background: var(--light-gray);
    color: var(--black);
}

.platform-wordpress h4, .platform-others h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.platform-stats {
    display: flex;
    justify-content: space-around;
}

.stat {
    text-align: center;
}

.value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* WordPress Advantages Section */
.wordpress-advantages {
    background-color: var(--cream);
    padding: 100px 0;
    color: var(--black);
}

.wordpress-advantages h2 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.advantage-card h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.advantage-card p {
    color: var(--charcoal);
    line-height: 1.6;
}

/* WordPress Approach Section */
.wordpress-approach {
    background-color: var(--dark-blue);
    padding: 100px 0;
}

.wordpress-approach h2 {
    text-align: center;
    margin-bottom: 20px;
}

.approach-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: var(--light-gray);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.approach-number {
    flex: 0 0 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.approach-content {
    flex: 1;
}

.approach-content h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.approach-content p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Memory Lane Qualifications Section */
.qualifications-memory-lane {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.qualifications-memory-lane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.memory-lane-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.memory-lane-header h2 {
    color: var(--dark-blue);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.memory-lane-subtitle {
    color: var(--charcoal);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Memory Lane Container */
.memory-lane-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: pulse 2s infinite;
}

.timeline-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--dark-blue);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--gold);
}

/* Timeline Items */
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.timeline-item.left {
    justify-content: flex-start;
    text-align: right;
}

.timeline-item.right {
    justify-content: flex-end;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.marker-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.marker-circle i {
    font-size: 1.8rem;
    color: var(--dark-blue);
}

.marker-year {
    margin-top: 10px;
    background: var(--dark-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    width: 45%;
    position: relative;
}

.content-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border-left: 5px solid var(--gold);
}

.timeline-item:hover .content-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-item.left .content-card {
    border-left: none;
    border-right: 5px solid var(--gold);
}

.content-card h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.card-badge.foundation {
    background: #e3f2fd;
    color: #1976d2;
}

.card-badge.advanced {
    background: #fff3e0;
    color: #f57c00;
}

.card-badge.certified {
    background: #e8f5e8;
    color: #2e7d32;
}

.card-badge.expert {
    background: #fce4ec;
    color: #c2185b;
}

.content-card p {
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.6;
}

.certification-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold);
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
    font-weight: 600;
}

.cert-badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

.skills-acquired {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: var(--light-gray);
    color: var(--charcoal);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.timeline-item:hover .skill-tag {
    background: var(--gold);
    color: var(--dark-blue);
}

.current-expertise {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.expertise-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
}

.expertise-item span {
    color: var(--charcoal);
    font-weight: 500;
}

/* Qualifications Summary */
.qualifications-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qualifications-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-blue), var(--gold));
}

.summary-content h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 2rem;
}

.summary-content > p {
    color: var(--charcoal);
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.journey-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    flex: 0 0 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: var(--dark-blue);
}

.benefit-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-content h4 {
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.benefit-content p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.summary-cta {
    margin-top: 30px;
}

.summary-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.summary-cta .btn i {
    margin-right: 10px;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Timeline Item Animations */
.timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-line {
        left: 70px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 70px;
    }
    
    .timeline-content {
        width: calc(100% - 120px);
        margin-left: 120px;
    }
    
    .timeline-item.left .content-card,
    .timeline-item.right .content-card {
        border-left: 5px solid var(--gold);
        border-right: none;
    }
    
    .qualifications-summary {
        padding: 40px 30px;
    }
    
    .journey-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .qualifications-memory-lane {
        padding: 80px 0;
    }
    
    .memory-lane-header h2 {
        font-size: 2.2rem;
    }
    
    .timeline-line {
        left: 50px;
    }
    
    .timeline-marker {
        left: 50px;
    }
    
    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 90px;
    }
    
    .marker-circle {
        width: 60px;
        height: 60px;
    }
    
    .marker-circle i {
        font-size: 1.5rem;
    }
    
    .content-card {
        padding: 25px 20px;
    }
    
    .qualifications-summary {
        padding: 30px 20px;
    }
    
    .summary-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .marker-circle {
        width: 50px;
        height: 50px;
    }
    
    .marker-circle i {
        font-size: 1.3rem;
    }
    
    .content-card {
        padding: 20px 15px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-icon {
        align-self: center;
    }
}

/* WordPress Services Section */
.wordpress-services {
    background-color: var(--cream);
    padding: 100px 0;
    color: var(--black);
}

.wordpress-services h2 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.services-grid .service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.services-grid .service-card:hover {
    transform: translateY(-10px);
}

.services-grid .service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.services-grid .service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.services-grid .service-card p {
    color: var(--charcoal);
    margin-bottom: 25px;
    line-height: 1.6;
}

.services-grid .service-card ul {
    text-align: left;
    margin-left: 20px;
}

.services-grid .service-card li {
    margin-bottom: 8px;
    color: var(--charcoal);
}

/* WordPress Case Studies */
.wordpress-case-studies {
    background-color: var(--dark-blue);
    padding: 100px 0;
}

.wordpress-case-studies h2 {
    text-align: center;
    margin-bottom: 20px;
}

.case-studies-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--light-gray);
    font-size: 1.2rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-study {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-10px);
}

.case-study-header {
    background: var(--gold);
    padding: 25px 30px;
    color: var(--dark-blue);
}

.case-study-header h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.project-type {
    font-style: italic;
    font-weight: 500;
}

.case-study-content {
    padding: 30px;
}

.challenge, .solution {
    margin-bottom: 25px;
}

.challenge h4, .solution h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.challenge p, .solution p {
    color: var(--light-gray);
    line-height: 1.6;
}

.results {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}

.result-label {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* WordPress Consultation Section */
.wordpress-consultation {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-green) 100%);
    padding: 100px 0;
}

.consultation-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.consultation-text {
    flex: 1;
}

.consultation-text h2 {
    margin-bottom: 20px;
}

.consultation-text p {
    margin-bottom: 30px;
    max-width: 500px;
    font-size: 1.1rem;
}

.consultation-benefits h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.consultation-benefits ul {
    list-style: none;
}

.consultation-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.consultation-benefits i {
    color: var(--gold);
    margin-right: 15px;
}

.consultation-form {
    flex: 0 0 450px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form .form-group option {
    color: var(--black);
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: "Inter", sans-serif;
}



.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* WordPress FAQ Section */
.wordpress-faq {
    background-color: var(--cream);
    padding: 100px 0;
    color: var(--black);
}

.wordpress-faq h2 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 60px;
}

.wordpress-faq .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.wordpress-faq .faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--white);
}

.wordpress-faq .faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.wordpress-faq .faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.wordpress-faq .faq-answer {
    padding: 0 30px;
    display: none;
    padding-bottom: 30px;
}

.wordpress-faq .faq-answer p {
    margin-bottom: 15px;
    color: var(--black);
}

.wordpress-faq .faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.wordpress-faq .faq-answer li {
    margin-bottom: 8px;
}

.wordpress-faq .faq-item.active .faq-answer {
    display: block;
}

.wordpress-faq .faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* WordPress CTA Section */
.wordpress-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2a3d6d 100%);
    padding: 100px 0;
    text-align: center;
}

.wordpress-cta h2 {
    margin-bottom: 20px;
}

.cta-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: var(--light-gray);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features .feature {
    text-align: center;
}

.cta-features .feature i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-features .feature h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cta-features .feature p {
    color: var(--light-gray);
}

.wordpress-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-guarantee {
    color: var(--light-gray);
}

.cta-guarantee i {
    color: var(--gold);
    margin-right: 10px;
}

/* Footer */
footer {
    padding: 70px 0 30px;
    background-color: var(--black);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info .logo {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-info p {
    max-width: 300px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--gold);
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}


/* Responsive Styles */

/* Medium devices (tablets, 992px and down) */
@media (max-width: 992px) {
    .logo a {
        color: var(--white);
        text-decoration: none;
    }

    .btn-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 50px;
        height: 50px;
        padding: 12px 20px;
        border: none;
        background: #D4AF37;
        border-radius: 8px;
        cursor: pointer;
        white-space: nowrap;
    }
    
    .btn-nav i {
        font-size: 24px;
        color: #1a1a2e;
    }
    .wordpress-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .wordpress-hero-text p {
        padding-left: 15%;
    }

    .wordpress-hero-features{
        padding-left: 30%;
    }
    
    .wordpress-hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .explanation-content {
        flex-direction: column;
    }
    
    .explanation-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .consultation-content {
        flex-direction: column;
    }
    
    .consultation-form {
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Small devices (landscape phones, 768px and down) */
@media (max-width: 768px) {
    .logo a {
        color: var(--white);
        text-decoration: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-blue);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
    }
    
    .btn-nav {
        display: inline-block;
        padding: 12px 24px;
        width: auto;
        margin: 10px auto;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    section {
        padding: 80px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }

        .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .wordpress-hero h1 {
        font-size: 2.5rem;
    }

    .wordpress-hero-text p {
        padding-left: 0;
    }

    .wordpress-hero-features{
        padding-left: 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .wordpress-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wordpress-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .logo a {
        color: var(--white);
        text-decoration: none;
    }

    .platform-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .results {
        flex-direction: column;
        gap: 20px;
    }
    
    .consultation-form {
        padding: 30px 20px;
    }

    .hero {
        padding-top: 120px;
        min-height: calc(100vh - 60px);
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-image {
        max-width: 280px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        margin-right: 0;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}









