:root {
    --primary: #4a6bff;
    --primary-dark: #3a56d4;
    --secondary: #ff6b4a;
    --dark: #2d3748;
    --light: #f7fafc;
    --gray: #e2e8f0;
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #f56565;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: var(--dark);
    color: white;
    padding: 0.5rem 5%;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.top-links a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s;
}

.top-links a:hover {
    color: var(--secondary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 1.5rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.search-box {
    position: relative;
    margin-left: 1rem;
}

.search-box input {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--gray);
    width: 200px;
    transition: width 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    width: 250px;
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

.cta-button {
    background-color: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.close-btn:hover {
    color: var(--danger);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.form-footer a:hover {
    text-decoration: underline;
}

.form-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
}

.form-tab {
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 3px solid transparent;
}

.form-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 10rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f6f9ff 0%, #e9f0ff 100%);
    position: relative;
    overflow: hidden;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #4a5568;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.secondary-button {
    background-color: white;
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    text-decoration: none;
}

.secondary-button:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg3NCwgMTA3LCAyNTUsIDAuMDUpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: 0.8;
    z-index: 1;
}

/* 3-Step Process Section */
.process-steps-section {
    padding: 5rem 5%;
    background-color: white;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.three-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-description {
    color: #4a5568;
}

/* Quality Services Section */
.quality-services {
    padding: 5rem 5%;
    background-color: #f8fafc;
    position: relative;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.quality-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.quality-card p {
    color: #4a5568;
}

/* Writing Needs Section */
.writing-needs {
    padding: 5rem 5%;
    background-color: white;
}

.writing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.writing-card {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

.writing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: var(--secondary);
}

.writing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.writing-card h3 i {
    margin-right: 10px;
    color: var(--primary);
}

.writing-card p {
    color: #4a5568;
}



/* Subjects Section */
.subjects-section {
    padding: 5rem 5%;
    background-color: #f8fafc;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.subject-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--primary);
    color: white;
}

.subject-card:hover .subject-icon {
    color: white;
    transform: scale(1.1);
}

.subject-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: all 0.3s;
}

/* Demo Video Section */
.demo-section {
    padding: 5rem 5%;
    background-color: white;
    text-align: center;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

/* Quality Resources Section */
.quality-resources {
    padding: 5rem 5%;
    background-color: #f8fafc;
    max-width: 1200px;
    margin: 0 auto;
}

.resources-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.resource-link {
    background-color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
}

.resource-link i {
    margin-right: 8px;
}

.resource-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--dark);
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover {
    background-color: #3b5998;
    color: white;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    color: white;
}

.social-link.linkedin:hover {
    background-color: #0077b5;
    color: white;
}

.social-link.whatsapp:hover {
    background-color: #25d366;
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 1;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: white;
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 200px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 4rem;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-info p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--dark);
    transition: color 0.3s;
}

.team-social a:hover {
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 5% 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-newsletter input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    border: none;
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}
.nav-links li {
    position: relative;
}



.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-links li:hover .services-dropdown {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-item {
    padding: 1rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.service-item:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.service-item p {
    font-size: 0.8rem;
    color: #718096;
    line-height: 1.4;
}

/* Services Modal Styles */
.services-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.services-modal .modal-content {
    background-color: white;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 1200px;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.services-modal h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 2rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--danger);
}

/* Services Controls */
.services-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-search {
    display: flex;
    border: 1px solid var(--gray);
    border-radius: 30px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.services-search input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    outline: none;
}

.services-search button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--gray);
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Services Grid */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item-full {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

.service-item-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item-full .service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-item-full h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.service-item-full p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid-full {
        grid-template-columns: 1fr;
    }
    
    .services-modal .modal-content {
        padding: 1.5rem;
        margin: 1rem auto;
        width: 95%;
    }
    
    .services-controls {
        flex-direction: column;
    }
    
    .services-search {
        max-width: 100%;
    }
    
    .category-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}
/* Live Chat Styles */
.live-chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.live-chat-container.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background-color: var(--primary);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-gif {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.chat-status {
    font-size: 0.8rem;
    background-color: var(--success);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 10px;
}

.minimize-chat, .close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.ai-message .message-content {
    align-self: flex-start;
    background-color: white;
    padding: 10px 15px;
    border-radius: 10px 10px 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 80%;
}

.user-message .message-content {
    align-self: flex-end;
    background-color: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 10px 10px 0 10px;
    max-width: 80%;
}

.message-time {
    font-size: 0.7rem;
    color: #777;
    margin-top: 5px;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background-color: white;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chat-input button:hover {
    background-color: var(--primary-dark);
}

.open-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s;
}

.open-chat-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.open-chat-btn i {
    font-size: 1.2rem;
}

/* Process Steps Section */
.process-steps-section {
    padding: 80px 0;
    background-color: #f9fafe;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.three-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-icon-container {
    width: 80px;
    height: 80px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: background-color 0.3s ease;
}

.step-card:hover .step-icon-container {
    background-color: #e1e9ff;
}

.step-icon {
    width: 36px;
    height: 36px;
}

.step-title {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .top-links a {
        margin: 0 0.5rem;
    }
    
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links {
        margin-top: 1rem;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0.5rem;
    }
    
    .search-box {
        margin: 1rem auto 0;
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .hero {
        padding-top: 12rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .three-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
    }
    
    .cta-section h3 {
        font-size: 2rem;
    }
    
    .services-dropdown {
        width: 300px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 14rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .three-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
    }
    
    .live-chat-container {
        width: 90%;
        right: 5%;
        bottom: 80px;
    }
    
    .open-chat-btn {
        bottom: 20px;
        right: 20px;
    }
}












/* Mobile First Styles */
@media (max-width: 767px) {
    /* App-like full viewport */
    html, body {
        height: 100%;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Header adjustments */
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    /* Hamburger menu */
   .mobile-nav-toggle {
    position: fixed; /* or 'absolute' depending on your layout */
    top: 89px; /* adjust as needed */
    left: 20px; /* adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}
    
    /* Mobile nav toggle button (positioned left corner) */
.mobile-nav-toggle {
    position: fixed;
    top: 90px;
    left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}

/* Animated X when active */
.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Overlay when menu is open */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile nav wrapper */
.nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    padding-top: 80px;
    overflow-y: auto;
}

.nav-wrapper.active {
    right: 0;
}

.nav-links {
    flex-direction: column;
    padding: 1.5rem;
}

.nav-links li {
    margin: 1rem 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.nav-wrapper.active .nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.nav-wrapper.active .nav-links li:nth-child(1) { transition-delay: 0.1s; }
.nav-wrapper.active .nav-links li:nth-child(2) { transition-delay: 0.15s; }
.nav-wrapper.active .nav-links li:nth-child(3) { transition-delay: 0.2s; }
/* Add more delays as needed */
























.nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(0,0,0,0.05);
    transform: translateX(5px);
}

/* Mobile search bar */
.mobile-search {
    display: block;
    padding: 1.5rem;
    padding-bottom: 0;
    width: 100%;
}

.mobile-search input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mobile-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    outline: none;
}
    
    /* App-like sections */
    section {
        padding: 2rem 1rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Touch-friendly buttons */
    .cta-button, .secondary-button {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    /* Adjust card layouts */
    .three-steps, .quality-grid, .writing-grid, .subjects-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile-specific dropdowns */
    .services-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
    }
    
    /* Chat widget adjustments */
    .live-chat-container {
        width: 95%;
        right: 2.5%;
        bottom: 80px;
    }
    
    .open-chat-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Tablet-specific adjustments */
    .three-steps, .quality-grid, .writing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-dropdown {
        width: 600px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Prevent zoom on input focus */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        /* Prevent elastic scrolling */
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}

/* Add app-like transitions */
a, button {
    transition: all 0.2s ease;
}

/* Touch feedback for buttons */
button:active, a:active {
    transform: scale(0.95);
    opacity: 0.8;
}





















/*  about///////////////////*/
 /* About Us Hero Section (Enhanced) */
        .about-hero {
            padding: 10rem 5% 4rem;
            background: linear-gradient(135deg, #f6f9ff 0%, #e9f0ff 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--dark);
            position: relative;
            z-index: 2;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #4a5568;
            position: relative;
            z-index: 2;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }
        
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb span {
            margin: 0 0.5rem;
            color: #718096;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg3NCwgMTA3LCAyNTUsIDAuMDUpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
            opacity: 0.8;
            z-index: 1;
        }
        
        /* Global Network Section */
        .global-network {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .network-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }
        
        .network-map {
            position: relative;
            height: 400px;
            background-image: url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1476&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .network-dots {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .network-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: var(--secondary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
            70% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
            100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
        }
        
        .network-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .network-content h2 span {
            color: var(--primary);
        }
        
        .network-content p {
            margin-bottom: 1.5rem;
            color: #4a5568;
        }
        
        .network-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background-color: #f8fafc;
            border-radius: 10px;
            border-left: 3px solid var(--primary);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #718096;
            font-size: 0.9rem;
        }
        
        /* Domains Section */
        .domains-section {
            padding: 5rem 5%;
            background-color: #f8fafc;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .section-header p {
            color: #718096;
        }
        
        .domains-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .domain-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .domain-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .domain-image {
            height: 180px;
            overflow: hidden;
        }
        
        .domain-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .domain-card:hover .domain-image img {
            transform: scale(1.1);
        }
        
        .domain-info {
            padding: 1.5rem;
        }
        
        .domain-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .domain-info h3 i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .domain-info p {
            color: #718096;
            font-size: 0.9rem;
        }
        
        /* Virtual Assistance Section */
        .virtual-assistance {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .assistance-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }
        
        .assistance-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .assistance-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .assistance-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .assistance-content h2 span {
            color: var(--primary);
        }
        
        .assistance-features {
            margin-top: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            background-color: #f8fafc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .feature-text p {
            color: #718096;
            font-size: 0.9rem;
        }
        
        /* Clients Section */
        .clients-section {
            padding: 5rem 5%;
            background-color: #f8fafc;
        }
        
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            padding: 1rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .client-logo img {
            max-width: 100%;
            max-height: 100%;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        
        .client-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Exam Service Section */
        .exam-service {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .service-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }
        
        .service-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .service-content h2 span {
            color: var(--primary);
        }
        
        .service-content p {
            margin-bottom: 1.5rem;
            color: #4a5568;
        }
        
        .service-features {
            margin-top: 2rem;
        }
        
        .service-features li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }
        
        .service-features li i {
            color: var(--success);
            margin-right: 10px;
            margin-top: 3px;
        }
        
        .service-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
         /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
            position: relative;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-column h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8rem;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .social-links a:hover {
            transform: translateY(-3px);
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 0.8rem;
            border-radius: 5px;
            border: none;
            margin-bottom: 1rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        /* Responsive Styles */
        @media (max-width: 992px) {
            .network-container,
            .assistance-container,
            .service-container {
                grid-template-columns: 1fr;
            }
            
            .network-map {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero {
                padding-top: 12rem;
            }
            
            .about-hero h1 {
                font-size: 2.2rem;
            }
            
            .stat-item {
                padding: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .about-hero {
                padding-top: 14rem;
            }
            
            .about-hero h1 {
                font-size: 1.8rem;
            }
            
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

         /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background-color: white;
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.9rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            white-space: nowrap;
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }
        

















        
/*----------------------about css--------------------------/*
  /* Service Features Section */
 