* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

:root {
    --primary: #017B7B;
    --primary-dark: #016666;
    --accent: #FF6B4A;
    --accent-dark: #FF5533;
    --white: #ffffff;
}
html {
  scroll-behavior: smooth;
}
body {
    /* background: var(--primary); */
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
:root {
    --primary:#056f9e;
    --accent: #ff6b4a;
    --accent-dark: #ff4f2a;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.8);
    --header-height: 80px;
}

.wrapper {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
background: linear-gradient(to right, #056f9e, #0383b3);

    color: var(--white);
}

/* Background Shapes */
.shape-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.shape-left {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 35%;
    height: 80%;
    background: rgba(212, 6, 6, 0.05);
    border-radius: 0 100% 0 0;
    transform: rotate(-15deg);
}

.shape-right {
    position: absolute;
    top: 0;
    right: -10%;
    width: 25%;
    height: 100%;
    background: rgba(51, 221, 255, 0.05);
    border-radius: 100% 0 0 100%;
}

/* Header Overlay */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background: linear-gradient(
        to bottom,
        rgba(87, 252, 211, 0.9) 0%,
        rgba(13, 222, 241, 0.7) 30%,
        rgba(17, 251, 255, 0.4) 60%,
        rgba(255, 144, 144, 0) 100%
    ); */
    pointer-events: none;
    z-index: 1;
}

/* Enhanced Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.sticky {
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 7%;
    z-index: 1000;
  
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    z-index: 2;
}

.logo img {
    height: 45px;
    z-index: 1000;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.sticky .logo img {
    height: 40px;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    align-items: center;
    z-index: 1000;
    gap: 3rem;
    transition: transform 0.3s ease;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    z-index: 1000;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn {
   background: linear-gradient(45deg, #0ea5e9, #38bdf8);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
   background: linear-gradient(45deg, #0ea5e7, #38bdf9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 74, 0.3);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 7rem 7% 2rem;
    gap: 4rem;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 3.9rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 0.2rem 1rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-cta {
    margin-bottom: 3rem;
}

.testimonial {
    position: relative;
    padding-left: 2rem;
    font-style: italic;
    max-width: 450px;
    opacity: 0.9;
}

.testimonial::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--white);
}
.hero-container {
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Circular background */
.hero-image::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #f0f4f8;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
/* Enhanced Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 2000;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    margin: auto;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) { top: 9px; }
.hamburger span:nth-child(4) { top: 18px; }

.mobile-nav-toggle.active .hamburger span:nth-child(1),
.mobile-nav-toggle.active .hamburger span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.mobile-nav-toggle.active .hamburger span:nth-child(2) {
    transform: rotate(45deg);
}

.mobile-nav-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 1.5rem 5%;
    }
    
    .navbar.sticky {
        padding: 1rem 5%;
    }

    .hero {
        padding: 7rem 5% 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--overlay);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1500;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .btn { transition-delay: 0.6s; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .testimonial {
        margin: 0 auto;
        text-align: left;
    }

  
}
@media screen and (max-width: 768px) {
    .hero-image::before {
        width: 400px;
        height: 400px;
    }
    
    .hero-image img {
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-image::before {
        width: 300px;
        height: 300px;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    .hero-container {
        min-height: 400px;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
    }
}
/* about section */
.about-container-main{
    background-color: white;
 margin-top: 50px;
}
.about-container {
    max-width: 1374px;
    margin: 0 auto;
    padding: 2rem;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-image-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: aboutFadeIn 0.8s ease-in-out forwards;
    opacity: 0;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-card.about-laptop-1 {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
    aspect-ratio: 1;
}

.about-image-card.about-person {
    grid-column: 5 / 9;
    grid-row: 1 / 3;
    aspect-ratio: 0.8;
    background: #f5f5f5;
}

.about-image-card.about-laptop-2 {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    aspect-ratio: 1;
}

.about-content-section {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
    padding: 1rem 0;
    animation: aboutFadeInContent 1s ease-in-out 0.6s forwards;
    opacity: 0;
}

.about-stats-card {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
    margin-top: 150px;
    width: 440px;
  height: 200px;
    background: #E8F6F6;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: aboutFadeIn 0.8s ease-in-out forwards;
    opacity: 0;
}

.about-label {
    color: #008B8B;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.about-title {
    color: #000B3E;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.about-read-more {
    display: inline-block;
background: linear-gradient(45deg, #0ea5e9, #38bdf8);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.about-read-more:hover {
    transform: translateY(-2px);
}

.about-number {
    font-size: 3.5rem;
    color: #008B8B;
    font-weight: 700;
}

.about-stats-text {
    font-size: 1.2rem;
    color: #000B3E;
    font-weight: 600;
}

/* Keyframe Animations */
@keyframes aboutFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes aboutFadeInContent {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-image-card.about-laptop-1,
    .about-image-card.about-person,
    .about-image-card.about-laptop-2,
    .about-content-section,
    .about-stats-card {
        grid-column: auto;
        grid-row: auto;
    }

    .about-content-section {
        padding: 2rem 0;
    }
}

/* Tablet and smaller screens */
@media (max-width: 992px) {
    .about-services-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }

    .about-image-card.about-laptop-1,
    .about-image-card.about-person,
    .about-image-card.about-laptop-2,
    .about-content-section,
    .about-stats-card {
        grid-column: span 6;
        grid-row: auto;
    }

    .about-content-section {
        padding: 2rem 0;
        text-align: center;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-number {
        font-size: 2.5rem;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-content-section {
        padding: 1.5rem;
        text-align: center;
    }

    .about-stats-card {
        width: 100%;
        height: auto;
        text-align: center;
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .about-image-card {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-read-more {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-number {
        font-size: 2rem;
    }

    .about-stats-text {
        font-size: 1rem;
    }
}
/* about section */



/* review section */
.review-container-main{
    background-color: white;
}
.review-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 4rem 1rem;
    overflow: hidden;
}

.review-testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 20px;
    margin-bottom: 3rem;
}

.review-tag {
    color: #0D9488;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.review-main-title {
    color: #0F172A;
    font-size: 2.5rem;
    font-weight: bold;
}

.review-header-description {
    color: #64748B;
    max-width: 400px;
    line-height: 1.6;
}

.review-testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.review-testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease-out;
    cursor: grab;
}

.review-testimonials-track.grabbing {
    cursor: grabbing;
}

.review-testimonial-card {
    flex: 0 0 100%;
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    user-select: none;
    animation: fadeIn 0.5s ease;
}

.review-testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-profile-image {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-right: 1rem;
    object-fit: cover;
}

.review-profile-info h3 {
    color: #0F172A;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-profile-info p {
    color: #64748B;
    font-size: 0.875rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-star {
    color: #FBB03B;
    font-size: 1.25rem;
}

.review-rating-number {
    color: #64748B;
    margin-left: 0.5rem;
}

.review-testimonial-text {
    color: #334155;
    line-height: 1.6;
}

.review-navigation-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: background-color 0.3s;
}

.review-dot.active {
    background: #0D9488;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .review-testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* review section */
/* who section */
.who-container-main{
    background-color: white;
}
.who-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.who-grid-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.who-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.who-image-card {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 250px;
}

.who-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-coffee-card {
    background-color: #FFF1F2;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.who-coffee-icon {
    font-size: 2rem;
    color: #F43F5E;
    margin-bottom: 0.5rem;
}

.who-assist-text {
    color: #0D9488;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}

.who-content-section {
    padding: 1rem;
    margin-top: 80px;
}

.who-tag {
    color: #0d0d0d;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.who-heading {
    color: #181818;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.who-description {
    color: #131313;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.who-read-more {
  background: linear-gradient(45deg, #0ea5e9, #38bdf8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.who-read-more:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .who-grid-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-content-section {
        padding-left: 2rem;
    }
}


/* who section */
/* solution section */

.solution-container {
 background: linear-gradient(to right, #056f9e, #0383b3);
    min-height: 100vh;
    padding: 2rem;
}

.solution-content-wrapper {
    max-width: 1350px;
    margin: 0 auto;
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    margin-left: 20px;
    gap: 2rem;
}

.solution-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    max-width: 600px;
}

.solution-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 400px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background-color:rgb(1 153 220 / 50%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.solution-card:hover {
    background-color: rgba(13, 148, 136, 0.7);
}

.solution-icon-wrapper {
    background-color: rgba(20, 184, 166, 0.5);
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.solution-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.solution-card-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.solution-card-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.solution-expand-button {
    color: rgba(255, 255, 255, 0.9);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.solution-expand-button:hover {
    color: white;
}

@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solution-header {
        flex-direction: column;
    }
    
    .solution-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

/* solution section */


/* getstart section */
 /* getstart section */

.cta-banner-main {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 2rem 0; /* Padding to provide spacing on smaller screens */
}

/* CTA Banner styling */
.cta-banner {
    background: linear-gradient(to right, #056f9e, #0383b3);
    color: white;
    width: 80%; /* Adjust width to fit the page */
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    border-radius: 30px;
    text-align: left;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Shape styles for curved edges */
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #0d9d9d;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.cta-banner::before {
    left: -50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.cta-banner::after {
    right: -50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

/* Background faded "CONSULT" text */
.cta-banner .background-text {
    font-size: 8rem; /* Adjusted for smaller screens */
    font-weight: bold;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    white-space: nowrap;
}

/* Call to Action Label */
.cta-banner .cta-label {
    font-size: 0.875rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #e0f7f7;
}

/* Main Heading */
.cta-banner .cta-heading {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* CTA Button */
.cta-banner .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #0ea5e9, #38bdf8);
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-banner .cta-button:hover {
    background-color: #ff854d; /* Lighter orange on hover */
}

/* Text container to align the call-to-action text and button */
.cta-banner .text-content {
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cta-banner {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .cta-banner .background-text {
        font-size: 7rem;
        right: 10%;
    }

    .cta-banner .cta-heading {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 1.5rem;
        gap: 1rem;
    }

    .cta-banner .background-text {
        font-size: 6rem;
    }

    .cta-banner .cta-heading {
        font-size: 2rem;
    }

    .cta-banner .cta-button {
        padding: 0.65rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .cta-banner {
        width: 90%;
        padding: 1rem;
    }

    .cta-banner .background-text {
        font-size: 5rem;
        right: 5%;
    }

    .cta-banner .cta-heading {
        font-size: 1.75rem;
    }

    .cta-banner .cta-button {
        font-size: 0.875rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 400px) {
    .cta-banner .background-text {
        font-size: 4rem;
    }

    .cta-banner .cta-heading {
        font-size: 1.5rem;
    }

    .cta-banner .cta-button {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
    }
}

/* getstart section */

/* vision mission */
.vi-mi-vision-mission {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.vi-mi-vision-mission::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    animation: vi-mi-rotate 60s linear infinite;
}

@keyframes vi-mi-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.vi-mi-container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vi-mi-section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.vi-mi-section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #363636, #060a0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.vi-mi-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #5a676f);
    border-radius: 2px;
}

.vi-mi-vm-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    perspective: 1000px;
}

.vi-mi-vm-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.vi-mi-vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vi-mi-vm-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 50px rgba(0, 102, 204, 0.2);
}

.vi-mi-vm-card:hover::before {
    opacity: 1;
}

.vi-mi-vm-card h3 {
    color: #171717;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.vi-mi-vm-card p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

.vi-mi-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e6f0ff 0%, #f0f7ff 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(141, 157, 172, 0.2);
    transition: transform 0.3s ease;
}

.vi-mi-vm-card:hover .vi-mi-icon {
    transform: scale(1.1) rotate(5deg);
}
/* Media Queries */
@media (max-width: 968px) {
    .vi-mi-vision-mission {
        padding: 5rem 1rem;
    }

    .vi-mi-section-title h2 {
        font-size: 2.5rem;
    }

    .vi-mi-vm-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .vi-mi-vm-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vi-mi-vm-card h3 {
        font-size: 1.8rem;
    }

    .vi-mi-vm-card p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .vi-mi-vision-mission {
        padding: 4rem 1rem;
    }

    .vi-mi-section-title h2 {
        font-size: 2rem;
    }

    .vi-mi-vm-card {
        padding: 2rem;
    }

    .vi-mi-icon {
        width: 40px;
        height: 40px;
    }
}
/* vison misson */
