/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2f6585;
    --secondary-color: #2d5f3f;
    --accent-color: #a9dcfb;
    --dark-green: #0d212d;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --gradient: linear-gradient(135deg, #2f6585 0%, #0d212d 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Ensure Inter font for all elements */
h1, h2, h3, h4, h5, h6,
p, span, a, li, td, th,
button, input, textarea, select,
.btn-primary, .btn-secondary, .btn-outline,
.cta-button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
    display: none !important;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu - Hidden on Desktop */
.mobile-menu {
    display: none !important;
}

.mobile-menu.active {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle{
        
     
     display: none !important;
        
    }
    .mobile-menu {
        display: none !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        list-style: none;
        padding: 20px 0;
        z-index: 999;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        display: block !important;
    }
}

.mobile-menu li {
    border-bottom: 1px solid var(--light-bg);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 15px 30px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 40px;
}

/* Mobile CTA Container - Hidden on Desktop */
.mobile-cta-container {
    display: none !important;
}

.mobile-cta {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-cta-container {
        display: block !important;
        padding: 15px 0;
    }
    
    .mobile-cta {
        display: flex !important;
        width: 100%;
        justify-content: center;
    }
}

.desktop-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button, .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover, .btn-primary:hover {
    background: #2f6585;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(47 101 133);
}

/* Hero Section */
.hero {
    background: #e4ebef;
    padding: 80px 0;
    color: var(--primary-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge, .section-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-weight: 500;
}

.hero-features i {
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid #2f6585;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-main {
    grid-column: 2 / 1;
    border-radius: 10px;
}

.fiber-about .about-img-main {
grid-column: 3 / 1;
border-radius: 10px;
}

.about-img-secondary {
    grid-column: 2 / 3;
    border-radius: 10px;
    margin-top: 40px;
}

.about h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 20px;
}

/* Stats Section */
.stats {
    background: var(--light-bg);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 18px;
}

/* Brand Section */
.brand-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.brand-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.brand-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.brand-card.large {
    grid-row: span 2;
    height: 620px;
}

.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 30px;
}

.brand-card.highlight {
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-content {
    text-align: center;
    padding: 40px;
}

.highlight-content i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-content h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.btn-dark {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    display: flex;
    gap: 20px;
}

.feature-box i {
    font-size: 30px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-box p {
    opacity: 0.9;
}

.why-choose-image img {
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-three {
    grid-template-columns: repeat(3, 1fr);
}

.service-featured {
    text-align: center;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-number {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Results Section */
.results {
    padding: 100px 0;
    background: var(--white);
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-header h2 {
    font-size: 40px;
    color: var(--primary-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.result-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.result-card:hover img {
    transform: scale(1.1);
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 77, 46, 0.95), transparent);
    color: var(--white);
    padding: 30px;
}

.result-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.result-link {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}

/* Awards Section */
.awards {
    padding: 100px 0;
    background: var(--dark-green);
    color: var(--white);
}

.awards-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge-circle {
    background: var(--accent-color);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.badge-circle i {
    font-size: 48px;
    margin-bottom: 10px;
}

.badge-text {
    text-align: center;
}

.awards-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.award-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.awards-image img {
    border-radius: 10px;
}

/* Quote Form Section */
.quote-form {
    padding: 100px 0;
    background: var(--light-bg);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.quote-text h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quote-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.quote-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.testimonials h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

.testimonial-card.highlight {
    background: var(--primary-color);
    color: var(--white);
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars {
    color: var(--accent-color);
    display: flex;
    gap: 5px;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
}

.testimonial-card.highlight h3 {
    margin-bottom: 10px;
}

.testimonial-text {
    text-align: left;
    color: var(--text-light);
    margin: 20px 0;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author div {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
}

.team h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: rgba(26, 77, 46, 0.9);
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: var(--white);
    font-size: 18px;
    transition: color 0.3s;
}

.team-social a:hover {
    color: var(--accent-color);
}

.team-card h3 {
    padding: 20px;
    color: var(--primary-color);
    font-size: 22px;
}

.team-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    width: 60%;
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 30px;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.faq h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-text p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--accent-color);
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.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: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-list i {
    color: var(--accent-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .why-choose-content,
    .quote-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .team-grid,
    .testimonials-grid,
    .services-three {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .brand-card.large {
        grid-row: span 1;
        height: 300px;
    }

    .awards-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    

    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Reduce heading sizes for tablets */
    h1 {
        font-size: 36px !important;
    }
    
    h2 {
        font-size: 32px !important;
    }
    
    .hero h1 {
        font-size: 36px !important;
    }
    
    .about h2,
    .services-header h2,
    .results-header h2,
    .testimonials h2,
    .team h2,
    .faq h2,
    .why-choose h2,
    .why-choose-header h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .desktop-cta {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-cta-container {
        display: block;
    }
    
    .mobile-cta {
        display: flex;
    }
    
    .navbar {
        flex-wrap: wrap;
    }

    /* Reduce heading sizes for mobile */
    h1 {
        font-size: 28px !important;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    h3 {
        font-size: 20px !important;
    }
    
    .hero h1 {
        font-size: 28px !important;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .about h2,
    .services-header h2,
    .results-header h2,
    .testimonials h2,
    .team h2,
    .faq h2,
    .why-choose h2,
    .why-choose-header h2,
    .brand-section h2,
    .providers h2,
    .quote-text h2,
    .newsletter-text h2,
    .cta-text h2,
    .cta-center h3 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .cta-text {
        width: 100%;
    }
    
    .stat-item h3 {
        font-size: 32px !important;
    }

    .services-grid,
    .results-grid,
    .team-grid,
    .testimonials-grid,
    .services-three,
    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
    }
    
    /* Adjust padding for mobile */
    .hero,
    .about,
    .services,
    .why-choose,
    .testimonials,
    .team,
    .faq,
    .providers {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }


}

/* New Styles for TV & Cable Internet */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    background: var(--gradient);
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content-box {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--white);
    width: 75%;
}

.cta-content-box i {
    font-size: 48px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.cta-content-box h3 {
    color: var(--white);
    margin-bottom: 10px;
    text-align: left;
}

.cta-content-box p {
    opacity: 0.9;
    margin: 0;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-box-large {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-box-large:hover {
    transform: translateY(-10px);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-large i {
    font-size: 36px;
    color: var(--accent-color);
}

.feature-box-large h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-box-large p {
    color: var(--text-light);
}

.cta-center {
    text-align: center;
    background: var(--light-bg);
    padding: 30px 15px;
    border-radius: 15px;
}

.cta-center h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 45px;
}

.cta-center i {
    color: var(--accent-color);
}

.btn-large {
    font-size: 18px;
    padding: 15px 40px;
}

.btn-block {
    width: 100%;
}

.providers {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.provider-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: transform 0.3s;
}

.provider-card:hover {
    transform: translateY(-5px);
}

.provider-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-header h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

/* New Centered Footer Styles */
.footer-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.footer-logo-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo-centered img {
    height: 50px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 35px;
}

.footer-contact-centered i {
    color: var(--accent-color);
    font-size: 24px;
}

.footer-contact-centered a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-contact-centered a:hover {
    color: var(--white);
    text-shadow: 0 0 20px rgba(200, 255, 0, 0.5);
}

.footer-providers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-providers a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
}

.footer-providers a:hover {
    color: var(--accent-color);
    background: rgba(255,255,255,0.05);
}

.provider-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    user-select: none;
}

@media (max-width: 768px) {
    .footer-providers {
        flex-direction: column;
        gap: 10px;
    }
    
    .provider-separator {
        display: none;
    }
    
    .footer-providers a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .footer-description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .footer-contact-centered {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-logo-centered img {
        height: 40px;
    }
}

.contact-info-footer {
    margin-top: 20px;
}

.contact-info-footer .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info-footer .contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-footer .contact-item a:hover {
    color: var(--accent-color);
}

.contact-info-footer i {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content-box {
        flex-direction: column;
        text-align: center;
    }

        .providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    }
}

/* Xfinity Page Styles */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.provider-hero {
    background: #e4ebef
}

.provider-logo-header {
    margin-bottom: 20px;
}

.why-choose-alt {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-alt .why-choose-header h2 {

    color: var(--primary-color);
}

.pricing-section {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
}

.pricing-section .section-badge {
    display: inline-block;
}

.pricing-section h2,
.pricing-section .section-subtitle {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pricing-card.featured .plan-speed,
.pricing-card.featured .plan-price,
.pricing-card.featured .plan-features li,
.pricing-card.featured h3 {
    color: var(--text-dark);
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.speed-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.pricing-card.featured .speed-badge.featured-badge {
    background: var(--accent-color);
    color: var(--primary-color);
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    margin-top: 0;
}

.pricing-card.featured .plan-name {
    color: var(--primary-color);
}

.plan-subtitle {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pricing-card.featured .plan-subtitle {
    color: #999;
}

.plan-price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    line-height: 1;
}

.pricing-card.featured .plan-price {
    border-bottom-color: #e5e5e5;
}

.plan-price .currency {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-dark);
    vertical-align: baseline;
    line-height: 1;
    margin-right: 0;
}

.plan-price .amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -3px;
}

.plan-price .period {
    font-size: 18px;
    color: #999;
    font-weight: 400;
    vertical-align: super;
    margin-left: 2px;
}

.pricing-card.featured .plan-price .currency,
.pricing-card.featured .plan-price .amount {
    color: var(--text-dark);
}

.pricing-card.featured .plan-price .period {
    color: #999;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.plan-features li i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card.featured .plan-features li {
    color: var(--text-dark);
}

.pricing-card.featured .plan-features li i {
    color: var(--accent-color);
}

.btn-get-started {
    display: block;
    width: 100%;
    padding: 16px 30px;
    background: var(--text-dark);
    color: white;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: var(--primary-color);
    transform: scale(1.02);
}

.pricing-card.featured .btn-get-started {
    background: var(--text-dark);
}

.pricing-card.featured .btn-get-started:hover {
    background: var(--primary-color);
}

.plan-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pricing-card .plan-header {
    background: #f8f9fa;
    padding: 35px 25px 25px;
    position: relative;
    border-bottom: 2px solid #e8e8e8;
}

.pricing-card.featured .plan-header {
    background: rgba(0,0,0,0.15);
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.plan-icon i {
    font-size: 28px;
    color: var(--primary-color);
    z-index: 1;
}

.pricing-card.featured .plan-icon {
    background: var(--accent-color);
    border-color: var(--white);
}

.pricing-card.featured .plan-icon i {
    color: var(--primary-color);
}

.plan-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-card.featured .plan-title {
    color: var(--accent-color);
}

.plan-speed {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.plan-speed span {
    font-size: 16px;
    font-weight: 500;
    color: #777;
    margin-left: 5px;
}

.pricing-card.featured .plan-speed {
    color: var(--white);
}

.pricing-card.featured .plan-speed span {
    color: rgba(255,255,255,0.9);
}

.pricing-card .plan-body {
    padding: 30px 25px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.pricing-card.featured .plan-features h3 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.3);
}

.plan-features li {
    padding: 14px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--accent-color);
    font-size: 11px;
    flex-shrink: 0;
    background: var(--primary-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.pricing-card.featured .plan-features i {
    background: var(--white);
    color: var(--primary-color);
}

.pricing-card.featured .plan-features li {
    color: rgba(255,255,255,0.95);
    border-bottom-color: rgba(255,255,255,0.15);
}

.plan-footer {
    padding: 0 25px 30px;
}

.plan-footer .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-footer .btn-support {
    width: 100%;
    padding: 13px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-footer .btn-support:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 46, 0.3);
}

.pricing-card.featured .plan-footer .btn-support {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.pricing-card.featured .plan-footer .btn-support:hover {
    background: var(--white);
    color: var(--primary-color);
}

.plan-note {
    font-size: 11px;
    color: #999;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
}

.pricing-card.featured .plan-note {
    color: rgba(255,255,255,0.75);
}

.fiber-about {
    background: var(--white);
}

.info-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid var(--accent-color);
}

.info-box p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.8;
}

.special-deals {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.special-deals .section-badge {
    background: var(--accent-color);
    color: var(--text-dark);
    display: inline-block;
}

.special-deals h2 {
    color: var(--white);
    text-align: center;
}

.special-deals .section-subtitle {
    color: rgba(255,255,255,0.8);
    text-align: center;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.deal-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.deal-card.featured-deal {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.deal-card.featured-deal:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.deal-card.featured-deal .plan-name {
    color: var(--primary-color);
}

.deal-card.featured-deal .plan-subtitle {
    color: #999;
}

.deal-card.featured-deal .plan-price {
    border-bottom-color: #e5e5e5;
}

.deal-card.featured-deal .plan-price .currency,
.deal-card.featured-deal .plan-price .amount {
    color: var(--text-dark);
}

.deal-card.featured-deal .plan-price .period {
    color: #999;
}

.deal-card.featured-deal .plan-features li {
    color: var(--text-dark);
}

.deal-card.featured-deal .plan-features li i {
    color: var(--accent-color);
}

.deal-card.featured-deal .btn-get-started {
    background: var(--text-dark);
}

.deal-card.featured-deal .btn-get-started:hover {
    background: var(--primary-color);
}

/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   ======================================== */

.services-pricing-section {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
}

.services-pricing-section .section-badge {
    display: inline-block;
}

.services-pricing-section h2,
.services-pricing-section .section-subtitle {
    text-align: center;
}

.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.services-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.services-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.services-speed-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.services-speed-badge.featured-badge {
    background: var(--accent-color);
    color: var(--primary-color);
}

.services-plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    margin-top: 0;
}

.services-plan-subtitle {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.services-plan-price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    line-height: 1;
}

.services-plan-price .currency {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-dark);
    vertical-align: baseline;
    line-height: 1;
    margin-right: 0;
}

.services-plan-price .amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -3px;
}

.services-plan-price .period {
    font-size: 18px;
    color: #999;
    font-weight: 400;
    vertical-align: super;
    margin-left: 2px;
}

.services-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.services-plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.services-plan-features li i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    background: #2f6585 !important;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-btn-get-started {
    display: block;
    width: 100%;
    padding: 16px 30px;
    background: var(--text-dark);
    color: white;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-btn-get-started:hover {
    background: var(--primary-color);
    transform: scale(1.02);
}

/* Services Special Deals Section */
.services-special-deals {
    padding: 100px 0;
    background: #e4ebef;
    color: var(--white);
    text-align: center;
}

.services-special-deals .section-badge {
    background: var(--accent-color);
    color: var(--secondary-color);
    display: inline-block;
}

.services-special-deals h2 {
    color: var(--primary-color);
    text-align: center;
}

.services-special-deals .section-subtitle {
    color: var(--text-light);
    text-align: center;
}

.services-deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.services-deal-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.services-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .services-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-deals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }


    .why-choose-alt{

        padding: 60px 0;
    }



    .services-pricing-section {
    padding: 60px 0;
}

.services-special-deals {
    padding: 60px 0;
}

.features-grid{

    grid-template-columns: 1fr !important;


}


}