/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-center {
    text-align: center;
}

.highlight {
    color: #00D4AA;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #00D4AA;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept {
    background: #00D4AA;
    color: white;
}

.btn-accept:hover {
    background: #00c49a;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

.btn-decline:hover {
    background: #333;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 14px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.50);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
    text-decoration: none;

    transition: color 0.3s;
}

.nav-link:hover {
    color: #fff;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: transform 0.3s;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 97px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.png') repeat;
   
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 964px;
    width: 100%;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-subtitle span {
background: #359981;
width: 9px;
height: 9px;
}

.hero-title {
    font-family: 'Funnel Display', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    overflow: hidden;
}

/* Hero Title Animation Styles */
.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title .char.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.hero-title .highlight {
    position: relative;
    background: linear-gradient(135deg, #00D4AA 0%, #00F5C4 50%, #00D4AA 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-title .highlight::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s ease-in-out infinite;
    animation-delay: 1s; */
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Floating particles animation for hero */
.hero-title .word {
    position: relative;
    display: inline-block;
}

.hero-title .word.special::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 8px;
    height: 8px;
    background: #00D4AA;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 3s ease-in-out infinite;
    /* animation-delay: 2s; */
}

@keyframes floatParticle {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0) scale(0); 
    }
    20% { 
        opacity: 1; 
        transform: translateY(-20px) scale(1); 
    }
    80% { 
        opacity: 1; 
        transform: translateY(-40px) scale(1.2); 
    }
}

/* Cursor blink animation */
.hero-title .cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background: #00D4AA;
    margin-left: 2px;
    animation: blink 1s infinite;
    opacity: 0;
}

.hero-title .cursor.show {
    opacity: 1;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive adjustments for hero title animation */
@media (max-width: 768px) {
    .hero-title .char {
        transform: translateY(50px) rotateX(45deg);
    }
    
    .hero-title .highlight::before {
        animation-duration: 1.5s;
    }
    
    .hero-title .word.special::after {
        width: 6px;
        height: 6px;
        top: -8px;
        right: -8px;
    }
}

@media (max-width: 480px) {
    .hero-title .char {
        transition-duration: 0.4s;
    }
    
    .hero-title .cursor {
        width: 2px;
        height: 1em;
    }
}

/* Prefers reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-title .char {
        transition-duration: 0.2s;
        transform: translateY(10px);
    }
    
    .hero-title .highlight {
        animation: none;
        background: #00D4AA;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-title .highlight::before,
    .hero-title .word.special::after {
        animation: none;
        opacity: 0;
    }
}

.cta-btn {
 
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 60px;
background: #FFF;
    cursor: pointer;
    /* transition: background-color 0.3s, transform 0.3s; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}



.cta-btn:hover {
    background: #00c49a;
    transform: translateY(-2px);
}

.hero-btn {
 
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 60px;
background: #FFF;
    cursor: pointer;
    /* transition: background-color 0.3s, transform 0.3s; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    width: fit-content;
}



.hero-btn:hover {
    background: #00c49a;
    transform: translateY(-2px);
}



.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 1px;
display: flex;
    align-items: center;
    gap: 10px;
}

.section-subtitle span {
background: #359981;
width: 9px;
height: 9px;
}

.section-title {
    font-family: 'Funnel Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    
}

/* Coverage Section */
.coverage {
    padding: 100px 0;
    background-color: #000;
    color: white;
 background-image: url(../images/slider-bcg.png);
 background-position: center;
 background-size: cover;
}

.coverage-header {
   
        display: flex;
    justify-content: space-between;
    gap: 30px;
}

.coverage-header-content {
    display: flex;
    justify-content: space-between;

    gap: 20px;
}

.coverage-header .section-title {
    color: white;
    margin-bottom: 0;
}

.coverage-logo img {
   
    width: auto;

}

.coverage-subtitle-section {

}

.coverage-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
     max-width: 580px;
}

.coverage-description {
    font-size: 16px;
    color: #ccc;
    max-width: 580px;
   
}

.coverage-slider-container {
    position: relative;
}

.coverage-swiper {
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
}

.coverage-swiper .swiper-slide {
    height: auto;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.coverage-card {
    
    padding: 30px;
  
    border: 1px solid #454545;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
    border-color: #00D4AA;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.card-description {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    flex-grow: 1;
}

.contact-cta {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #404040;
}

.contact-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #00D4AA;
    padding: 12px 25px;
    color: #FFF;

font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-btn:hover {
    background: #00D4AA;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swiper Navigation */
.swiper-navigation {
    display: flex;
    margin-left: 10px;
    gap: 15px;
    
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background: #2d2d2d;
    border: 1px solid #404040;
    
    margin: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    color: #00D4AA;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #00D4AA;
    border-color: #00D4AA;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: white;
}

.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.swiper-button-disabled:hover {
    background: #2d2d2d;
    border-color: #404040;
}

.swiper-button-disabled:hover:after {
    color: #00D4AA;
}

/* Custom Swiper Styles */
.coverage-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
}

.coverage-swiper .coverage-card {
    width: 100%;
    margin: 0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

.coverage-swiper .swiper-slide-active .coverage-card {
   
   border: 2px solid #359981;
background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 5px 20px rgba(0, 212, 170, 0.15);
}

/* Swiper Pagination (if needed) */
.swiper-pagination {
    gap: 99px;
    display: flex;
    flex-direction: column;
    right: 0;
}

.swiper-pagination::before {
    content: '';
    position: absolute;
    height: 97%;
    width: 2px;
    background: #DBDBDB;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}


.swiper-pagination-bullet {
   background: #DBDBDB;
   width: 10px;
   height: 10px;
   border-radius: 0;
   opacity: 1;
    z-index: 3;
}

.swiper-pagination-bullet-active {
    background: #00D4AA;
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;

    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    background-image: url(../images/CTA.png);
    background-position: center;
    background-size: 100% 100%;
    padding-left: 50px;
    padding-top: 50px;
    padding-bottom: 40px;
    position: relative;
}

.cta-text {
    width: 60%;
}

.cta-title {
    font-family: 'Funnel Display', sans-serif;
    font-size: 51px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
}

.cta-title u {
    text-decoration-color: white;
}

.cta-description {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-section .cta-btn {
    background: white;
    color: #000;
}

.cta-section .cta-btn:hover {
    background: #f0f0f0;
}

.cta-image {
    position: absolute;
  top: -8%;
  right: 10px;
}

.cta-image img {
    width: 100%;
    height: auto;
}

/* Choose Section */
.choose {
    padding: 60px 0;
    background: white;
    overflow: hidden;
}

.choose-head {
    position: relative;
    max-width: 510px;
    width: 100%;
    margin: 0 auto;
}

.choose-head::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 160px;
    background-image: url(../images/title.png);
    background-position: center;
    background-size: 100% 100%;
}

.choose-slider-container {
    margin-top: 60px;
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
}

.choose-swiper {
    height: 500px;
    overflow: hidden;
}

.choose-swiper .swiper-wrapper {
    transition-timing-function: ease-in-out;
}

.choose-item {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    background: white;
  
    overflow: hidden;
    gap: 60px;
    transition: all 0.3s ease;
    height: 500px;
    position: relative;
    width: 100%;
}

.choose-item::before {
    /* content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #00D4AA;
    border-radius: 2px; */
}

.choose-swiper .swiper-slide-active .choose-item {
   
    
}

.choose-image {
    flex: 0 0 43%;
   
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.choose-image img {
    
}

.choose-image::before {
   
}

.choose-image img {
    width: 100%;


    position: relative;
    z-index: 2;
}

.choose-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: 493px;
    width: 100%;
}

.choose-number {
 
  
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    background: white;
    border: 1px solid #DDD;
margin-bottom: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.choose-swiper .swiper-slide-active .choose-number {
  
}

.choose-title {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.choose-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* Choose Navigation */
.choose-navigation {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    gap: 15px;
    z-index: 10;
}

.choose-navigation .swiper-button-prev,
.choose-navigation .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.choose-navigation .swiper-button-prev:after,
.choose-navigation .swiper-button-next:after {
    font-size: 16px;
    color: #666;
    font-weight: bold;
}

.choose-navigation .swiper-button-prev:hover,
.choose-navigation .swiper-button-next:hover {
    background: #00D4AA;
    border-color: #00D4AA;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.choose-navigation .swiper-button-prev:hover:after,
.choose-navigation .swiper-button-next:hover:after {
    color: white;
}

.choose-navigation .swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.choose-navigation .swiper-button-disabled:hover {
    background: white;
    border-color: #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.choose-navigation .swiper-button-disabled:hover:after {
    color: #666;
}

/* Vertical Swiper Specific Styles */
.choose-swiper.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.choose-swiper .swiper-slide {
    height: auto;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.choose-swiper .swiper-slide:last-child {
    margin-bottom: 0;
}

/* Progress Indicator */
.choose-progress {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 200px;
    background: #e0e0e0;
    border-radius: 2px;
}

.choose-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: #00D4AA;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Slide Transition Effects */
.choose-swiper .swiper-slide {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.choose-swiper .swiper-slide-active {
    opacity: 1;
}

.choose-swiper .swiper-slide-next,
.choose-swiper .swiper-slide-prev {
    opacity: 0.5;
}

/* Enhanced hover effects */
.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.15);
}

.choose-swiper .swiper-slide-active .choose-item:hover {
    transform: scale(1.02) translateY(-5px);
}

/* 
Required ICON images for Choose section (120x120px, PNG format):
- choose-tech-icon.png (Gear/Settings icon for "Tailored for Tech")
- choose-global-icon.png (Globe/World icon for "Global Coverage") 
- choose-trusted-icon.png (Shield icon for "Trusted by Leading Carriers")
- choose-track-icon.png (Calendar/Chart icon for "Proven Track Record")
- choose-support-icon.png (Headset/Support icon for "End-to-End Support")

These should be dark/gray icons that will be displayed on dark backgrounds with texture overlay.
*/

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: #f8f9fa;
    background-image: url(../images/Feedback-bcg.png);
    background-position: center;
    background-size: cover;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.client-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.client-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.client-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.client-rating {
    color: #ffd700;
    font-size: 14px;
}

.client-review {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-image img {
    width: 100%;
    height: auto;
}

.contact-description {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff;
}

.contact-details h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-details p {
    margin-bottom: 5px;
    color: #fff;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00D4AA;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, background-color 0.3s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.mob-img {
    display: none;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 50px 20px;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
       
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
      
    }
    
    
    
  
    
    .choose-content {
       padding: 20px;
       height: auto;
       min-height: auto;
    }
    
    .choose-title {
        
    }
    
    .choose-navigation {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        transform: none;
        right: auto;
        top: auto;
    }
    
  
    
    .choose-slider-container {
        max-width: 100%;
        padding-bottom: 60px;
    }
    
    .choose-navigation {
        right: -60px;
    }
    
    .choose-navigation .swiper-button-prev,
    .choose-navigation .swiper-button-next {
        width: 45px;
        height: 45px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 810px) {
    .mob-img {
        display: block;
        margin: 40px auto 0;
    }
    .container {
        padding: 0 15px;
    }

    .choose-slider-container {
        margin-top: 20px;
    }

    .choose-item {
        flex-direction: column;
      align-items: center;
      
        height: auto;
        min-height: auto;
    }

    .choose-image {
        display: none;
    }

      .choose-swiper {
        height: auto;
        min-height: auto;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .cta-content {
         display: flex;
       flex-direction: column-reverse;
       align-items: center;
       background-image: url(../images/cta-mob.png);
       background-position: center;
       background-repeat: no-repeat;
       background-size: cover;
       padding: 20px 20px 50px 20px;
    }

    .cta-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }

    .cta-text {
        width: 100%;
    }

    .swiper-pagination::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 97%;
    background: #DBDBDB;
    bottom: 4px;
    right: auto;
    top: auto;
    left: 50%;
    transform: translate(-50%, 0);
}

    .about-image {
        max-width: 450px;
        width: 100%;
        align-self: center;
        margin: 0 auto;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .coverage-header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .coverage-subtitle-section {
        text-align: center;
    }
    
    .coverage-description {
        margin: 0 auto;
    }
    
    .swiper-navigation {
        gap: 10px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px;
    }

    .swiper-pagination {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }

    .contact-image {
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .coverage-header {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 60px 0;
    }
    
    .coverage-card, .client-card {
        padding: 25px;
    }
    
    .choose-swiper {
        height: auto;
       
    }
    
    .choose-item {
       
    }
    
    .choose-image {
        width: 150px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .choose-image img {
        width: 60px;
        height: 60px;
    }
    
    .choose-number {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        top: 15px;
        left: 15px;
    }
    
    .choose-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .choose-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .choose-navigation .swiper-button-prev,
    .choose-navigation .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .choose-navigation .swiper-button-prev:after,
    .choose-navigation .swiper-button-next:after {
        font-size: 14px;
    }
    
    .choose-slider-container {
        margin-top: 40px;
    }
    
    .coverage-subtitle {
        font-size: 20px;
    }
    
    .coverage-header-content .section-title {
        font-size: 1.8rem;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 14px;
    }
}

              .page {
                padding: 100px 0 80px;
                background-color: #121212;
                color: #fff;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                