/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg,rgba(249, 249, 255, 1) 0%, rgba(207, 216, 249, 1) 70%, rgba(249, 249, 255, 1) 100%);

}
.container{
    width: 100%;
    max-width:  1280px;
    margin: 0 auto;
    padding: 0px 15px;
}
.header {
    padding: 18px 0px;
    background-color: #fff;
}
section.stratos-digital {
    padding: 50px 0;
}
.stratos-digital-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    line-height: 1.4;
    gap: 8px;
    background-color: #EBF5FF;
    border: 1px solid #C9D6FF;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-logo img {
    display: block;
}
.stratos-digital-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
.stratos-digital-content h1 {
    font-size: 80px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}
.blue-text {
    color: #3768FF;
}
.blue-light-text{
    color: #7999FF;
}
.black-text {
    color: #021037;
}
.orange-light-text {
    color: #FFDEAD;
}
.stratos-digital-content h3 {
    font-size: 30px;
    color: #05050A;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 30px;
}
.stratos-digital-content p {
    font-size: 22px;
    line-height: 1.4;
    color: #021037;
    font-weight: 300;
}
.stratos-digital-image img {
    width: 100%;
}

/* Our Expertise Section */
.our-expertise {
    padding: 80px 0;
    background-color: #fff;
    border-radius: 60px;
    margin: 0px 20px 20px 20px;
}
.our-expertise-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.expertise-badge {
    background-color: transparent;
    border: 1px solid #C9D6FF;
}
.expertise-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.expertise-description {
    max-width: 850px;
    margin: 0 auto;
}
.expertise-subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    color: #021037;
    margin-bottom: 60px;
}

/* Expertise Cards */
.expertise-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.expertise-card {
    background-color: #FAF9FF;
    border-radius: 60px;
    padding: 24px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.card-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Smart Growth Section */
.smart-growth {
    border-radius: 60px;
    margin: 0px 20px 20px 20px;
    background: #3768FF;
    position: relative;
    overflow: hidden;
}
.smart-growth::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #DCC8BB;
    bottom: 0px;
    right: 400px;
    filter: blur(90px);
    z-index: 0;
}
.smart-growth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    z-index: 9;
    position: relative;
}
.smart-growth-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.smart-growth-badge {
    background-color: transparent;
    border: 1px solid #ffffff52;
    font-size: 12px;
    font-weight: 500;
}
.smart-growth-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.smart-growth-description {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.smart-growth-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
}
.smart-growth-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px -80px 0px -50px;
    z-index: 9;
}
.smart-growth-image img {
    width: 100%;
}

/* About Us Section */
.about-us {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #fff;
    border-radius: 60px;
    margin: 0px 20px 20px 20px;
    position: relative;
}
.about-us:after {
    content: "";
    background-image: url(../images/about-footer-img.png);
    background-size: 100%;
    width: 400px;
    height: 80px;
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    right: 80px;
    bottom: 0;
}
.about-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.about-us-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.about-us-badge {
    background-color: transparent;
    border: 1px solid #FFDEAD;
    color: #F9BB5F
}
.about-us-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-us-description {
    max-width: 670px;
}
.about-us-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
}
.about-us-features {
    display: flex;
    gap: 20px;
}
.features-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-item {
    display: flex;
    gap: 10px;
    align-items: center;
}
.feature-icon {
    width: 72px;
    height: 72px;
}
.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feature-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}
.about-us-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.stats-card {
    background-color: #FAF9FF;
    border-radius: 30px;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.stats-card.blue-card {
    background-color: #3768FF;
    justify-content: center;
    text-align: center;
}
.stats-icon img {
    width: 80px;
    height: 80px;
}
.stats-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stats-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}
.stats-description {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
}
/* Blue Card Metrics */
.stats-metrics {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
}
.metric {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.metric-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}
.metric-label {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
}
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.card-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.card-description {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    color: #27365E;
}


/* why Choose Section */
.why-choose {
    border-radius: 60px;
    margin: 0px 20px 20px 20px;
    background: #D3DDFF;
    position: relative;
    overflow: hidden;
}
.why-choose-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}
.why-choose-image img {
    width: 100%;
}
.why-choose-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px -80px 0px -80px;
}
.why-choose-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Clients Success Section */
.clients-success {
    padding: 80px 0 80px 0;
    background-color: #fff;
    border-radius: 60px;
    margin: 0px 20px 20px 20px;
}
.clients-success-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}
.clients-success-badge {
    background-color: transparent;
    border: 1px solid #C9D6FF;
    color: #3768FF;
}
.clients-success-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.clients-success-subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    color: #021037;
    margin-bottom: 50px;
}
.testimonial-card {
    background-color: #FAF9FF;
    border-radius: 50px;
    padding: 30px 25px;
    margin: 0px 10px;
}
.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonial-stars-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    align-items: end;
}
.testimonial-stars {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 18px;
    color: #FF9900;
}
.quote-icon {
    width: 60px;
    opacity: 0.4;
}
.testimonial-quote {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    color: #021037;
    margin: 0;
}
.testimonial-divider {
    width: 100%;
    height: 2px;
    background-color: #F1EFFC;
    margin: 0px 0;
}
.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.author-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #27365E;
    margin: 0;
}
.author-role {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    color: #021037;
    margin: 0;
}
.author-category {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #F9BB5F;
    margin: 0;
}
.testimonial-metric {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.metric-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #3768FF;
    max-width: 130px;
    text-align: right;
}

/* Trusted Leaders Section */
.trusted-leaders {
    padding: 50px 0 50px 0;
    background-color: #FFF8EE;
    border-radius: 80px;
    margin: 0px 20px 20px 20px;
}
.trusted-leaders-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}
.trusted-leaders-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.trusted-leaders-subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    color: #021037;
    margin-bottom: 40px;
}
.stats-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 280px;
    gap: 10px;
}
.stat-number {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    color: #3768FF;
}
.stat-label {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #021037;
}
.stat-divider {
    width: 1px;
    height: 90px;
    background-color: #F9BC5E;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 80px 0;
    background-color: #fff;
    border-radius: 60px;
    margin: 0px 20px 20px 20px;
}
.faq-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 60px;
    text-align: center;
}

/* FAQ Section */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.faq-item {
    background: #ffffff;
    border: 2px solid #F2F1FB;
    border-radius: 50px;
    padding: 0;
}
.faq-question-header {
    background: #FFDEAD;
    padding: 15px 30px;
    border-radius: 32px;
    margin: -28px 0px 20px 40px;
    display: inline-block;
}
.faq-question-text {
    font-size: 20px;
    font-weight: 600;
    color: #021037;
    line-height: 1.3;
    flex: 1;
}
.faq-answer-text {
    padding: 0 40px 30px 40px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    color: #021037;
    margin: 0;
    max-width: 1000px;
}
.faq-answer-text-strong {
    display: block;
    font-weight: 700;
}

/* Get Started Section */
.get-started {
    background: rgb(55, 104, 255);
    border-radius: 60px;
    padding-top: 80px;
    padding-bottom: 100px;
    margin: 0px 20px 20px 20px;
    position: relative;
    overflow: hidden;
}
.get-started:before {
    content: "";
    background-image: url(../images/get-started-bottom-img.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: 99;
    width: 220px;
    height: 67px;
}
.get-started::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgb(211, 221, 255);
    z-index: 0;
}

.get-started .container {
    position: relative;
    z-index: 2;
}
.get-started-content {
    display: flex;
    align-items: flex-start;
}
/* Form Section */
.get-started-form-section {
    max-width: 50%;
    padding-right: 70px;
}
.get-started-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.get-started-form-container {
    background: rgba(241, 240, 251, 1);
    border-radius: 40px;
    padding: 32px;
    margin-bottom: 24px;
}
.get-started-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.form-label {
    font-size: 12px;
    font-weight: 600;
    color: #021037;
    text-transform: uppercase;
    display: block;
    position: absolute;
    z-index: 99;
    left: 27px;
    top: 10px;
}
.business_goals_label {
    font-weight: 600;
    font-size: 16px;
}
.form-input-container,
.form-textarea-container,
.form-select-container {
    position: relative;
    display: flex;
    align-items: center;
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 20px 24px;
    border: 1px solid transparent;
    border-radius: 64px;
    background: #fff;
    font-size: 14px;
    color: #021037;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-select {
    padding-top: 30px;
    padding-bottom: 10px;
}
.form-textarea {
    border-radius: 24px;
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
    font-family: inherit;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: rgb(55, 104, 255);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: #021037;
    opacity: 0.7;
}
.required-asterisk {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #E8653B;
    font-weight: 600;
    z-index: 1;
    pointer-events: none;
}
.form-input {
    padding-left: 36px;
}

/* Select Dropdown Styles */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 50px;
}
.form-select-container {
    position: relative;
}
.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #021037;
    opacity: 0.7;
}
.get-started-submit-btn {
    background: linear-gradient(135deg, #FE9E0E 0%, #F9BB5E 100%);
    color: #021837;
    border: none;
    border-radius: 64px;
    padding: 22px 32px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.5px;
}
/* Contact Section */
.get-started-contact-section {
    flex: 1;
    color: white;
    padding-left: 70px;
}
.contact-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.contact-description {
    margin: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon-container {
    flex-shrink: 0;
}
.contact-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(211, 221, 255);
}
.contact-icon img {
    width: 70px;
}
.contact-method-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
}
.contact-method-info {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    font-weight: 300;
}
.contact-method-info a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    opacity: 0.6;
}
.next-steps-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 350px;
}
.next-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.step-number {
    font-size: 38px;
    font-weight: 700;
    color: rgb(121, 153, 255);
    line-height: 1;
    flex-shrink: 0;
}
.step-description {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    font-weight: 300;
}

/* Footer Styles */
.footer {
    background-color: #02103B;
    border-radius: 60px;
    padding: 80px 0;
    position: relative;
    margin: 0px 20px 20px 20px;
}
.footer::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 178px;
    width: 300px;
    height: 300px;
    background: hsl(204.96deg 100% 46.67% / 30%);
    border-radius: 100%;
    filter: blur(90px);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    z-index: 99;
    position: relative;
}
.footer-left {
    flex: 0 0 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-logo img {
    height: 64px;
    width: auto;
}
.footer-description {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 300;
    max-width: 447px;
}
.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-contact-icon {
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-icon img {
    width: 50px;
}
.footer-contact-text a {
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
}
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 40px 0 24px 0;
}
.footer-bottom {
    display: flex;
    justify-content: flex-start;
}
.footer-copyright {
    font-size: 14px;
    line-height: 1.14;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}


.thank-you-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 16, 55, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.thank-you-popup.show {
    display: flex;
}
.thank-you-content {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(2, 16, 55, 0.2);
    position: relative;
    animation: popupSlideIn 0.3s ease-out;
}
@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.thank-you-icon {
    margin-bottom: 25px;
}
.thank-you-icon i {
    font-size: 60px;
    color: #3768FF;
}
.thank-you-title {
    font-size: 32px;
    font-weight: 700;
    color: #021037;
    margin-bottom: 20px;
}
.thank-you-message {
    font-size: 18px;
    line-height: 1.6;
    color: #021037;
    margin-bottom: 35px;
    font-weight: 400;
}
.thank-you-close-btn {
    background: #3768FF;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.thank-you-close-btn:hover {
    background: #2a4fd8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(55, 104, 255, 0.3);
}



/* Responsive Styles */
@media (max-width: 1200px) {
    .stratos-digital-content h1 {
        font-size: 60px;
    }
    .stratos-digital-content h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .our-expertise {
        padding: 50px 0;
    }
    .expertise-title {
        font-size: 36px;
    }
    .expertise-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .expertise-card {
        padding: 20px;
        padding-bottom: 30px;
    }
    .card-title {
        font-size: 20px;
    }
    .card-description {
        font-size: 18px;
    }
    .smart-growth-title {
        font-size: 36px;
    }
    .smart-growth-subtitle {
        font-size: 18px;
    }
    .about-us {
        padding-top: 50px;
        padding-bottom: 120px;
    }
    .about-us-title {
        font-size: 36px;
    }
    .about-us-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-us-description {
        max-width: 100%;
    }
    .metric-label br {
        display: none;
    }
    .why-choose-title {
        font-size: 36px;
    }
    .clients-success {
        padding: 50px 0 50px 0;
    }
    .clients-success-title {
        font-size: 36px;
    }
    .metric-value {
        font-size: 20px;
        max-width: 100px;
    }
    .author-name {
        font-size: 18px;
    }
    .trusted-leaders-title {
        font-size: 36px;
    }
    .trusted-leaders-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .stats-section {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-label {
        font-size: 18px;
    }
    .faq-section {
        padding: 50px 0 50px 0;
    }
    .faq-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    .faq-question-text {
        font-size: 18px;
    }
    .faq-answer-text {
        font-size: 18px;
        max-width: 100%;
    }
    .faq-item {
        border-radius: 30px;
    }
    .get-started {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    .get-started-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .get-started-form-container {
        border-radius: 30px;
        padding: 20px;
        margin-bottom: 20px;
    }
    .get-started-form-section {
        padding-right: 20px;
    }
    .contact-title {
        font-size: 36px;
    }
    .contact-description {
        font-size: 18px;
    }
    .contact-method-title {
        font-size: 20px;
    }
    .next-steps-title {
        font-size: 22px;
    }
    .step-number {
        font-size: 28px;
    }
    .get-started-contact-section {
        padding-left: 20px;
    }
    .footer {
        padding: 50px 0;
    }
}

@media (max-width: 991px) {
.smart-growth-content {
        padding: 50px 0px;
    }
    .expertise-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-left {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .stratos-digital-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stratos-digital-content p {
        font-size: 20px;
    }
    .stratos-digital-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .our-expertise {
        border-radius: 40px;
        margin: 0px 15px 20px 15px;
    }
    .expertise-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .expertise-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .smart-growth-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .smart-growth-image {
        margin: -20px -20px 0px -50px;
        z-index: 9;
    }
    .smart-growth-title {
        font-size: 36px;
    }
    .smart-growth-description {
        max-width: 100%;
        gap: 15px;
    }
    .smart-growth {
        border-radius: 40px;
        margin: 0px 15px 20px 15px;
    }
    .about-us {
        border-radius: 40px;
        margin: 0px 15px 20px 15px;
    }
    .about-us-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .about-us-subtitle {
        font-size: 18px;
    }
    .about-us-content {
        gap: 25px;
    }
    .feature-title {
        font-size: 16px;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    .feature-icon img {
        width: 60px;
    }
    .stats-card {
        border-radius: 20px;
        padding: 30px 20px;
        gap: 15px;
    }
    .stats-title {
        font-size: 20px;
    }
    .stats-description {
        font-size: 18px;
    }
    .why-choose-wrapper {
        gap: 30px;
        flex-direction: column;
    }
    .why-choose {
        border-radius: 40px;
        margin: 0px 15px 20px 15px;
        padding-top: 50px;
    }
    .why-choose-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .clients-success {
        border-radius: 40px;
        margin: 0px 15px 20px 15px;
    }
    .why-choose-image {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px -20px 0px -180px;
    }
    .clients-success-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .clients-success-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .trusted-leaders {
        border-radius: 40px;
        margin: 0px 15px 20px 15px;
    }
    .stats-section {
        flex-direction: column;
    }
    .stat-divider {
        width: 100px;
        height: 1px;
    }
    .trusted-leaders-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .faq-section {
        border-radius: 40px;
        margin: 0px 15px 20px 15px;
    }
    .faq-title {
        font-size: 32px;
    }
    .faq-question-header {
        margin: -28px 0px 20px 20px;
    }
    .faq-answer-text {
        padding: 0 20px 20px 20px;
    }
    .get-started {
        margin: 0px 15px 20px 15px;
        padding-bottom: 50px;
        border-radius: 40px;
    }
    .get-started-content {
        flex-direction: column;
    }
    .get-started-form-section {
        padding-right: 0;
        width: 100%;
        max-width: 100%;
    }
    .get-started-contact-section {
        padding-left: 0;
        padding-top: 80px;
        width: 100%;
    }
    .get-started::after {
        width: 100%;
        height: 760px;
    }
    .get-started-title {
        font-size: 36px;
        text-align: center;
    }
    .get-started-form {
        gap: 15px;
    }
    .contact-title {
        font-size: 36px;
    }
    .contact-icon img {
        width: 50px;
    }
    .contact-method-info a {
        display: block;
    }
    
    .contact-methods {
        gap: 20px;
        margin-bottom: 20px;
    }
    .get-started:before{
        display: none;
    }
    .footer {
        border-radius: 40px;
        margin: 0px 15px 20px 15px;
    }
    .thank-you-content {
        padding: 40px 30px;
        margin: 20px;
    }
    .thank-you-title {
        font-size: 28px;
    }
    .thank-you-message {
        font-size: 16px;
    }
    .thank-you-icon i {
        font-size: 50px;
    }
}

@media (max-width: 667px) {
    .stratos-digital-content h1 {
        font-size: 48px;
    }
    .expertise-cards-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .expertise-card {
        padding: 30px;
    }
    .smart-growth-image {
        margin: -20px -20px 0px -110px;
    }
    .smart-growth::before {
        width: 250px;
        height: 250px;
        bottom: 60px;
        right: 70px;
        filter: blur(110px);
    }
    .feature-item {
        gap: 15px;
        align-items: flex-start;
        flex-direction: column;
    }
    .stats-card {
        border-radius: 30px;
        padding: 30px 30px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .stats-metrics {
        gap: 30px;
        flex-direction: column;
        width: 100%;
    }
    .about-us:after{
        display: none;
    }
    .about-us {
        padding-bottom: 50px;
    }
    .why-choose-title {
        text-align: center;
    }
    .why-choose-image {
        margin: 0px -20px 0px -180px;
    }
    .footer-content {
        gap: 30px;
        flex-direction: column;
    }
    .footer-right {
        align-items: flex-start;
        gap: 30px;
        flex-direction: column;
    }
    .footer-left {
        flex: 0 0 100%;
    }
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
    .footer-logo {
        text-align: center;
    }
    .footer-bottom {
        justify-content: center;
    }
    .expertise-card {
        border-radius: 30px;
    }
    .contact-method-info br {
        display: none;
    }
}

@media (max-width: 580px) {
    .get-started::after {
        height: 820px;
    }
    .get-started-contact-section {
        padding-top: 90px;
    }
    body {
        background: linear-gradient(85deg, rgba(249, 249, 255, 1) 0%, rgb(207 216 249 / 80%) 70%, rgba(249, 249, 255, 1) 100%);
    }
    .next-steps-list {
        max-width: 100%;
    }
    .testimonial-card {
        margin: 0px 0px;
        border-radius: 40px;
        padding: 30px 20px;
    }
    .footer::before {
        bottom: 140px;
        left: 50px;
        width: 250px;
        height: 250px;
        border-radius: 100%;
        filter: blur(70px);
    }
    .footer-divider {
        margin: 30px 0 30px 0;
    }
    .get-started-submit-btn {
        padding: 20px 22px;
    }
    .testimonial-quote {
        font-size: 18px;
    }
    .footer-right {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .thank-you-content {
        padding: 30px 20px;
    }
    .thank-you-title {
        font-size: 24px;
    }
    .thank-you-message {
        font-size: 15px;
    }
    .header {
        padding: 10px 0px;
    }
    .stratos-digital-content h1 {
        font-size: 44px;
    }
    .stratos-digital-content h3 {
        font-size: 20px;
    }
    .stratos-digital-content p {
        font-size: 18px;
    }
    .expertise-title {
        font-size: 30px;
    }
    .expertise-subtitle {
        font-size: 16px;
    }
    .card-description {
        font-size: 16px;
    }
    .expertise-card {
        padding: 25px;
    }
    .smart-growth-title {
        font-size: 30px;
    }
    .smart-growth-subtitle {
        font-size: 16px;
    }
    .about-us-title {
        font-size: 30px;
    }
    .about-us-subtitle {
        font-size: 16px;
    }
    .feature-title {
        font-size: 14px;
    }
    .stats-card {
        padding: 30px 20px;
    }
    .stats-description {
        font-size: 16px;
    }
    .metric-label {
        font-size: 18px;
    }
    .stats-metrics {
        gap: 20px;
    }
    .why-choose-title {
        font-size: 30px;
    }
    .clients-success-title {
        font-size: 30px;
    }
    .clients-success-subtitle {
        font-size: 18px;
    }
    .trusted-leaders-title {
        font-size: 30px;
    }
    .faq-title {
        font-size: 30px;
    }
    .faq-question-text {
        font-size: 14px;
    }
    .get-started-title {
        font-size: 30px;
    }
    .form-input, 
    .form-textarea, 
    .form-select {
        padding: 20px 20px;
    }
    .form-select {
        padding-top: 30px;
        padding-bottom: 10px;
        padding-left: 20px;
    }
    .form-input {
        padding-left: 25px;
    }
    .required-asterisk {
        left: 15px;
    }
    .form-label {
        left: 20px;
    }
    .get-started-submit-btn {
        font-size: 14px;
        padding: 15px 18px;
        letter-spacing: 0;
    }
    .contact-title {
        font-size: 30px;
    }
    .contact-description {
        font-size: 16px;
    }
    .contact-method-title {
        font-size: 18px;
    }
    .next-steps-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .step-number {
        font-size: 20px;
    }
    .step-description {
        font-size: 16px;
    }
    .footer-description {
        font-size: 16px;
    }
    .smart-growth-image {
        margin: -20px -20px 0px -80px;
    }
    .footer-left {
        gap: 15px;
    }
    .faq-question-header {
        padding: 12px 20px;
        border-radius: 20px;
    }
}

@media (max-width: 380px) {
    .stratos-digital-badge {
        font-size: 12px;
    }
}



