@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-display: swap;
}

header {
    height: 50px;
    background-color: #e6e7e8;
    padding: 0;
    color: #272727;
    font-family: Arial, sans-serif;
}

.header-content {
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-left {
    display: flex;
    gap: 20px;
}

.header-left a {
    color: #272727;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right span {
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    color: #272727;
    font-size: 16px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { color: #272727; }
    51%, 100% { color: #04aac9; }
}

.header-right i:hover,
.social-icons i:hover {
    color: #04aac9;
    animation: none; /* Stop blinking on hover */
}

nav {
    height: 75px;
    background-color: #f1f2f2;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar-content {
    padding: 0 100px;
}

.navbar {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hamburger {
    display: none !important;
}

.logo {
    position: static;
    transform: none;
    height: 50px;
    margin: 0 auto 0 0;
    margin-top: 13px;
    margin-bottom: 0;
}

.logo-link {
    display: block;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-menu {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 13px;
    flex: 1;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #272727;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #04aac9;
    background-color: rgba(4, 170, 201, 0.1);
}

.dropdown a i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover a i {
    transform: rotate(180deg);
}

.sub-dropdown-parent a i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.sub-dropdown-parent:hover a i {
    transform: rotate(90deg);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(4, 170, 201, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    position: absolute;
    top: calc(100% + 15px);
    left: -150px;
    background-color: #f1f2f2;
    list-style: none;
    padding: 15px;
    margin: 0;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    margin-bottom: 3.75px;
}

.dropdown-menu a {
    display: block;
    padding: 9px 11px;
    color: #272727;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #04aac9;
    color: white;
    transform: translateX(3px);
}

.sub-dropdown {
    visibility: hidden;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    position: absolute;
    top: 100%;
    left: 125px;
    background-color: #f1f2f2;
    list-style: none;
    padding: 15px;
    margin: 0;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1000;
    column-count: 2;
    column-gap: 20px;
}

.sub-dropdown-parent:hover .sub-dropdown,
.sub-dropdown.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.sub-dropdown a {
    display: block;
    padding: 9px 11px;
    color: #272727;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-menu.shifted {
    transform: translateX(-50%);
}

/* Slide Banner */
.banner-section {
    position: relative;
    background-color: #00243c;
    height: 600px;
}

.banner-container {
    position: relative;
    overflow: hidden;
    height: 100%;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.75;
}

.slide-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 100px;
    text-align: left;
    color: white;
    opacity: 0;
    transform: translateX(100%);
    transition: all 3s ease;
    box-sizing: border-box;
    z-index: 2;
}

.slide-banner.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-banner h1 {
    font-size: 125px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.growth-driven {
    margin-bottom: -50px;
}

.slide-banner .digital-marketing {
    font-size: 85px;
    font-weight: normal;
}

.driven {
    color: #b02023;
}

.brand-soul-color {
    color: #ff7304;
}

.design-yellow {
    color: #fdbc00;
}

.slide-banner p {
    font-size: 21px;
    margin-top: 23px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-banner.active h1,
.slide-banner.active p {
    animation: fadeInUp 1s ease-out;
}
.brand-driven {
    margin-bottom: -50px;
}

.brand-marketing {
    font-size: 85px !important;
    font-weight: normal;
}

.brand-yellow {
    color: #fdbc00;
}

.brand-text {
    font-size: 21px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}
.graphic-driven {
    margin-bottom: -50px;
}

.graphic-marketing {
    font-size: 85px !important;
    font-weight: normal;
}

.banner-buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banner-btn.active {
    background-color: white;
}

/* Mobile Responsiveness */

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 50px;
    }

    .header-left {
        gap: 15px;
    }

    .header-right {
        gap: 15px;
        flex-wrap: wrap;
    }

    .header-right span {
        font-size: 13px;
    }

    .navbar-content {
        padding: 0 50px;
    }

    .logo {
        height: 48px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 15px;
        padding: 8px 12px;
    }

    .dropdown-menu {
        min-width: 200px;
    }

    .sub-dropdown {
        min-width: 200px;
    }

    .banner-section {
        height: 480px;
    }

    .slide-banner {
        padding: 50px 80px;
    }

    .slide-banner h1 {
        font-size: 100px;
    }

    .slide-banner .digital-marketing {
        font-size: 75px !important;
    }

    .graphic-marketing {
        font-size: 85px !important;
    }

    .brand-marketing {
        font-size: 75px !important;
    }
}

@media (max-width: 900px) {
    .header-content {
        padding: 0 30px;
    }

    .header-left {
        gap: 10px;
    }

    .header-right {
        gap: 10px;
        flex-wrap: wrap;
    }

    .header-right span {
        font-size: 12px;
    }

    .navbar-content {
        padding: 0 30px;
    }

    .logo {
        height: 45px;
    }

    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 14px;
        padding: 6px 10px;
    }

    .dropdown-menu {
        min-width: 180px;
    }

    .sub-dropdown {
        min-width: 180px;
    }

    .banner-section {
        height: 420px;
    }

    .slide-banner {
        padding: 40px 60px;
    }

    .slide-banner h1 {
        font-size: 80px;
    }

    .slide-banner .digital-marketing {
        font-size: 60px !important;
    }

    .graphic-marketing {
        font-size: 85px !important;
    }

    .brand-marketing {
        font-size: 60px !important;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        min-height: 50px;
    }

    .header-content {
        padding: 10px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-left {
        flex-direction: column;
        gap: 10px;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-right span {
        font-size: 11px;
    }

    .social-icons {
        gap: 15px;
    }

    .navbar-content {
        padding: 0 20px;
        position: relative;
    }

    .logo {
        position: static;
        transform: none;
        height: 40px;
        align-self: center;
    }

    .hamburger {
        display: block !important;
        position: static;
        margin-left: auto;
        order: 1;
        cursor: pointer;
        font-size: 24px;
        color: #272727;
        z-index: 1001;
        padding: 10px;
    }

    .hamburger:hover {
        color: #04aac9;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background-color: #f1f2f2;
        height: 0 !important;
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        border-radius: 0 0 8px 8px;
        z-index: 9999;
    }

    .nav-menu.open {
        height: 500px !important; /* Set to a fixed height for visibility */
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e6e7e8;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

    .dropdown-menu {
        position: static;
        visibility: hidden;
        opacity: 0;
        transform: none;
        box-shadow: none;
        background-color: #e6e7e8;
        min-width: unset;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.3s ease;
    }

    .dropdown-menu.open {
        visibility: visible;
        opacity: 1;
        max-height: 1000px; /* Adjust based on content */
    }

    .dropdown-menu li {
        border-bottom: 1px solid #d0d1d2;
    }

    .dropdown-menu a {
        padding: 12px 30px;
    }

    .sub-dropdown {
        position: static;
        visibility: hidden;
        opacity: 0;
        transform: none;
        box-shadow: none;
        background-color: #d0d1d2;
        column-count: 1;
        padding: 0;
        border-radius: 0;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.3s ease;
    }

    .sub-dropdown.open {
        visibility: visible;
        opacity: 1;
        max-height: 500px; /* Adjust based on content */
    }

    .sub-dropdown a {
        padding: 10px 40px;
    }

    .banner-section {
        height: 360px;
    }

    .slide-banner {
        padding: 30px 20px;
        text-align: center;
    }

    .slide-banner h1 {
        font-size: 50px;
    }

    .slide-banner h1 {
        white-space: nowrap;
    }

    .slide-banner .digital-marketing {
        font-size: 40px !important;
    }

    .graphic-marketing {
        font-size: 40px !important;
    }

    .brand-marketing {
        font-size: 40px !important;
    }

    .brand-driven {
        font-size: 45px !important;
    }

    .slide-banner p {
        font-size: 18px;
    }

    .slide-banner {
        transition: opacity 0.5s ease;
    }
}

@media (max-width: 430px) {
    .banner-section {
        height: 300px;
    }

    .slide-banner {
        padding: 20px 15px;
        text-align: center;
    }

    .slide-banner h1 {
        font-size: 30px;
        white-space: normal;
    }

    .slide-banner .digital-marketing {
        font-size: 24px !important;
    }

    .graphic-marketing {
        font-size: 24px !important;
    }

    .brand-marketing {
        font-size: 24px !important;
    }

    .brand-driven {
        font-size: 28px !important;
    }

    .slide-banner p {
        font-size: 14px;
    }
}

.service-buttons {
    padding: 90px 100px;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.buttons-container a {
    border: 3px solid #272727;
    background-color: transparent;
    color: #272727;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.buttons-container a:hover {
    background-color: #272727;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    text-decoration: none;
}

.buttons-container a:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

/* Colorful variations */
.buttons-container a:nth-child(1) { border-color: #ff6b6b; color: #ff6b6b; }
.buttons-container a:nth-child(1):hover { background-color: #ff6b6b; color: #fff; }

.buttons-container a:nth-child(2) { border-color: #ffa500; color: #ffa500; }
.buttons-container a:nth-child(2):hover { background-color: #ffa500; color: #fff; }

.buttons-container a:nth-child(3) { border-color: #ffd700; color: #ffd700; }
.buttons-container a:nth-child(3):hover { background-color: #ffd700; color: #fff; }

.buttons-container a:nth-child(4) { border-color: #32cd32; color: #32cd32; }
.buttons-container a:nth-child(4):hover { background-color: #32cd32; color: #fff; }

.buttons-container a:nth-child(5) { border-color: #1e90ff; color: #1e90ff; }
.buttons-container a:nth-child(5):hover { background-color: #1e90ff; color: #fff; }

.buttons-container a:nth-child(6) { border-color: #9370db; color: #9370db; }
.buttons-container a:nth-child(6):hover { background-color: #9370db; color: #fff; }

.buttons-container a:nth-child(7) { border-color: #ff69b4; color: #ff69b4; }
.buttons-container a:nth-child(7):hover { background-color: #ff69b4; color: #fff; }

.buttons-container a:nth-child(8) { border-color: #20b2aa; color: #20b2aa; }
.buttons-container a:nth-child(8):hover { background-color: #20b2aa; color: #fff; }

.buttons-container a:nth-child(9) { border-color: #dc143c; color: #dc143c; }
.buttons-container a:nth-child(9):hover { background-color: #dc143c; color: #fff; }

.buttons-container a:nth-child(10) { border-color: #00ced1; color: #00ced1; }
.buttons-container a:nth-child(10):hover { background-color: #00ced1; color: #fff; }

.buttons-container a:nth-child(11) { border-color: #ff4500; color: #ff4500; }
.buttons-container a:nth-child(11):hover { background-color: #ff4500; color: #fff; }

.buttons-container a:nth-child(12) { border-color: #8a2be2; color: #8a2be2; }
.buttons-container a:nth-child(12):hover { background-color: #8a2be2; color: #fff; }

/* Scroll animation styles - removed for visibility */

@media (max-width: 430px) {
    .service-buttons {
        padding: 20px 20px;
    }

    .buttons-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .buttons-container button {
        margin-bottom: 10px;
        font-size: 10px;
        padding: 8px 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.about-us {
    padding: 100px 100px;
    background-color: #f9f9f9;
    margin-top: 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(0);
    transition: all 1s ease;
}

.about-container.animate {
    transform: translateY(0);
}

.about-container img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid #fdbc00;
    transition: all 0.3s ease;
    transform: translateX(-50px);
    transition: all 1s ease 0.2s;
}

.about-container.animate img {
    transform: translateX(0);
}

.about-content {
    width: 50%;
    transform: translateX(50px);
    transition: all 1s ease 0.4s;
}

.about-container.animate .about-content {
    transform: translateX(0);
}

.about-container img:hover {
    border-color: #d52a2d;
}

.about-content {
    width: 50%;
    align-self: flex-start;
}

.about-content h2 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    color: #04aac9;
    margin: 0;
    padding-top: 0;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.read-more {
    color: #dc3545;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    display: inline-block;
}

.read-more:hover {
    text-decoration: none;
}

.start-project-btn {
    background-color: #fdbc00;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
}

.start-project-btn:hover {
    background-color: #d52a2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Mobile Responsiveness for About Us */
@media (max-width: 768px) {
    .about-us {
        padding: 40px 20px;
        text-align: center;
    }

    .about-container {
        flex-direction: column;
        gap: 20px;
        margin: 0 auto;
        max-width: 600px;
    }

    .about-container img {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    .about-content {
        width: 100%;
        text-align: center;
    }

    .about-content h2 {
        font-size: 28px;
        margin-top: 0;
    }

    .about-content p {
        font-size: 16px;
    }

    .read-more {
        font-size: 16px;
        margin-bottom: 10px;
        display: block;
        text-align: center;
    }

    .start-project-btn {
        padding: 12px 24px;
        font-size: 16px;
        display: block;
        width: 250px;
        margin: 0 auto 20px;
    }
}

@media (max-width: 430px) {
    .about-us {
        padding: 30px 15px;
        text-align: center;
    }

    .about-container {
        gap: 15px;
        margin: 0 auto;
        max-width: 500px;
    }

    .about-content h2 {
        font-size: 24px;
        margin-top: 0;
    }

    .about-content p {
        font-size: 14px;
    }

    .read-more {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .start-project-btn {
        padding: 10px 20px;
        font-size: 14px;
        display: block;
        width: 200px;
        margin: 0 auto 20px;
    }
}

.why-partner {
    padding: 100px 100px;
    background-color: #00243c;
    margin-top: 0;
}

.wp-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-partner h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin: 0 0 60px 0;
    font-weight: 600;
    position: relative;
}

.why-partner h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.wp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.wp-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.wp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #04aac9;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.wp-card:hover::before {
    transform: scaleX(1);
}

.wp-icon {
    width: 70px;
    height: 70px;
    background: #04aac9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    animation: pulse-wp 2s infinite;
}

.wp-icon i {
    font-size: 28px;
    color: white;
}

@keyframes pulse-wp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(4, 170, 201, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(4, 170, 201, 0);
    }
}

.wp-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.wp-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Color variations for each card */
.wp-card:nth-child(1) .wp-icon { background: #ff6b6b; animation: pulse-red 2s infinite; }
.wp-card:nth-child(1)::before { background: #ff6b6b; }

.wp-card:nth-child(2) .wp-icon { background: #ffa500; animation: pulse-orange 2s infinite; }
.wp-card:nth-child(2)::before { background: #ffa500; }

.wp-card:nth-child(3) .wp-icon { background: #ffd700; animation: pulse-yellow 2s infinite; }
.wp-card:nth-child(3)::before { background: #ffd700; }

.wp-card:nth-child(4) .wp-icon { background: #32cd32; animation: pulse-green 2s infinite; }
.wp-card:nth-child(4)::before { background: #32cd32; }

.wp-card:nth-child(5) .wp-icon { background: #1e90ff; animation: pulse-blue 2s infinite; }
.wp-card:nth-child(5)::before { background: #1e90ff; }

.wp-card:nth-child(6) .wp-icon { background: #9370db; animation: pulse-purple 2s infinite; }
.wp-card:nth-child(6)::before { background: #9370db; }

/* Mobile Responsiveness for Why Partner */
@media (max-width: 768px) {
    .why-partner {
        padding: 60px 20px;
    }

    .why-partner h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .wp-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .wp-card {
        padding: 25px 20px;
    }

    .wp-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .wp-icon i {
        font-size: 24px;
    }

    .wp-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .wp-card p {
        font-size: 14px;
    }
}

.core-services {
    padding: 100px 100px;
    background-color: #f8f9fa;
    margin-top: 0;
}

.cs-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.core-services h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 60px 0;
    font-weight: 600;
    position: relative;
}

.core-services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.cs-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cs-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.cs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #04aac9;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cs-card:hover::before {
    transform: scaleX(1);
}

.cs-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.cs-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Color variations for each card */
.cs-card:nth-child(1)::before { background: #ff6b6b; }
.cs-card:nth-child(2)::before { background: #ffa500; }
.cs-card:nth-child(3)::before { background: #ffd700; }
.cs-card:nth-child(4)::before { background: #32cd32; }

/* Mobile Responsiveness for Core Services */
@media (max-width: 768px) {
    .core-services {
        padding: 60px 20px;
    }

    .core-services h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .cs-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .cs-card {
        padding: 25px 20px;
    }

    .cs-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .cs-card p {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .why-partner {
        padding: 40px 15px;
    }

    .why-partner h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .wp-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .wp-card {
        padding: 20px 15px;
    }

    .wp-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .wp-icon i {
        font-size: 20px;
    }

    .wp-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .wp-card p {
        font-size: 13px;
    }
}

/* Our Process Section */
.our-process {
    padding: 75px 100px;
    background-color: #001826;
    margin: 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(0);
    transition: all 1s ease;
}

.process-container.animate {
    transform: translateY(0);
}

.process-container h2 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
}

.process-subtitle {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #04aac9;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Different animations for different cards */
.process-card:nth-child(1) .card-icon { animation: rotate 3s linear infinite; color: #ff6b6b; }
.process-card:nth-child(2) .card-icon { animation: pulse 2s ease-in-out infinite; color: #ffa500; }
.process-card:nth-child(3) .card-icon { animation: bounce 2s ease-in-out infinite; color: #ffd700; }
.process-card:nth-child(4) .card-icon { animation: rotate 4s linear infinite; color: #32cd32; }
.process-card:nth-child(5) .card-icon { animation: pulse 2.5s ease-in-out infinite; color: #1e90ff; }
.process-card:nth-child(6) .card-icon { animation: bounce 2.5s ease-in-out infinite; color: #9370db; }
.process-card:nth-child(7) .card-icon { animation: rotate 3.5s linear infinite; color: #ff69b4; }
.process-card:nth-child(8) .card-icon { animation: pulse 3s ease-in-out infinite; color: #20b2aa; }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #ffa500, #ffd700, #32cd32, #1e90ff, #9370db, #ff69b4, #20b2aa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #272727;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.process-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

/* Assign colors to cards */
.process-card:nth-child(1) { border-color: #ff6b6b; }
.process-card:nth-child(2) { border-color: #ffa500; }
.process-card:nth-child(3) { border-color: #ffd700; }
.process-card:nth-child(4) { border-color: #32cd32; }
.process-card:nth-child(5) { border-color: #1e90ff; }
.process-card:nth-child(6) { border-color: #9370db; }
.process-card:nth-child(7) { border-color: #ff69b4; }
.process-card:nth-child(8) { border-color: #20b2aa; }

/* Mobile Responsiveness for Our Process */
@media (max-width: 768px) {
    .our-process {
        padding: 40px 20px;
        margin: 15px 0;
    }

    .process-container h2 {
        font-size: 28px;
    }

    .process-subtitle {
        font-size: 16px;
    }

    .process-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-card {
        padding: 20px;
        text-align: center;
    }

    .process-card h3 {
        font-size: 20px;
        text-align: center !important;
    }

    .process-card p {
        font-size: 14px;
    }

    .card-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
}

@media (max-width: 430px) {
    .our-process {
        padding: 30px 15px;
        margin: 10px 0;
    }

    .process-container h2 {
        font-size: 24px;
    }

    .process-subtitle {
        font-size: 14px;
    }

    .process-card {
        padding: 15px;
        text-align: center;
    }

    .process-card h3 {
        text-align: center !important;
    }

    .card-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }
}

/* Our Process Section - New Design */
.our-process {
    padding: 100px 100px;
    background-color: #001826;
    margin-top: 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.our-process h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
}

.our-process h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.process-subtitle {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: #04aac9;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.process-step h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Mobile Responsiveness for Our Process */
@media (max-width: 768px) {
    .our-process {
        padding: 60px 20px;
    }

    .our-process h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .process-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-step {
        padding: 25px 20px;
    }

    .step-number {
        font-size: 36px;
    }

    .process-step h3 {
        font-size: 20px;
    }

    .process-step p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* About Page Our Process Section */
/* Our Comprehensive Services Section */
.our-comprehensive-services {
    padding: 75px 100px;
    background-color: #00243c;
    margin: 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(0);
    transition: all 1s ease;
}

.services-container.animate {
    transform: translateY(0);
}

.services-container h2 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    color: #04aac9;
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
}

.services-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.services-card {
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.services-card .card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
    animation: rotate 3s linear infinite;
}

/* Different animations for different cards */
.services-card:nth-child(1) .card-icon { animation: rotate 3s linear infinite; }
.services-card:nth-child(2) .card-icon { animation: pulse 2s ease-in-out infinite; }
.services-card:nth-child(3) .card-icon { animation: bounce 2s ease-in-out infinite; }
.services-card:nth-child(4) .card-icon { animation: rotate 4s linear infinite; }
.services-card:nth-child(5) .card-icon { animation: pulse 2.5s ease-in-out infinite; }
.services-card:nth-child(6) .card-icon { animation: bounce 2.5s ease-in-out infinite; }

.services-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 0 0 3px #fff;
}

.services-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.services-card p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

/* Assign colors to cards */
.services-card:nth-child(1) { background-color: #fdbc00; }
.services-card:nth-child(2) { background-color: #04aac9; }
.services-card:nth-child(3) { background-color: #f07500; }
.services-card:nth-child(4) { background-color: #9cc53b; }
.services-card:nth-child(5) { background-color: #7966cf; }
.services-card:nth-child(6) { background-color: #d52a2d; }

/* Mobile Responsiveness for Our Comprehensive Services */
@media (max-width: 768px) {
    .our-comprehensive-services {
        padding: 40px 20px;
        margin: 15px 0;
    }

    .services-container h2 {
        font-size: 28px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-card {
        padding: 20px;
    }

    .services-card h3 {
        font-size: 20px;
    }

    .services-card p {
        font-size: 14px;
    }

    .services-card .card-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
}

@media (max-width: 430px) {
    .our-comprehensive-services {
        padding: 30px 15px;
        margin: 10px 0;
    }

    .services-container h2 {
        font-size: 24px;
    }

    .services-subtitle {
        font-size: 14px;
    }

    .services-card {
        padding: 15px;
    }

    .services-card .card-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 75px 100px;
    background-color: #00243c;
    margin: 0;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(0);
    transition: all 1s ease;
}

.why-container h2 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    color: #04aac9;
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
}

.why-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background-color: #fff;
    background-image: linear-gradient(45deg, rgba(4, 172, 201, 0.03) 25%, transparent 25%, transparent 50%, rgba(4, 172, 201, 0.03) 50%, rgba(4, 172, 201, 0.03) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-card .card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #04aac9;
    animation: rotate 3s linear infinite;
}

/* Different animations for different why cards */
.why-card:nth-child(1) .card-icon { animation: rotate 3s linear infinite; color: #ff6b6b; }
.why-card:nth-child(2) .card-icon { animation: pulse 2s ease-in-out infinite; color: #ffa500; }
.why-card:nth-child(3) .card-icon { animation: bounce 2s ease-in-out infinite; color: #ffd700; }
.why-card:nth-child(4) .card-icon { animation: rotate 4s linear infinite; color: #32cd32; }
.why-card:nth-child(5) .card-icon { animation: pulse 2.5s ease-in-out infinite; color: #1e90ff; }
.why-card:nth-child(6) .card-icon { animation: bounce 2.5s ease-in-out infinite; color: #9370db; }

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #ffa500, #ffd700, #32cd32, #1e90ff, #9370db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 0 0 3px #fff;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(4, 172, 201, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #272727;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.why-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

/* Assign colors to why cards */
.why-card:nth-child(1) { border-color: #ff6b6b; }
.why-card:nth-child(2) { border-color: #ffa500; }
.why-card:nth-child(3) { border-color: #ffd700; }
.why-card:nth-child(4) { border-color: #32cd32; }
.why-card:nth-child(5) { border-color: #1e90ff; }
.why-card:nth-child(6) { border-color: #9370db; }

/* Mobile Responsiveness for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 20px;
        margin: 15px 0;
    }

    .why-container h2 {
        font-size: 28px;
    }

    .why-subtitle {
        font-size: 16px;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-card {
        padding: 20px;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .why-card p {
        font-size: 14px;
    }

    .why-card .card-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
}

@media (max-width: 430px) {
    .why-choose-us {
        padding: 30px 15px;
        margin: 10px 0;
    }

    .why-container h2 {
        font-size: 24px;
    }

    .why-subtitle {
        font-size: 14px;
    }

    .why-card {
        padding: 15px;
    }

    .why-card .card-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: #04aac9;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #04aac9;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 172, 201, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 0 0 3px #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #fdbc00;
    transform: scale(1.1);
}

.stat-card p {
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Learn More Button */
.learn-more-btn {
    background-color: #fdbc00;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

.learn-more-btn:hover {
    background-color: #d52a2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Our Core Values Section */
.our-core-values {
    padding: 75px 100px;
    background-color: #f5f5f5;
    margin: 0;
}

.core-values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.core-values-container h2 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    color: #04aac9;
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
}

.core-values-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.core-values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.core-values-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid transparent;
}

.core-values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #04aac9;
}

.icon-box {
    flex-shrink: 0;
    font-size: 48px;
    color: #04aac9;
    width: 80px;
    text-align: center;
}

.content-box {
    flex: 1;
}

.content-box h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #272727;
    margin-bottom: 15px;
}

.content-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Mobile Responsiveness for Core Values */
@media (max-width: 768px) {
    .our-core-values {
        padding: 40px 20px;
    }

    .core-values-container h2 {
        font-size: 28px;
    }

    .core-values-subtitle {
        font-size: 16px;
    }

    .core-values-cards {
        grid-template-columns: 1fr;
    }

    .core-values-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .icon-box {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .content-box h3 {
        font-size: 20px;
    }

    .content-box p {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .our-core-values {
        padding: 30px 15px;
    }

    .core-values-container h2 {
        font-size: 24px;
    }

    .core-values-subtitle {
        font-size: 14px;
    }

    .core-values-card {
        padding: 15px;
    }

    .icon-box {
        font-size: 32px;
    }
}

/* Mobile Responsiveness for Stats */
@media (max-width: 768px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-card p {
        font-size: 16px;
    }

    .learn-more-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 430px) {
    .stats-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-card p {
        font-size: 14px;
    }
}

/* Recognition & Achievements Section */
.recognition-achievements {
    padding: 75px 100px;
    background-color: #fff;
    margin: 0;
}

.recognition-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.recognition-container h2 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    color: #04aac9;
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
}

.recognition-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.recognition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.recognition-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.recognition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.icon-card {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #04aac9;
    font-size: 48px;
    color: #fff;
}

.content-card {
    background-color: #fff;
    padding: 30px;
    width: 100%;
    text-align: center;
}

.content-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #272727;
    margin-bottom: 15px;
}

.content-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Mobile Responsiveness for Recognition & Achievements */
@media (max-width: 768px) {
    .recognition-achievements {
        padding: 40px 20px;
    }

    .recognition-container h2 {
        font-size: 28px;
    }

    .recognition-subtitle {
        font-size: 16px;
    }

    .recognition-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .icon-card {
        height: 100px;
        font-size: 36px;
    }

    .content-card {
        padding: 20px;
    }

    .content-card h3 {
        font-size: 20px;
    }

    .content-card p {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .recognition-achievements {
        padding: 30px 15px;
    }

    .recognition-container h2 {
        font-size: 24px;
    }

    .recognition-subtitle {
        font-size: 14px;
    }

    .recognition-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .icon-card {
        height: 80px;
        font-size: 32px;
    }

    .content-card {
        padding: 15px;
    }

    .content-card h3 {
        font-size: 18px;
    }

    .content-card p {
        font-size: 12px;
    }
}

/* Client Testimonials Section */
.client-testimonials {
    padding: 75px 100px;
    background-color: #f5f5f5;
    margin: 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    color: #04aac9;
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.testimonials-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.icon-card {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.content-card {
    background-color: #fff;
    padding: 20px;
    width: 100%;
    text-align: center;
    margin: 0 15px;
}

.content-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    font-style: italic;
}

.client-name {
    font-size: 16px;
    font-weight: bold;
    color: #272727;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.client-title {
    font-size: 12px;
    color: #04aac9;
    font-family: 'Poppins', sans-serif;
}

/* Mobile Responsiveness for Client Testimonials */
@media (max-width: 768px) {
    .client-testimonials {
        padding: 40px 20px;
    }

    .testimonials-container h2 {
        font-size: 28px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .testimonials-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .icon-card {
        height: 50px;
        font-size: 24px;
    }

    .content-card {
        padding: 15px;
        margin: 0 10px;
    }

    .content-card p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .client-name {
        font-size: 14px;
    }

    .client-title {
        font-size: 10px;
    }
}

@media (max-width: 430px) {
    .client-testimonials {
        padding: 30px 15px;
    }

    .testimonials-container h2 {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonials-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .icon-card {
        height: 40px;
        font-size: 20px;
    }

    .content-card {
        padding: 10px;
        margin: 0 5px;
    }

    .content-card p {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .client-name {
        font-size: 12px;
    }

    .client-title {
        font-size: 8px;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 100px;
    background: linear-gradient(135deg, #04aac9 0%, #0288a1 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.cta-text {
    max-width: 800px;
}

.cta-container h2 {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-container p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1000px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.stat-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-content h3 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-content p {
    font-size: 16px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 35px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: #fff;
    color: #04aac9;
    border-color: #fff;
}

.cta-button.primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Mobile Responsiveness for CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-content {
        gap: 40px;
    }

    .cta-container h2 {
        font-size: 32px;
    }

    .cta-container p {
        font-size: 16px;
    }

    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-icon {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .stat-content h3 {
        font-size: 32px;
    }

    .stat-content p {
        font-size: 14px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: 16px;
    }

    .decoration-circle {
        display: none;
    }
}

@media (max-width: 430px) {
    .cta-section {
        padding: 40px 15px;
    }

    .cta-content {
        gap: 30px;
    }

    .cta-container h2 {
        font-size: 24px;
    }

    .cta-container p {
        font-size: 14px;
    }

    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-icon {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .stat-content h3 {
        font-size: 28px;
    }

    .stat-content p {
        font-size: 12px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Footer Styles */
footer {
    background-color: #00243c;
    color: #ffffff;
    padding: 50px 0 20px;
    font-family: 'Poppins', Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #04aac9;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social i {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social i:hover {
    color: #04aac9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #04aac9;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #cccccc;
}

.contact-item i {
    color: #04aac9;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
}

.footer-bottom a {
    color: #04aac9;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: none;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Meet the Team Section */
.meet-the-team {
    padding: 120px 100px;
    background-color: #f8f9fa;
    margin-top: 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.meet-the-team h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #00243c;
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
}

.meet-the-team h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.team-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0 0 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
}

.team-content h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #ff6b6b;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.team-content h4 {
    font-size: 16px;
    color: #04aac9;
    margin: 0 0 20px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-skills span {
    background: #f0f8ff;
    color: #04aac9;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #04aac9;
}

/* Team Section Responsive */
@media (max-width: 768px) {
    .meet-the-team {
        padding: 80px 20px;
    }

    .meet-the-team h2 {
        font-size: 32px;
    }

    .team-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .team-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-content {
        padding: 20px;
    }

    .team-image {
        height: 200px;
    }

    .team-content h3 {
        font-size: 20px;
    }

    .team-content h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .team-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .team-skills {
        gap: 8px;
    }

    .team-skills span {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 430px) {
    .meet-the-team {
        padding: 60px 15px;
    }

    .meet-the-team h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .meet-the-team h2::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }

    .team-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .team-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card {
        border-radius: 8px;
    }

    .team-content {
        padding: 15px;
    }

    .team-image {
        height: 180px;
    }

    .team-content h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .team-content h4 {
        font-size: 13px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .team-content p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .team-skills {
        gap: 6px;
        justify-content: center;
    }

    .team-skills span {
        font-size: 11px;
        padding: 3px 6px;
        border-radius: 15px;
    }
}

/* Build Future Section */
.build-future {
    padding: 100px 100px;
    background: #04aac9;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.build-future::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.build-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.build-future h2 {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.build-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    opacity: 0.9;
    font-weight: 300;
}

.start-project-btn {
    background-color: #fdbc00;
    color: #00243c;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.start-project-btn:hover {
    background-color: #d52a2d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Build Future Section Responsive */
@media (max-width: 768px) {
    .build-future {
        padding: 80px 20px;
    }

    .build-future h2 {
        font-size: 36px;
    }

    .build-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .start-project-btn {
        padding: 15px 30px;
        font-size: 18px;
    }
}

@media (max-width: 430px) {
    .build-future {
        padding: 60px 15px;
    }

    .build-future h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .build-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .start-project-btn {
        padding: 12px 25px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
}
