:root {
    --navy-blue: #1B3B6F;
    --light-bg: #f8f9fa;
    --accent-color: #5db3cb;
}

body {
    background-color: var(--light-bg);
}

.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
    min-height: 80vh;
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Enhanced Navigation Styles */
.navbar .navbar-brand {
    padding: 0 !important;
}

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--navy-blue) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Dropdown Styles */
.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: var(--navy-blue);
    padding: 12px 24px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(27, 59, 111, 0.05);
    color: var(--accent-color);
    padding-left: 30px;
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--navy-blue);
    transition: all 0.3s ease;
}

.navbar-toggler span:nth-child(1) {
    top: 0;
}

.navbar-toggler span:nth-child(2) {
    top: 9px;
}

.navbar-toggler span:nth-child(3) {
    top: 18px;
}

.navbar-toggler.collapsed span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.navbar-toggler.collapsed span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.collapsed span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Content Styles */

.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
    min-height: 100vh;
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Rotating Text Styles */
.text-rotate-wrapper {
    height: auto;
    /* Changed from fixed height to auto */
    min-height: 80px;
    /* Minimum height to prevent layout shifts */
    overflow: hidden;
    margin: 20px 0;
    position: relative;
}

.text-rotate-list {
    width: 100%;
    position: relative;
}

.text-rotate-item {
    display: none;
    position: absolute;
    width: 100%;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--accent-color);
    opacity: 0;
    animation: rotateTexts 27s linear infinite;
    /* Added text wrapping properties */
    white-space: normal;
    line-height: 1.2;
    min-height: 80px;
    /* Match wrapper min-height */
    display: flex;
    align-items: center;
}

/* Animation delays remain the same */
.text-rotate-item:nth-child(1) {
    animation-delay: 0s;
}

.text-rotate-item:nth-child(2) {
    animation-delay: 3s;
}

.text-rotate-item:nth-child(3) {
    animation-delay: 6s;
}

.text-rotate-item:nth-child(4) {
    animation-delay: 9s;
}

.text-rotate-item:nth-child(5) {
    animation-delay: 12s;
}

.text-rotate-item:nth-child(6) {
    animation-delay: 15s;
}

.text-rotate-item:nth-child(7) {
    animation-delay: 18s;
}

.text-rotate-item:nth-child(8) {
    animation-delay: 21s;
}

.text-rotate-item:nth-child(9) {
    animation-delay: 24s;
}

@keyframes rotateTexts {

    0%,
    1% {
        display: flex;
        /* Changed from block to flex */
        opacity: 0;
        transform: translateY(50px);
    }

    2%,
    10% {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    11%,
    12% {
        display: flex;
        opacity: 0;
        transform: translateY(-50px);
    }

    13%,
    100% {
        display: none;
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .text-rotate-wrapper {
        min-height: 70px;
    }

    .text-rotate-item {
        font-size: clamp(1.6rem, 3.5vw, 1.8rem);
        min-height: 70px;
        padding: 10px 0;
        /* Added padding for better spacing */
    }
}

@media (max-width: 480px) {
    .text-rotate-wrapper {
        min-height: 60px;
    }

    .text-rotate-item {
        font-size: clamp(1.6rem, 3vw, 1.5rem);
        min-height: 60px;
        /* Improved small screen text handling */
        line-height: 1.3;
        padding: 8px 0;
    }
}

/* Hero Content Styles */
.hero-content {
    padding-top: 50px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666;
    margin-bottom: 2rem;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(255, 167, 38, 0.2);
    z-index: -1;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-custom {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(76, 195, 246, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(57, 163, 255, 0.4);
}

.phone-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/*  */
.services-section {
    /* padding: 100px 0; */
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--navy-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* height: 100%; */
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 167, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
}

.service-icon i {
    font-size: 30px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-title {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.learn-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--navy-blue);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/*  */

.logos {
animation: scroll 25s linear infinite;
display: flex;
}


@keyframes scroll {
0% {
    transform: translateX(0);
}

100% {
    transform: translateX(-220%);
}
}

.logos img {
width: 160px;
/* Adjust image width as needed */
height: auto;
/* Maintain aspect ratio */
margin-right: 20px;
/* Adjust space between logos as needed */
border-radius: 40px;
}
/*  */


/* Existing Hero Content Styles */
.text-rotate-wrapper {
    height: 50px;
    overflow: hidden;
    margin: 30px 0;
}

.text-rotate-list {
    animation: changeText 27s infinite;
    position: relative;
}



/*  */


.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    position: relative;
}

.about-title {
    color: var(--navy-blue);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-subtitle {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-description {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.experience-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
}

.journey-timeline {
    position: relative;
    padding: 30px 0;
}

.timeline-dot {
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-line {
    width: 2px;
    height: 100%;
    background: rgba(255, 167, 38, 0.2);
    position: absolute;
    left: 0;
    top: 0;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.stat-text {
    color: var(--text-primary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .experience-box {
        margin: 10px 0;
    }

    .service-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .service-stats {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #74c5db 100%);
    overflow: hidden;
}

/* Floating shapes background */
.shape {
    position: absolute;
    opacity: 0.15;
    background: white;
}

.shape-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation: float 8s infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    right: 5%;
    animation: float 10s infinite;
}

.shape-3 {
    width: 80px;
    height: 80px;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 10%;
    left: 10%;
    animation: float 9s infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, -15px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.stats-row {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--navy-blue);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.portfolio-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.title-main {
    color: var(--text-primary);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.title-sub {
    color: var(--text-primary);
    opacity: 0.8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    color: var(--accent-color);
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 179, 203, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-category {
    color: white;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-category {
    transform: translateY(0);
}

.portfolio-links {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-links {
    transform: translateY(0);
}

.portfolio-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 10px;
    }
}

.seo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    color: var(--text-primary);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight {
    color: var(--accent-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-primary);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ranking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.ranking-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 179, 203, 0.1);
}

.ranking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(93, 179, 203, 0.1);
    border-color: var(--accent-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(93, 179, 203, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.ranking-card:hover .card-icon {
    background: var(--accent-color);
    color: white;
}

.card-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.6;
}

.timeline {
    margin: 50px 0;
    position: relative;
    padding: 30px 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    margin-right: 20px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.timeline-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-text {
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.6;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-primary);
    opacity: 0.7;
    margin-top: 30px;
    padding: 15px;
    border-left: 3px solid var(--accent-color);
    background: rgba(93, 179, 203, 0.05);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(93, 179, 203, 0.2);
    background: #4a8fa3;
}

@media (max-width: 768px) {
    .seo-section {
        padding: 60px 0;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-number {
        margin-bottom: 15px;
    }
}

.seo-visual-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.search-engine-visual {
    position: relative;
}

.ranking-ladder {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.ranking-step {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.rank {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    width: 40px;
    opacity: 0.7;
}

.website-box {
    flex: 1;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.website-box.competitor {
    opacity: 0.7;
}

.website-box.your-site {
    background: rgba(93, 179, 203, 0.1);
    border-color: var(--accent-color);
    animation: pulseBox 2s infinite;
}

.website-box i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.website-box span {
    font-weight: 500;
    color: var(--text-primary);
}

.progress-indicator {
    margin-left: auto;
    background: var(--navy-blue);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    animation: pulse 4.5s infinite;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed rgba(93, 179, 203, 0.2);
}

.keyword-tag {
    padding: 8px 16px;
    background: rgba(93, 179, 203, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.9rem;
    animation: float 3s infinite;
    animation-delay: var(--delay, 0s);
}

.keyword-tag:nth-child(1) {
    --delay: 0s;
}

.keyword-tag:nth-child(2) {
    --delay: 0.5s;
}

.keyword-tag:nth-child(3) {
    --delay: 1s;
}

.keyword-tag:nth-child(4) {
    --delay: 1.5s;
}

.keyword-tag:nth-child(5) {
    --delay: 2s;
}

.keyword-tag:nth-child(6) {
    --delay: 2.5s;
}

@keyframes pulseBox {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .seo-visual-container {
        padding: 20px;
    }

    .ranking-ladder {
        gap: 15px;
    }

    .website-box {
        padding: 12px 15px;
    }
}

.seo-graphs {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 50px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Circular Progress */
.progress-circles {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.circle-wrap {
    text-align: center;
}

.progress-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.progress-ring circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1s ease;
}

.bg-circle {
    stroke: #e9ecef;
}

.progress-circle {
    stroke: #5db3cb;
    animation: progress 1.5s ease-out forwards;
}

@keyframes progress {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 100;
    }
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #5db3cb;
}

/* Bar Chart */
.bar-chart {
    padding: 20px;
    background: rgba(93, 179, 203, 0.05);
    border-radius: 10px;
}

.bar-title {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #2c3e50;
}

.bar-item {
    margin-bottom: 15px;
}

.bar-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #2c3e50;
}

.bar-container {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #5db3cb;
    border-radius: 5px;
    animation: barFill 1.5s ease-out forwards;
    transform-origin: left;
}

@keyframes barFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: #5db3cb;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-primary);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.comparison-col {
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.comparison-col.us {
    background: white;
    box-shadow: 0 15px 40px rgba(93, 179, 203, 0.15);
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
}

.comparison-col.others {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(93, 179, 203, 0.1);
}

.col-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed rgba(93, 179, 203, 0.2);
}

.col-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.col-subtitle {
    color: var(--text-primary);
    opacity: 0.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.us .feature-item:hover {
    background: rgba(93, 179, 203, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.others .feature-icon {
    background: #e9ecef;
    color: #6c757d;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.6;
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-col.us {
        transform: scale(1);
    }
}

.urgent-cta {
    background: linear-gradient(45deg, #2C3E50, var(--accent-color));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 4s infinite;
}

.pulse-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.pulse-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 5.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 5.1;
    }

    100% {
        transform: scale(1);
        opacity: 5.3;
    }
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.opportunity-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    min-width: 200px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--navy-blue);
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--accent-color);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: var(--accent-color);
    color: white;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .opportunity-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
    }
}

.pr-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.title-main {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.media-showcase {
    position: relative;
    margin: 50px 0;
}

.media-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    padding: 20px 0;
}

.media-item {
    min-width: 200px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    animation: slideMedia 20s linear infinite;
}

@keyframes slideMedia {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.media-logo {
    height: 40px;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.media-item:hover .media-logo {
    opacity: 1;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.opportunity-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.opportunity-card:hover {
    transform: translateY(-10px);
}

.opportunity-icon {
    width: 70px;
    height: 70px;
    background: rgba(93, 179, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.opportunity-card:hover .opportunity-icon {
    background: var(--accent-color);
    color: white;
}

.opportunity-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.opportunity-description {
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-item i {
    color: var(--accent-colors);
}

.reach-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.metric-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.metric-label {
    color: var(--text-primary);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .reach-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reach-metrics {
        grid-template-columns: 1fr;
    }
}

.why-us-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.title-main {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.title-sub {
    color: var(--text-primary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.benefit-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.benefit-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.benefit-desc {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.comparison {
    background: rgba(93, 179, 203, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.comparison-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.difference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.difference-item i {
    color: var(--accent-color);
    margin-top: 5px;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }

    .benefit-box {
        padding: 30px;
    }
}

.consultation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.consult-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.expert-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin: 20px 0;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(93, 179, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.benefit-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.action-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-consult {
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(93, 179, 203, 0.2);
}

.guarantee-text {
    margin-top: 30px;
    color: var(--text-primary);
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .benefits-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 40px 20px;
    }

    .consult-wrapper {
        padding: 30px 20px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-consult {
        width: 100%;
        justify-content: center;
    }
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.support-card {
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.support-card:hover,
.support-card.active {
    border-color: var(--accent-color);
    background: rgba(93, 179, 203, 0.05);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.support-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.support-desc {
    color: var(--text-primary);
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
}

.quick-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(93, 179, 203, 0.1);
    border-radius: 30px;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: none;
}

.contact-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(93, 179, 203, 0.3);
}

.response-time {
    text-align: center;
    margin-top: 20px;
    color: var(--text-primary);
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .support-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .support-options {
        grid-template-columns: 1fr;
    }

    .quick-contact {
        flex-direction: column;
    }

    .contact-method {
        width: 100%;
        justify-content: center;
    }
}

/* Footer */
.footer {
   background: #0f3b63;
    color: var(--text-light);
    padding: 60px 0 0;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    min-width: 0;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.office-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 20px;
    /* Space between items */
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    /* Center content with a maximum width */
}

.office-item {
    margin-bottom: 25px;
}

.office-item {
    color: var(--accent-color);
    text-align: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    /* background-color: #f9f9f9; */
    /* Optional: Light background for contrast */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional: Subtle shadow */
}


.office-details {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--accent-color);
    margin-top: 5px;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.quick-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .social-links {
        justify-content: center;
    }
}

/*  */
.hero-form {
    padding: 20px;
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 15px;
    color: #666;
    font-size: 1rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-group textarea {
    padding-top: 12px;
    resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(93, 179, 203, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #4a9eb3;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-form {
        padding: 10px;
        margin-top: 30px;
    }

    .form-card {
        padding: 20px;
    }
}
/*  */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.whatsapp-button i {
    font-size: 28px;
    color: white;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}
.submit-btn {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.progress-bar {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: white;
    transition: width 1.5s ease;
}

.progress-text {
    min-width: 60px;
    text-align: right;
}

.button-content.success {
    color: white;
}

.button-content.error {
    color: #ff6b6b;
}

.button-content.success i,
.button-content.error i {
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.button-content.success,
.button-content.error {
    animation: fadeIn 0.3s ease forwards;
}

@media (max-width: 768px) {
    .submit-btn {
        padding: 10px 20px;
    }

    .progress-bar {
        width: 80px;
    }
}
/* Add this CSS to your stylesheet */
.success-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: slideUp 0.4s ease;
}

.popup-icon {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.popup-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.popup-content p {
    color: #666;
    margin-bottom: 20px;
}

.response-time {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.connect-whatsapp p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.close-popup:hover {
    color: #333;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 30px 20px;
    }

    .popup-icon {
        font-size: 40px;
    }

    .popup-content h3 {
        font-size: 1.3rem;
    }
}

    /* Partners Logo Section Styles */
.partners-logo-section {
    background: var(--light-bg);
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-title {
    color: var(--navy-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.partners-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Partners Logo Grid */
.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
    margin: 0 auto;
}

.partner-logo {
    background: white;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 85%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* View More Button */
.btn-view-more {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    outline: none;
}

.btn-view-more:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 179, 203, 0.2);
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more.active i {
    transform: rotate(180deg);
}

.hide-text {
    display: none;
}

.btn-view-more.active .view-text {
    display: none;
}

.btn-view-more.active .hide-text {
    display: inline;
}

/* Hidden Partners Section */
.partners-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.partners-expanded.visible {
    max-height: 2000px; /* Arbitrary large height to accommodate content */
    opacity: 1;
    visibility: visible;
    margin-top: 25px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .partners-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .partners-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .partner-logo {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .partners-logo-section {
        padding: 40px 0;
    }
    
    .partners-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .partner-logo {
        height: 80px;
        padding: 12px;
    }
    
    .btn-view-more {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .partners-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 12px;
    }
    
    .partner-logo {
        height: 70px;
        padding: 10px;
    }
}