/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    --primary-gradient: #00539B;
    --secondary-gradient: linear-gradient(45deg, #000000, #1a1a1a);
    --text-color: #ffffff;
    --text-dark: #000000;
    --card-bg: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

body {
    background-color: #ffffff;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    padding: 1rem 0;
    z-index: 1000;
    opacity: 0.8;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    opacity: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
    opacity: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.nav-links a:hover {
    color: #00539B;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle i {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }

    .menu-toggle {
        display: block;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.2);
        transition: all 0.3s ease;
        margin-left: auto;
        z-index: 1002;
    }

    .nav-links {
        z-index: 1001;
    }

    .menu-toggle:hover {
        background: rgba(99, 102, 241, 0.15);
    }

    .menu-toggle i {
        font-size: 1.2rem;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: transform 0.3s ease;
    }

    .menu-toggle.active i {
        transform: rotate(90deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 300px;
        background: rgb(255, 255, 255);
        /* backdrop-filter: blur(10px); */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem;
        border-left: 1px solid rgba(99, 102, 241, 0.2);
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: var(--primary-gradient);
        opacity: 0.1;
        pointer-events: none;
    }

    .nav-links.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        text-align: center;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li a {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem;
        width: 100%;
        display: inline-block;
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-gradient);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-links li a:hover {
        color: #00539B;
    }

    .nav-links li a:hover::after {
        width: 50%;
    }

    .nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links li:nth-child(5) {
        transition-delay: 0.3s;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    margin-top: 3%;
    padding: 0 2%;
}

.hero-overlay img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 2rem;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero h1 span {
    color: #00539B;
    font-weight: 300;
    font-size: clamp(24px, 4vw, 34px);
}

.hero p {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 2rem;
    color: rgb(123 123 123 / 80%);
    animation: fadeInUp 1s ease 0.2s;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    animation: fadeInUp 1s ease 0.4s;
    flex-wrap: wrap;
}

.cta-button {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: clamp(14px, 1.5vw, 16px);
    white-space: nowrap;
}

.cta-button.primary {
    background: #0660add6;
    ;
    color: white;
}

.cta-button.secondary {
    background: rgb(23 23 23 / 10%);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Team Section */
.team {
    padding: 8rem 2rem;
    background: #000;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.member-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.4);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #ffffff;
}

.member-image img {
    width: 75%;
    height: 100%;
    object-fit: cover;
    margin-left: 40px;
    transition: var(--transition);
}

.member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.879);
    background: #c0e1ff;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.position {
    color: rgb(0 0 0 / 70%);
    margin-bottom: 1rem;
    font-weight: 500;
}

.bio {
    color: rgb(0 0 0 / 68%);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: #6366f1;
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: #f2f9ff;
    position: relative;
}

.section-header {
    text-align: center;
    color: #a781ffd4;
    margin-bottom: 4rem;
    font-size: 35px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: rgba(59, 59, 59, 0.7);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    position: relative;
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* transition: var(--transition); */
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: rgba(59, 59, 59, 0.7);
    line-height: 1.6;
    margin-top: auto;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    filter: blur(50px);
}

.service-card:hover .card-glow {
    /* opacity: 0.1; */
}

.service-card:hover {
    /* transform: translateY(-10px); */
    border-color: rgba(99, 102, 241, 0.4);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Industries Section */
.industries {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.industries .gradient-bg {
    opacity: 0.05;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.industry-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.industry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.industry-btn:hover::before {
    opacity: 0.1;
}

.industry-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.industry-btn i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.industry-btn span {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .industries {
        padding: 6rem 1rem;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .industry-btn {
        padding: 1.5rem;
    }

    .industry-btn i {
        font-size: 2rem;
    }

    .industry-btn span {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: #f5faff;
    position: relative;
    overflow: hidden;
}

.about .gradient-bg {
    opacity: 0.05;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.main-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgb(29 29 29 / 90%);
    margin-bottom: 3rem;
    text-align: justify;
    animation: fadeInUp 1s ease-out;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission,
.vision {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover,
.vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

.mission h3,
.vision h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.mission p,
.vision p {
    color: rgb(74 74 74 / 80%);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* About section animations */
.about .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.1s ease-in-out;
}

.about .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.mission.reveal {
    transition-delay: 0.1s;
}

.vision.reveal {
    transition-delay: 0.2s;
}

/* Responsive design for about section */
@media (max-width: 768px) {
    .about {
        padding: 6rem 1rem;
    }

    .about-text {
        padding: 1.5rem;
    }

    .main-desc {
        font-size: 1.1rem;
        text-align: left;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .mission,
    .vision {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.submit-btn {
    padding: 1rem 2rem;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.email-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.email-btn:hover {
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
    }
}

/* Footer */
footer {
    background: #000;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info-block {
    animation: fadeInUp 0.8s ease-out;
}

.footer-info-block .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-info-block .logo span {
    font-size: 1.3rem;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-links-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-column ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .submit-btn {
    padding: 0.8rem 1.2rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.contact-info i {
    font-size: 1.1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-links-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

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

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Apply animations to elements */
.hero-content h1 {
    animation: fadeInUp 1s ease-out;
    font-size: 42px;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.2s backwards;
    font-size: 18px;
}

.cta-buttons {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.service-card {
    /* animation: scaleIn 0.6s ease-out backwards; */
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.4);
    animation: float 3s ease-in-out infinite;
}

.service-card i {
    animation: float 3s ease-in-out infinite;
}

.member-card {
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: calc(var(--card-index, 0) * 0.2s);
}

.member-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.section-header h2 {
    animation: slideInLeft 1s ease-out;
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

.section-header p {
    animation: slideInRight 1s ease-out;
}

/* Navbar Animation */
.navbar {
    animation: fadeIn 0.5s ease-out;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo span {
    animation: fadeIn 1s ease-out;
}

.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Contact Form Animations */
.form-group input,
.form-group textarea {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.form-group:nth-child(1) input {
    animation-delay: 0.2s;
}

.form-group:nth-child(2) input {
    animation-delay: 0.4s;
}

.form-group:nth-child(3) textarea {
    animation-delay: 0.6s;
}

.submit-btn {
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

/* Social Links Animation */
.social-links a {
    color: #00539b;
    /* animation: fadeIn 0.5s ease-out backwards; */
    /* animation-delay: calc(var(--link-index, 0) * 0.1s); */
}

.social-links a:hover {
    color: #00539b;
    /* animation: float 3s ease-in-out infinite; */
}

/* Gradient Background Animation */
.gradient-bg {
    background: var(--primary-gradient);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
}

/* Card Glow Animation */
.card-glow {
    animation: float 6s ease-in-out infinite;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Animation */
.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(90deg);
}

/* Add this to your existing media queries */
@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-overlay img {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 5%;
        padding: 1rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero-content {
        padding: 0;
        margin-top: -230px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin-top: 8%;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-overlay img {
        border-radius: 8px;
        /* visibility: hidden; */
    }
}

/* Service Popup Styles */
.service-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: linear-gradient(rgb(249 249 249 / 95%));
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    animation: slideUpFade 0.4s ease-out forwards;
    color: white;
}

.popup-content::-webkit-scrollbar {
    width: 1px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
    border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0);
    border-radius: 4px;
}

.close-popup {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.849); */
}

.close-popup:hover {
    /* color: white; */
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

#popup-title {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 40px;
    animation: fadeInUp 0.5s ease-out;
}

.popup-description {
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgb(65 65 65 / 90%);
    font-size: 1.1rem;
    animation: fadeInUp 0.5s ease-out 0.1s backwards;
}

.popup-description ul {
    list-style: none;
    padding: 0;
}

.popup-description ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.popup-description ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6366f1;
}

.popup-pricing {
    margin-bottom: 40px;
    animation: fadeInUp 0.5s ease-out 0.2s backwards;
}

.popup-pricing h3 {
    margin-bottom: 25px;
    font-size: 24px;
    color: white;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.price-plan {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.price-plan:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
}

.price-plan:hover::before {
    opacity: 0.1;
}

.price-plan h4 {
    color: rgb(48, 48, 48);
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.price-plan p {
    color: #6366f1;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.terms-conditions {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    animation: fadeInUp 0.5s ease-out 0.3s backwards;
}

.terms-conditions h3 {
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.terms-conditions p {
    color: rgba(33, 33, 33, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.terms-conditions p:before {
    content: '*';
    position: absolute;
    left: 0;
    color: #6366f1;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive adjustments for popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 25px;
        width: 95%;
    }

    #popup-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .popup-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .pricing-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .price-plan {
        padding: 20px;
    }

    .price-plan h4 {
        font-size: 18px;
    }

    .price-plan p {
        font-size: 16px;
    }

    .terms-conditions {
        padding-top: 20px;
    }

    .terms-conditions h3 {
        font-size: 18px;
    }

    .terms-conditions p {
        font-size: 13px;
    }
}

/* Add smooth show/hide animations */
.service-popup[style*="display: flex"] {
    animation: fadeIn 0.3s ease-out;
}

.service-popup[style*="display: none"] {
    animation: fadeOut 0.3s ease-out;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Industry Popup Styles */
.industry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.industry-popup .popup-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    animation: slideUpFade 0.4s ease-out forwards;
    color: rgb(0, 0, 0);
}

.industry-popup .popup-content::-webkit-scrollbar {
    width: 8px;
}

.industry-popup .popup-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
    border-radius: 4px;
}

.industry-popup .popup-content::-webkit-scrollbar-thumb {
    /* background: var(--primary-gradient); */
    border-radius: 4px;
}

.industry-solutions {
    margin-bottom: 40px;
    animation: fadeInUp 0.5s ease-out 0.2s backwards;
}

.industry-solutions h3 {
    margin-bottom: 25px;
    font-size: 24px;
    color: rgb(0, 0, 0);
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solutions-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.solution-plan {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.solution-plan:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
}

.solution-plan:hover::before {
    opacity: 0.1;
}

.solution-plan h4 {
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.solution-plan p {
    color: #6366f1;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for industry popup */
@media (max-width: 768px) {
    .industry-popup .popup-content {
        padding: 25px;
        width: 95%;
    }

    .industry-solutions h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .solutions-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .solution-plan {
        padding: 20px;
    }

    .solution-plan h4 {
        font-size: 18px;
    }

    .solution-plan p {
        font-size: 16px;
    }
}

/* Add smooth show/hide animations for industry popup */
.industry-popup[style*="display: flex"] {
    animation: fadeIn 0.3s ease-out;
}

.industry-popup[style*="display: none"] {
    animation: fadeOut 0.3s ease-out;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 3rem 2rem;
    margin-top: -2rem;
    background: linear-gradient(135deg, rgba(0, 83, 155, 0.05) 0%, rgba(0, 83, 155, 0.1) 100%);
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--primary-gradient);
    opacity: 0.1;
    pointer-events: none;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    padding-top: 0;
    margin-top: -1rem;
}

.testimonials .section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00539B, #1a1a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease infinite;
}

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

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease-out;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.testimonials-slider.active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 83, 155, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(45deg, #00539B, #1a1a1a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 83, 155, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid #00539B;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .client-image {
    transform: scale(1.05);
    border-color: #1a1a1a;
}

.testimonial-content {
    text-align: center;
}

.testimonial-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    color: #00539B;
    font-size: 1.5rem;
    font-weight: bold;
}

.client-info h4 {
    color: #00539B;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-info p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.prev-btn,
.next-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 83, 155, 0.1);
}

.prev-btn:hover,
.next-btn:hover {
    background: #00539B;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.prev-btn:hover i,
.next-btn:hover i {
    color: white;
}

.prev-btn i,
.next-btn i {
    color: #00539B;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 83, 155, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    margin: 0;
}

.dot:hover {
    background: rgba(0, 83, 155, 0.4);
}

.dot.active {
    background: #00539B;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 280px;
    }
    
    .testimonials-slider {
        gap: 1rem;
    }
    
    .slider-controls {
        margin-top: 1.5rem;
    }
}

/* Features Section */
.features {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    color: white;
    overflow: hidden;
}

.features .gradient-bg {
    opacity: 0.05;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.features .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #e4f2ff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #3e3e3e;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #090eff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    color: #555555;
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #00539b;
    border-radius: 50%;
}

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

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

    .features .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }
}