/* WebInstant — style.css
   Brand: #2E86DE (primary), #00C9A7 (accent), #1F1F1F text
   Keep styles simple and responsive
*/

:root {
    --primary: #2E86DE;
    --accent: #00C9A7;
    --text: #000000;
    --bg: #FFFFFF;
    --muted: #F5F7FA;
    --hover: #0E5FD8;
    --radius: 12px;
    --max-width: 1100px;
    --header-h: 76px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--text);
    margin: 0;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

/* layout helpers */
.container {
    width: calc(100% - 32px);
    max-width: var(--max-width);
    margin: 0 auto;
}

/* header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: var(--text);
}

.logo {
    width: 200px;
    /* height:100px; */
    object-fit: contain;
    border-radius: 12px;
}

.brand-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    display: block;
}

.brand-tag {
    display: block;
    font-size: 12px;
    color: rgba(31, 31, 31, 0.7);
    margin-top: 2px;
}


/* HERO */
.hero {
    position: relative;
    padding: 60px 0;
    background: var(--muted);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #1a60feaa,
            #c139ffaa,
            #812ceaaa,
            #6539ffaa);
    opacity: 0.9;
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 12px;
    color: #fff;
}


.lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-cta .btn {
    margin-right: 12px;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    color: white;
    font-weight: 500;
}

.hero-features li {
    margin-bottom: 8px;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* buttons */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;

}

.btn.primary {
    background: linear-gradient(90deg, #1a60fe, #c139ff);
    color: white;
    border: 0;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 134, 222, 0.3);
}

.btn.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-image {
    overflow: hidden;
    border-radius: 12px;
    max-width: 500px;
}

.hero-image .slides {
    display: flex;
    animation: slideHero 9s infinite;
}

.hero-image img {
    object-fit: cover;
}

/* Slide Animation */
@keyframes slideHero {
    0% {
        transform: translateX(0%);
    }

    33% {
        transform: translateX(0%);
    }

    38% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-100%);
    }

    71% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

/* mockup box */
.mockup {
    background: linear-gradient(180deg, #fff, #f7fbff);
    border-radius: 12px;
    padding: 8px
}

.mock-top {
    height: 10px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 8px;
    margin-bottom: 12px
}

.mock-body {
    display: flex;
    gap: 10px
}

.mock-left {
    flex: 1;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #eef7ff)
}

.mock-right {
    width: 110px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f3fff9)
}

/* cards */
.section {
    padding: 28px 0
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    margin: 0 0 8px
}

.section-sub {
    color: rgba(31, 31, 31, 0.7);
    margin-bottom: 18px
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(31, 31, 31, 0.04)
}

.services-section {
    text-align: center;
    padding: 60px 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    color: #1a60fe;
    margin-bottom: 10px;
}

.section-sub {
    color: #555;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    text-align: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
    text-align: center;
}

.service-card .icon {
    font-size: 2rem;
    color: #1a60fe;
    margin-bottom: 15px;
    text-align: center;
}

.service-card h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0b0f32;
    text-align: center;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    text-align: center;
}

/* Hover effect with gradient */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #c139ff;
}

.service-card:hover .icon {
    color: #812cea;
}

/* Mobile friendly */
@media (max-width: 768px) {
    .services-section {
        padding: 40px 15px;
    }
}

/* why grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start
}

.why-list {
    list-style: none;
    padding: 0
}

.why-list li {
    margin-bottom: 10px
}

/* projects grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.project {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(31, 31, 31, 0.04)
}

.thumb {
    height: 140px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin-bottom: 12px
}

/* large project cards */
.projects-grid.large {
    grid-template-columns: 1fr
}

.large-card {
    display: flex;
    gap: 18px;
    align-items: stretch
}

.large-thumb {
    width: 280px;
    height: 150px;
    border-radius: 12px
}

/* CTA section */
.cta-section {
    background: linear-gradient(90deg, rgba(46, 134, 222, 0.08), rgba(0, 201, 167, 0.05));
    padding: 28px 0;
    margin-top: 12px;
    border-radius: 12px
}

.cta-inner {
    text-align: center
}

/* contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px
}

.contact-form label {
    display: block;
    margin-bottom: 10px
}

.contact-form input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(31, 31, 31, 0.08);
    font-size: 14px
}

/* team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px
}

.team-card {
    background: white;
    border-radius: 12px;
    padding: 14px;
    text-align: center
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    font-weight: 700;
    margin-bottom: 8px
}

/* footer */
.site-footer {
    margin-top: 40px;
    padding: 28px 0;
    background: #0b1220;
    color: #fff
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr 200px 200px;
    gap: 20px
}

.site-footer h4,
h5 {
    color: white
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.85)
}

.footer-bottom {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.04)
}

/* utilities */
.center {
    text-align: center
}

.testimonial {
    background: white;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px
}

.testimonial cite {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: rgba(31, 31, 31, 0.6)
}

/* responsive */
@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .header-inner {
        padding: 8px 0
    }
}

@media (max-width:760px) {
    .main-nav {
        display: none
    }

    .nav-toggle {
        display: block
    }

    .projects-grid.large {
        grid-template-columns: 1fr
    }
}

/* Why Choose Us Section */
.why {
    padding: 60px 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.why-content h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #0b0f32;
    margin-bottom: 20px;
}

.highlight {
    color: #1a60fe;
}

.why-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.why-list li {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.why-list i {
    font-size: 1.2rem;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    color: white;
    border-radius: 50%;
    padding: 8px;
}

/* Testimonials */
.testimonials-preview {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.testimonials-preview h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a60fe;
}

.testimonial {
    background: #f9f9f9;
    border-left: 5px solid #812cea;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
    color: #0b0f32;
}

/* Responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 60px 20px;
}

.section-sub {
    text-align: center;
    color: #666;
    font-family: "Poppins", sans-serif;
    margin-bottom: 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #0b0f32;
}

.section-title .highlight {
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-text-fill-color: transparent;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Project Card */
.project {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.thumb {
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.project:hover .thumb img {
    transform: scale(1.05);
}

/* Project Info */
.project-info {
    padding: 15px;
}

.project-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a60fe;
    margin-bottom: 6px;
}

.project-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
}

/* Button */
.center {
    text-align: center;
    margin-top: 2rem;
}

.btn.outline {
    border: 2px solid #1a60fe;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    color: #1a60fe;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.outline:hover {
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    color: #fff;
    border-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background-color: #F5F7FA;
    /* light gray-blue background */
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-logo {
    max-width: 120px;
    margin-bottom: 1rem;
}

.contact-info h3,
.contact-info h4 {
    font-family: 'Poppins', sans-serif;
    color: #1F1F1F;
}

.contact-info p,
.contact-info a {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 0.95rem;
}

.social-links {
    margin-top: 0.8rem;
}

.social-links a {
    display: inline-block;
    margin: 0 0.4rem;
    font-size: 1.5rem;
    color: #2E86DE;
    /* vibrant blue */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00C9A7;
    /* aqua green */
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.cta-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn.large {
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Footer */
.site-footer {
    background: #0b0f32;
    color: #ccc;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #888;
    font-size: 0.9rem;
}

.footer-section h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.footer-section a {
    color: #c139ff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}



/* ===== Footer Styling ===== */
.site-footer {
    background: #111;
    color: #fff;
    padding: 40px 20px 10px;
    font-family: Arial, sans-serif;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #fff;
}

/* Grid layout for footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column h4,
.footer-column h5 {
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

.site-footer {
    background: #111;
    color: #fff;
    padding: 30px 15px;
    font-family: Arial, sans-serif;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #fff;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping on small screens */
    justify-content: space-between;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 250px;
    /* Flexible width */
    min-width: 200px;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* Services Page */
.services-page {
    text-align: center;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #1a60fe, #c139ff);
    color: #fff;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
}

.service-card ul {
    padding-left: 18px;
    font-size: 0.9rem;
}

.service-card ul li {
    margin-bottom: 6px;
}

/* About Page */
.about-page {
    text-align: center;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-text-fill-color: transparent;
}

.mission,
.team,
.values {
    margin-top: 50px;
    text-align: center;
}

.mission h2,
.team h2,
.values h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #1a60fe, #c139ff, #812cea);
}

.value-list {
    list-style: none;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.value-list li {
    margin-bottom: 8px;
}

/* Footer styling from earlier improvements applies here */
/* Portfolio Page */
.portfolio-page {
    text-align: center;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 30px;
}

.project {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.project:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.thumb {
    position: relative;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.project:hover .thumb img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 50, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project:hover .overlay {
    opacity: 1;
}

.overlay .btn.primary {
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.overlay .btn.primary:hover {
    background: linear-gradient(45deg, #6539ff, #812cea);
}

.project h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 1rem;
    font-size: 1.2rem;
}

.project p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin: 0 1rem 1.2rem;
}

/* Contact Page Styling */
.contact-page {
    text-align: left;
    animation: fadeIn 0.8s ease-in-out;
}

/* Gradient Page Title */
.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

/* Glassmorphism Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-in-out;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin: 1rem 0 0.4rem;
    font-family: 'Poppins', sans-serif;
}

/* Floating Label Effect */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: transparent;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(26, 96, 254, 0.3);
}

/* Gradient Button */
.contact-form button {
    margin-top: 1rem;
    padding: 0.9rem;
    width: 100%;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #1a60fe, #c139ff, #812cea);
    background-size: 300% 300%;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.contact-form button:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
}

/* Contact Info Box */
.contact-info {
    background: linear-gradient(145deg, #0b0f32, #13193f);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    animation: slideUp 1s ease-in-out;
}

.contact-info h3,
.contact-info h4 {
    font-family: 'Poppins', sans-serif;
}

.contact-info a {
    color: #c139ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #1a60fe;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #c139ff;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media(max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
        text-align: center;
    }
}

/* Mobile Styling */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-section {
        flex: 1 1 100%;
    }
}

/* Grid container */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Auto responsive */
    gap: 20px;
    margin-top: 30px;
}

/* Card styling */
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card hover effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Titles */
.service-card h3 {
    margin-bottom: 10px;
    color: #222;
}

/* Text */
.service-card p {
    font-size: 0.95rem;
    color: #555;
}

/* List inside card */
.service-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.service-card ul li {
    color: #444;
    margin-bottom: 5px;
}

/* Contact Info Box */
.contact-info {
    background: rgba(11, 15, 50, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    color: white;
    animation: fadeInUp 0.8s ease-in-out;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Logo Styling */
.contact-logo {
    display: block;
    max-width: 120px;
    margin-bottom: 1rem;
    animation: popIn 0.8s ease-in-out;
}

/* Headings */
.contact-info h3,
.contact-info h4 {
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Contact Items */
.text {
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-item i {
    color: #c139ff;
    font-size: 1.2rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-item a:hover {
    color: #c139ff;
    text-shadow: 0 0 8px rgba(193, 57, 255, 0.7);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
}

.social-links a {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.social-links a:hover {
    color: #fff;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(193, 57, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile padding */
@media (max-width: 768px) {
    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 15px;
    }
}

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Container */
.container.section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

/* Headings */
.container.section h1,
.container.section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

/* Lead paragraph */
.lead {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

/* Mission */
.mission {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Team Cards */
.team-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Avatar Circle */
.avatar {
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Values Section */
.values ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
    max-width: 600px;
    margin: auto;
}

.values ul li {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}


/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Info Box */
.contact-info {
    background: rgba(11, 15, 50, 0.9);
    /* Dark Glass */
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.7s ease-in-out;
    /* max-width: 350px; */
}

/* Logo Styling */
.contact-logo {
    display: block;
    max-width: 130px;
    margin-bottom: 1rem;
    animation: popIn 0.8s ease-in-out;
}

/* Titles */
.contact-info .text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-text-fill-color: transparent;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.6rem 0;
    font-size: 1rem;
}

.contact-item i {
    color: #c139ff;
    font-size: 1.2rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #c139ff;
    text-shadow: 0 0 8px rgba(193, 57, 255, 0.6);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
}

.social-links a {
    font-size: 1.4rem;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.6rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(193, 57, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-info {
    background: #1d2040;
    /* Dark navy background */
    padding: 5rem;
    /* Massive padding for bold look */
    border-radius: 28px;
    color: white;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    max-width: 750px;
    /* Way wider */
    min-height: 550px;
    /* Taller */
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 0.7s ease-in-out;
    margin: auto;
    /* Center it */
}

/* Huge Logo */
.contact-logo {
    max-width: 250px;
    margin-bottom: 3rem;
}

/* Larger Titles */
.contact-info .text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* Huge Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 1.5rem 0;
    font-size: 1.4rem;
}

.contact-item i {
    font-size: 1.8rem;
}

/* Giant Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    transform: translateY(-4px) scale(1.2);
}

/* Base nav style */
.main-nav {
    display: flex;
    gap: 1rem;
}

/* Mobile hidden menu */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        background: #111;
        padding: 1rem;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .main-nav.show {
        display: flex;
        /* Toggle this with JS */
    }

    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: white;
    }
}

/* Desktop hides hamburger */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        background: none;
        border: none;
        color: #1F1F1F;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #ffffff;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1000;
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav .nav-link {
        padding: 0.5rem 0;
        color: #1F1F1F;
    }
}

/* Desktop hides hamburger */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

.contact-info {
    background: #0b0f32;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 350px;
    /* prevents it from growing too large */
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
}

.contact-info img {
    max-width: 120px;
    /* smaller logo */
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.contact-info h3,
.contact-info h4 {
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
}

.contact-item {
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

.social-links {
    /* display: flex; */
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.social-links a {
    font-size: 1.3rem;
    color: white;
}

@media(max-width: 768px) {
    .contact-info {
        max-width: 100%;
        /* full width on mobile */
        text-align: center;
    }

    .contact-info img {
        margin: 0 auto 1rem;
    }
}

.lead {
    font-family: "Poppins", sans-serif;
    color: #000000;
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    /* space between buttons */
    margin-top: 24px;
}

.hero-cta .btn {
    font-size: 1rem;
    /* adjust text size */
    padding: 12px 20px;
    /* height & width space */
    min-width: 180px;
    /* ensures uniform width */
    text-align: center;
    border-radius: 8px;
    /* rounded corners */
}

/* primary style stays as is from earlier */
.hero-cta .btn.primary {
    /* background: linear-gradient(90deg, var(--primary), var(--accent)); */
    color: #fff;
    font-weight: 600;
}

/* outline button style */
.hero-cta .btn.outline {
    /* border: 2px solid var(--primary); */
    /* color: var(--primary); */
    background: transparent;
    font-weight: 600;
}

.hero-cta .btn.outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Smaller on mobile */
@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta .btn {
        min-width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* Hero Features List */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    /* bold text */
    color: #222;
    /* dark, high-contrast text */
}

.hero-features li {
    display: flex;
    align-items: center;
    background: rgba(26, 96, 254, 0.08);
    padding: 10px 14px;
    border-radius: 8px;
    transition: transform 0.2s ease, background 0.3s ease;
}

.hero-features li:hover {
    background: rgba(26, 96, 254, 0.15);
    transform: translateY(-2px);
}

.hero-features li::before {
    content: '✔';
    color: #1a60fe;
    font-weight: bold;
    margin-right: 10px;
}

/* Emoji styling (if you keep the emoji icons) */
.hero-features li span {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Mobile-friendly layout */
@media (max-width: 480px) {
    .hero-features {
        font-size: 1.05rem;
        gap: 10px;
    }

    .hero-features li {
        padding: 8px 12px;
    }
}

.contact-form {
    margin: 0 auto;
    /* Centers horizontally */
    max-width: 500px;
    /* Prevents it from being too wide */
    width: 100%;
}

@media (max-width: 768px) {
    .contact-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.contact-item i {
    margin-right: 6px;
    color: #007bff;
    font-size: 0.9rem;
    /* Smaller icon size */
}

.social-links a {
    font-size: 1.1rem;
    /* Smaller social icons */
    color: #007bff;
    transition: color 0.2s ease-in-out;
}

.contact-info {
    text-align: left;
}

.contact-item i {
    margin-right: 3px !important;
    /* Adjust this value as needed */
}

/* Testimonials Section */
.testimonials-preview {
    padding: 3rem 0;
    background-color: #f8f9fa;
    /* Light gray background */
}

.testimonials-preview h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #212529;
}

.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-weight: 600;
    color: #3a86ff;
    /* Matching your brand color */
    font-style: normal;
    text-align: right;
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
    .testimonials-preview {
        padding: 3.5rem 0;
    }

    .testimonial {
        padding: 2rem;
    }

    .testimonial p {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .testimonials-preview {
        padding: 4rem 0;
    }

    .testimonials-preview h3 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .testimonial-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonial {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .testimonials-preview {
        padding: 5rem 0;
    }

    .testimonial p {
        font-size: 1.15rem;
    }

    .testimonial-container {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Animation for subtle effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial {
    animation: fadeIn 0.6s ease forwards;
    color: black;
}


.testimonial:nth-child(2) {
    animation-delay: 0.2s;
}

/* Why Choose Us Section */
.why {
    padding: 3rem 1rem;
    max-width: 100%;
    overflow: hidden;
}

.hero-features {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.why-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #333;
}

.highlight {
    color: #3a86ff;
}

.why-list {
    /* display: flex; */
    flex-direction: column;
    gap: 1rem;
    padding-left: 0;
    list-style: none;
    width: 100%;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.checkmark {
    color: #3a86ff;
    font-weight: bold;
    font-size: 1.2rem;
}





/* Responsive Breakpoints */
@media (min-width: 640px) {
    .why {
        padding: 4rem 2rem;
    }

    .why-list li {
        font-size: 1.15rem;
    }
}

@media (min-width: 768px) {
    .why-content {
        /* max-width: 800px; */
        margin: 0 auto;
    }

    .why-content h2 {
        text-align: center;
    }

    .btn.primary {
        align-self: center;
        padding: 0.85rem 2rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .why {
        padding: 5rem 2rem;
    }

    .why-content h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

/* Divider Style */
.why-content::after {
    /* content: ""; */
    /* display: block; */
    height: 1px;
    background-color: #eee;
    margin: 1.5rem 0;
    /* width: 100%; */
}

@media (min-width: 768px) {
    .why-content::after {
        margin: 2rem 0;
    }
}

/* Services Page */
.services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-card h3 {
    margin: 10px 0;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.service-card ul li {
    margin: 5px 0;
}

.icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4facfe, #8e44ad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    /* center emoji vertically */
    justify-content: center;
    /* center emoji horizontally */
    font-size: 28px;
    line-height: 1;
    margin: 0 auto 15px;
    /* center the box itself and add bottom space */
}

.service-card p {
    color: #000000;
    /* pure black */
    font-size: 16.5px;
}

.service-card p {
    color: #000 !important;
}

.btn.primary,
.btn.outline {
    font-size: larger;
}

.plans-page {
    padding: 40px 0;
}

.plan-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a60fe;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-subtitle {
    color: #555;
    margin-bottom: 30px;
    font-size: 18px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
    border: 2px solid #1a60fe;
    transform: scale(1.03);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0b0f32;
    margin-bottom: 15px;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a60fe;
    margin-bottom: 5px;
}

.currency {
    font-size: 16px;
    color: #777;
}

.price-note {
    color: #777;
    font-size: 14px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #444;
}

.plan-features i {
    color: #00C9A7;
}

.plan-cta {
    text-align: center;
}

.faq-section {
    margin: 80px 0 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.faq-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
}

.faq-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0b0f32;
    margin-bottom: 15px;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}
/* About Page Specific Styles */
.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.about-page h1.page {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-page .lead {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
    text-align: center;
    border-left: 4px solid #1a60fe;
}

.mission h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #0b0f32;
}

.mission p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Section */
.team {
    margin: 4rem 0;
}

.team h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #0b0f32;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-top: 4px solid #1a60fe;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #1a60fe, #c139ff, #812cea);
}

.team-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #0b0f32;
}

.team-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Values Section */
.values {
    margin: 4rem 0;
}

.values h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #0b0f32;
}

.value-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.value-list li {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.value-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page h1.page {
        font-size: 2.2rem;
    }
    
    .about-page .lead {
        font-size: 1.1rem;
    }
    
    .mission {
        padding: 1.5rem;
    }
    
    .mission h2 {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .value-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 1rem;
    }
    
    .mission {
        padding: 1.2rem;
    }
    
    .team-card {
        padding: 1.5rem 1rem;
    }
}
/* Plans Page Specific Styles */
.plans-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.plans-page h1.page {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-page .lead {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Plan Categories */
.plan-category {
    margin: 4rem 0;
}

.plan-category:first-child {
    margin-top: 2rem;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b0f32;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.category-title i {
    color: #1a60fe;
    font-size: 1.5rem;
}

.category-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Plan Cards */
.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f0f0f0;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.plan-card.featured {
    border: 2px solid #1a60fe;
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
    border-color: #1a60fe;
    box-shadow: 0 20px 40px rgba(26, 96, 254, 0.15);
}

/* Plan Badge */
.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f5f5f5;
}

.plan-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b0f32;
    margin-bottom: 1rem;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a60fe;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
    color: #777;
    font-weight: 500;
}

.price-note {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-features i {
    color: #00C9A7;
    font-size: 1.1rem;
    min-width: 20px;
}

/* Plan CTA */
.plan-cta {
    text-align: center;
}

.plan-cta .btn.primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    transition: all 0.3s ease;
}

.plan-cta .btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 96, 254, 0.3);
}

/* FAQ Section */
.faq-section {
    margin: 5rem 0 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    border-radius: 20px;
}

.faq-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #0b0f32;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0b0f32;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a60fe 0%, #c139ff 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0 2rem;
    text-align: center;
}

.cta-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inner .btn.primary.large {
    background: white;
    color: #1a60fe;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-inner .btn.primary.large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .plans-page h1.page {
        font-size: 2.2rem;
    }
    
    .plans-page .lead {
        font-size: 1.1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-inner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .plans-page {
        padding: 1rem;
    }
    
    .plan-card {
        padding: 1.2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .plan-header h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
}

/* Animation for plan cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card {
    animation: fadeInUp 0.6s ease forwards;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
.plan-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover effects for FAQ items */
.faq-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Staggered animation for FAQ items */
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

/* Services Page Specific Styles */
.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h1.page {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #f0f0f0;
}

.service-card:hover::before {
    opacity: 1;
}

/* Icon Styling */
.service-card .icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #1a60fe 0%, #c139ff 100%);
}

/* Service Card Content */
.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    color: #0b0f32;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li:hover {
    color: #1a60fe;
    transform: translateX(5px);
}

.service-card ul li::before {
    content: '•';
    color: #1a60fe;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Hover effects for list items */
.service-card:hover ul li {
    border-bottom-color: #e8f0fe;
}

/* Animation for service cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Staggered animation for service cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }
.service-card:nth-child(10) { animation-delay: 1.0s; }
.service-card:nth-child(11) { animation-delay: 1.1s; }
.service-card:nth-child(12) { animation-delay: 1.2s; }
.service-card:nth-child(13) { animation-delay: 1.3s; }
.service-card:nth-child(14) { animation-delay: 1.4s; }
.service-card:nth-child(15) { animation-delay: 1.5s; }
.service-card:nth-child(16) { animation-delay: 1.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-page h1.page {
        font-size: 2.2rem;
    }
    
    .services-header .lead {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card .icon {
        font-size: 2.5rem;
        height: 70px;
        width: 70px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .services-page {
        padding: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card .icon {
        font-size: 2rem;
        height: 60px;
        width: 60px;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

/* Enhanced hover effects */
.service-card {
    position: relative;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a60fe 0%, #c139ff 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.service-card:hover::after {
    opacity: 0.02;
}

/* Focus states for accessibility */
.service-card:focus-within {
    outline: 2px solid #1a60fe;
    outline-offset: 2px;
}

/* Smooth scrolling for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-card .icon,
    .service-card ul li {
        transition: none;
        animation: none;
    }
}

/* Print styles */
@media print {
    .service-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .service-card:hover {
        transform: none;
    }
}
/* Projects Page Specific Styles */
.portfolio-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.portfolio-page h1.page {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-page .lead {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Project Cards */
.project {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.project:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Thumbnail Container - FIXED */
/* .thumb {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f8f9ff; 
} */

/* .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
    transition: all 0.4s ease;
} */

/* Add a placeholder in case images don't load */
.thumb::before {
    content: "Thumbnail";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ccc;
    font-size: 1rem;
    z-index: 0; /* Behind the image */
    display: none; /* Only show if image fails to load */
}

.thumb img:not([src])::before, 
.thumb img[src=""]::before {
    display: block;
}

.project:hover .thumb img {
    transform: scale(1.05);
}

/* Overlay Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 96, 254, 0.9) 0%, rgba(193, 57, 255, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2; /* Ensure it's above the image */
}

.project:hover .overlay {
    opacity: 1;
}

.overlay .btn.primary {
    background: white;
    color: #1a60fe;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.project:hover .overlay .btn.primary {
    transform: translateY(0);
}

.overlay .btn.primary:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Project Info - FIXED STRUCTURE */
.project > h4,
.project > p {
    padding: 1rem 1.5rem;
    margin: 0;
}

.project h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b0f32;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.project p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-top: 0;
    margin-top: -0.5rem;
    padding-bottom: 1.5rem;
}

/* Rest of your CSS remains the same... */
/* ------------------------------
   GLOBAL STYLES
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

/* ------------------------------
   HEADER
------------------------------ */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 50px;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.cta {
  color: #007bff;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
  background: linear-gradient(to right, #f7f8fc, #ffffff);
  padding: 4rem 2rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.hero-cta .btn {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn.primary {
  background: #007bff;
  color: #fff;
}

.btn.primary:hover {
  background: #0056b3;
}

.btn.outline {
  border: 2px solid #007bff;
  color: #007bff;
}

.btn.outline:hover {
  background: #007bff;
  color: #fff;
}

.hero-features li {
  margin: 0.5rem 0;
  color: #444;
  font-size: 0.95rem;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ------------------------------
   SECTIONS
------------------------------ */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: #666;
  font-size: 1rem;
}

/* ------------------------------
   SERVICES GRID
------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin: 1rem 0 0.5rem;
  color: #222;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
}

.service-card ul li {
  font-size: 0.9rem;
  margin: 0.3rem 0;
}

/* ------------------------------
   STATS SECTION
------------------------------ */
.stats-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 2rem 0;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;
}

.stat-label {
  color: #555;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* ------------------------------
   TESTIMONIALS
------------------------------ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-content .stars {
  color: #ffb400;
  font-size: 1.2rem;
}

/* ------------------------------
   FOOTER
------------------------------ */
.site-footer {
  background: #111;
  color: #eee;
  padding: 2rem 0;
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 1rem;
}

.footer-links li {
  margin: 0.3rem 0;
}

.footer-links a {
  color: #ddd;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .stats-grid {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-slider .slides {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-slider .slide {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.hero-slider img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-btn:hover { background: rgba(0,0,0,0.6); }

/* Dots */
.slider-dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.slider-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slider-dots .dot.active {
  background-color: #007bff;
}
/* =========================
   NAVBAR BASE STYLES
========================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand .logo {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand .logo:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.cta {
  background: #007bff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.nav-link.cta:hover {
  background: #0056b3;
}

/* =========================
   HAMBURGER MENU (MOBILE)
========================= */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

/* =========================
   RESPONSIVE STYLES
========================= */
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 220px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .main-nav.open {
    transform: translateX(0%);
  }

  .nav-link {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
  }

  .hamburger {
    display: block;
  }
}
/* ---------------------------
   Base Styles
---------------------------- */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin: 0;
    color: #1F1F1F;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ---------------------------
   Navigation Bar
---------------------------- */
.site-header {
    background: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

/* Default nav style */
.main-nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #1F1F1F;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #007bff;
}

/* Hamburger icon hidden on desktop */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #1F1F1F;
    background: none;
    border: none;
}

/* ---------------------------
   Responsive Nav
---------------------------- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #ffffff;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        width: 200px;
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav .nav-link {
        padding: 0.5rem 0;
        color: #1F1F1F;
    }
}

/* ---------------------------
   Responsive Grid & Typography
---------------------------- */
h1 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }
}

.grid {
    display: grid;
    grid-gap: 1.5rem;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}.nav-link.cta {
    padding: 8px 16px;
    background: #007bff;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-link.cta:hover {
    background: #0056b3;
    transform: translateY(-2px);
}
/* ================================
   AUTH PAGE STYLES - auth.css
   Matches WebInstant's style.css
   ================================ */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--muted, #F5F7FA);
  color: var(--text, #1F1F1F);
  line-height: 1.6;
}

/* HEADER */
.site-header {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.logo {
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius, 12px);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    color: #1F1F1F;
    padding: 0.5rem 0;
  }
}

/* AUTH SECTION */
.auth-section {
  max-width: 400px;
  margin: 60px auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius, 12px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

.auth-section h1 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #333;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form label {
  text-align: left;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #444;
}

.auth-form input {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.auth-form input:focus {
  border-color: var(--primary, #2E86DE);
  box-shadow: 0 0 0 2px rgba(46, 134, 222, 0.15);
}

.auth-form button {
  background: linear-gradient(90deg, var(--primary, #2E86DE));
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.auth-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 134, 222, 0.3);
}

.auth-section p {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.auth-section p a {
  color: var(--primary, #2E86DE);
  text-decoration: none;
  font-weight: 500;
}

.auth-section p a:hover {
  text-decoration: underline;
}
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 20px;
  background: #f8f9fc;
  text-align: center;
}

.why-choose-us h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #0b0f32;
  margin-bottom: 30px;
}

.why-grid {
  display: flex;
  justify-content: center;
}

.why-content {
  max-width: 800px;
  text-align: left;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.why-feature {
  display: flex;
  gap: 15px;
  align-items: start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-feature i {
  font-size: 1.8rem;
  color: #2E86DE;
  background: rgba(46, 134, 222, 0.1);
  padding: 12px;
  border-radius: 10px;
  flex-shrink: 0;
}

.why-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #0b0f32;
  font-weight: 600;
}

.why-feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.btn.primary {
  display: inline-block;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .why-features {
    grid-template-columns: 1fr;
  }

  .why-feature {
    padding: 15px;
  }

  .why-choose-us h2 {
    font-size: 1.6rem;
  }
}
/* Profile Icon Styles */
.profile-section {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.profile-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profile-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 250px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
}

.profile-section:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-header {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 600;
  font-size: 1.2rem;
}

.profile-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #0b0f32;
}

.profile-email {
  font-size: 0.9rem;
  color: #666;
}

.profile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-menu li {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.profile-menu li:last-child {
  border-bottom: none;
}

.profile-menu a {
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.profile-menu a:hover {
  color: #1a60fe;
}

.profile-menu i {
  font-size: 1.1rem;
  width: 20px;
}

.logout-btn {
  color: #e74c3c !important;
  font-weight: 500;
}

.logout-btn:hover {
  color: #c0392b !important;
}

/* Adjust header for profile icon */
.header-inner {
  display: flex;
  align-items: center;
}

/* Mobile styles */
@media (max-width: 768px) {
  .profile-dropdown {
    right: -80px;
    width: 220px;
  }
  
  .profile-section {
    margin-left: 10px;
  }
}
/* ================================
   CONTACT PAGE ENHANCEMENTS
   ================================ */

/* Contact Page Specific Styles */
.contact-page {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page h1.page {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-page .lead {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

/* Contact Form Styling */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-in-out;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin: 1.5rem 0 0.6rem;
    font-family: 'Poppins', sans-serif;
    color: #0b0f32;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
    background: #f8f9ff;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1a60fe;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 96, 254, 0.2);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Form Status Messages */
#formStatus {
    margin: 1.2rem 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
}

#formStatus .success {
    color: #0a8;
    font-weight: 500;
    background: rgba(0, 170, 136, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid #0a8;
}

#formStatus .error {
    color: #f33;
    font-weight: 500;
    background: rgba(255, 51, 51, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid #f33;
}

/* Submit Button */
.contact-form button {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    width: 100%;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #1a60fe, #c139ff, #812cea);
    background-size: 300% 300%;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form button:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 96, 254, 0.3);
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info Box */
.contact-info {
    background: linear-gradient(145deg, #0b0f32, #13193f);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideUp 1s ease-in-out;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.8rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    border-radius: 3px;
}

.contact-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: #fff;
}

.contact-logo {
    max-width: 160px;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.2rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: #c139ff;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #c139ff;
    text-shadow: 0 0 8px rgba(193, 57, 255, 0.5);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 57, 255, 0.4);
}

/* Footer Styling */
.site-footer {
    margin-top: 80px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-section h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c139ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-page h1.page {
        font-size: 2.2rem;
    }
    
    .contact-page .lead {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.8rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-form label {
        margin: 1.2rem 0 0.5rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.9rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
    .nav-link.cta{
    background: linear-gradient(90deg, #1a60fe, #c139ff);
    color: white;
    border: 0;
}