* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0d10;
    color: #ffffff;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0b0d10;
    border-bottom: 1px solid #25282d;
}

.navbar {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    width: 250px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span {
    color: rgb(250, 222, 14);
}

.nav {
    display: flex;
    gap: 28px;
		font-size: 20px;
		font-weight: bold;
		justify-content: space-between;
}

.nav a {
    color: #ddd;
    transition: 0.3s;
}

.nav a:hover {
    color: rgb(250, 222, 14);
}

/* ================= ACTIVE NAV PAGE ================= */

.nav a.active {
    color: rgb(250, 222, 14);
}

.nav a.active::after {
    width: 100%;
}

/* ================= HERO ================= */

.hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 80% 50%, #263000, transparent 35%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.small-title {
    color: rgb(250, 222, 14);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 100px);
    line-height: 0.95;
    margin-bottom: 25px;
}

.hero h1 span {
    color: rgb(250, 222, 14);
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hero-description {
    max-width: 600px;
    color: #aaa;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background: rgb(250, 222, 14);
    color: #000;
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgb(250, 222, 14);
}

.secondary {
    border: 1px solid #555;
}

.secondary:hover {
    border-color: rgb(250, 222, 14);
    color: rgb(250, 222, 14);
}

.hero-image {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #30343a;
}

.hero-image img {
    height: 500px;
    object-fit: cover;
}
/* ================= TYPING ANIMATION ================= */

#typing {
    color: #ffffff;
    border-right: 3px solid rgb(250, 222, 14);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% {
        border-color: rgb(250, 222, 14);
    }

    51%, 100% {
        border-color: transparent;
    }
}


/* ================= GENERAL SECTIONS ================= */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: clamp(35px, 5vw, 60px);
    line-height: 1.1;
    margin-bottom: 15px;
}

.section-heading > p:last-child {
    color: #999;
}


/* ================= SERVICES ================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #15181c;
    border: 1px solid #292d32;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgb(250, 222, 14);
}

.service-card img {
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.service-card p {
    color: #999;
}

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.3s;
}

.service-card:nth-child(3) {
    transition-delay: 0.5s;
}


/* ================= STATS ================= */

.stats {
    padding: 70px 0;
    background: rgb(250, 222, 14);
    color: #000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats h2 {
    font-size: 55px;
}

.stats p {
    font-weight: bold;
}


/* ================= PORTFOLIO ================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: #15181c;
    border-radius: 20px;
    overflow: hidden;
}

.project-card img {
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-info p {
    color: rgb(250, 222, 14);
    font-size: 13px;
}

.project-info h3 {
    font-size: 25px;
    margin: 8px 0 15px;
}

.project-info a {
    color: #aaa;
}

.project-info a:hover {
    color: rgb(250, 222, 14);
}


/* ================= ABOUT ================= */

.about {
    background: #111419;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
}

.about-content h2 {
    font-size: clamp(35px, 5vw, 60px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-content > p {
    color: #aaa;
    margin-bottom: 15px;
}

.check-list {
    margin: 30px 0;
}

.check-list p {
    margin: 12px 0;
    color: #ddd;
}

/* ================= BLOG ================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    background: #15181c;
    border-radius: 20px;
    overflow: hidden;
}

.blog-card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover img {
    transform: rotate(4deg) scale(1.05);
}

.blog-card div {
    padding: 25px;
}

.blog-card small {
    color: rgb(250, 222, 14);
}

.blog-card h3 {
    font-size: 23px;
    margin: 10px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover h3 {
    color: #999;
    transform: translateX(8px);
}

.blog-card p {
    color: #999;
    margin-bottom: 15px;
}

.blog-card a {
    color: rgb(250, 222, 14);
}

/* ================= CLIENT FEEDBACK ================= */

.testimonial {
    background: #0e1014;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: #171a1f;
    border: 1px solid #292d32;
    padding: 35px;
    border-radius: 25px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgb(250, 222, 14);
    box-shadow: 0 15px 35px rgba(250, 222, 14, 0.10);
}

.stars {
    color: rgb(250, 222, 14);
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-card .quote {
    font-size: 17px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 30px;
}

.testimonial-card .person {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .person img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgb(250, 222, 14);
}

.testimonial-card .person h3 {
    font-size: 17px;
    margin-bottom: 3px;
}

.testimonial-card .person p {
    color: #888;
    font-size: 14px;
}

/* ================= PREMIUM FAQ ================= */

.faq-section {
    background: #0b0d10;
    position: relative;
}


/* FAQ layout */

.faq-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}


/* ================= LEFT SIDE ================= */

.faq-intro {
    position: sticky;
    top: 120px;
}


.faq-intro h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    margin: 15px 0 25px;
}


.faq-intro h2 span {
    color: rgb(250, 222, 14);
    display: block;
}


.faq-intro-text {
    color: #999;
    font-size: 17px;
    line-height: 1.8;
    max-width: 450px;
}


.faq-contact-btn {
    margin-top: 30px;
}


/* Small information box */

.faq-note {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 45px;
    padding-top: 25px;

    border-top: 1px solid #292d32;

    max-width: 450px;
}


.faq-note-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgb(250, 222, 14);
    color: #000;

    font-weight: bold;
    font-size: 20px;

    flex-shrink: 0;
}


.faq-note strong {
    color: #fff;
    font-size: 15px;
}


.faq-note p {
    color: #777;
    font-size: 13px;
    margin-top: 3px;
}


/* ================= FAQ LIST ================= */

.faq-list {
    width: 100%;
}


.premium-faq {
    background: #15181c;

    border: 1px solid #292d32;

    border-radius: 18px;

    margin-bottom: 14px;

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}


.premium-faq:hover {
    border-color: #444;
    transform: translateX(5px);
}


/* Active */

.premium-faq.active {
    border-color: rgb(250, 222, 14);
    background: #171a1f;
}


/* Question */

.premium-faq-question {
    width: 100%;

    padding: 23px 25px;

    background: transparent;
    border: none;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    text-align: left;
}


.faq-question-left {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Number */

.faq-number {
    color: rgb(250, 222, 14);

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 1px;

    min-width: 28px;
}


.faq-question-text {
    font-size: 17px;
    font-weight: 600;

    transition: color 0.3s ease;
}


.premium-faq:hover .faq-question-text {
    color: rgb(250, 222, 14);
}


/* Plus */

.faq-plus {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #3a3d42;
    border-radius: 50%;

    color: #fff;

    font-size: 24px;
    font-weight: 300;

    transition:
        transform 0.4s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;

    flex-shrink: 0;
}


/* Active plus */

.premium-faq.active .faq-plus {
    transform: rotate(45deg);

    background: rgb(250, 222, 14);
    border-color: rgb(250, 222, 14);

    color: #000;
}


/* ================= ANSWER ================= */

.premium-faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.45s ease,
        padding 0.45s ease;
}


.premium-faq-answer p {
    color: #999;

    font-size: 15px;

    line-height: 1.8;

    padding: 0 85px 0 73px;
}


/* Active answer */

.premium-faq.active .premium-faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}


/* ================= FAQ REVEAL ================= */

.faq-list .premium-faq:nth-child(1) {
    transition-delay: 0.05s;
}

.faq-list .premium-faq:nth-child(2) {
    transition-delay: 0.10s;
}

.faq-list .premium-faq:nth-child(3) {
    transition-delay: 0.15s;
}

.faq-list .premium-faq:nth-child(4) {
    transition-delay: 0.20s;
}

.faq-list .premium-faq:nth-child(5) {
    transition-delay: 0.25s;
}

.faq-list .premium-faq:nth-child(6) {
    transition-delay: 0.30s;
}
/* ================= CONTACT ================= */

.contact {
    padding: 100px 0;
    background: rgb(250, 222, 14);
    color: #000;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact h2 {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1;
    max-width: 700px;
    margin-bottom: 20px;
}

.contact p {
    max-width: 650px;
}

.white {
    background: #000;
    color: white;
    white-space: nowrap;
}

/* =====================================================
   AKKISHA INFOTECH PROFESSIONAL FOOTER
===================================================== */

.professional-footer {
    background: #08090b;
    color: #ffffff;
    padding-top: 90px;
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.footer-main {

    display: grid;

    grid-template-columns:
        1.45fr
        0.7fr
        1.35fr;

    gap: 75px;

    padding-bottom: 80px;
}


/* =====================================================
   LOGO
===================================================== */

.footer-logo {

    display: inline-block;

    width: 200px;

    margin-bottom: 30px;
}


.footer-logo img {

    width: 100%;

    height: auto;

    display: block;

    object-fit: contain;
}


/* =====================================================
   TAGLINE
===================================================== */

.footer-tagline {

    max-width: 500px;

    color: #b5b5b5;

    font-size: 20px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {

    width: 100%;

    height: 1px;

    background: #292d32;

    margin-bottom: 35px;
}


/* =====================================================
   CONTACT + OFFICE
===================================================== */

.footer-contact-area {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;
}


.footer-contact h3,
.footer-office h3 {

    font-size: 22px;

    margin-bottom: 25px;
}


.footer-contact p,
.footer-office p {

    color: #999;

    font-size: 17px;

    line-height: 1.8;

    margin: 5px 0;
}


/* =====================================================
   CONTACT ITEMS
===================================================== */

.contact-item {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;
}


.contact-item a {

    color: #aaa;

    font-size: 16px;

    transition: 0.3s ease;
}


.contact-item a:hover {

    color: rgb(250, 222, 14);
}


/* =====================================================
   CONTACT ICON
===================================================== */

.contact-icon {

    width: 38px;

    height: 38px;

    border: 1px solid rgb(250, 222, 14);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: rgb(250, 222, 14);

    font-size: 17px;

    flex-shrink: 0;

    transition: 0.3s ease;
}


.contact-item:hover .contact-icon {

    background: rgb(250, 222, 14);

    color: #000;

    transform: translateY(-3px);
}


/* =====================================================
   QUICK LINKS
===================================================== */

.footer-links h3 {

    font-size: 27px;

    margin-bottom: 15px;
}


.yellow-line {

    width: 52px;

    height: 3px;

    background: rgb(250, 222, 14);

    margin-bottom: 28px;
}


.footer-links a {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #aaa;

    font-size: 17px;

    margin: 19px 0;

    transition: all 0.3s ease;
}


.footer-links a span {

    color: rgb(250, 222, 14);

    font-size: 30px;

    line-height: 15px;

    transition: 0.3s ease;
}


.footer-links a:hover {

    color: rgb(250, 222, 14);

    transform: translateX(6px);
}


.footer-links a:hover span {

    transform: translateX(5px);
}


/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter h2 {

    max-width: 500px;

    font-size: 28px;

    line-height: 1.35;

    margin-bottom: 15px;
}


/* =====================================================
   NEWSLETTER BOX
===================================================== */

.newsletter-box {

    display: flex;

    align-items: center;

    width: 100%;

    background: #16181b;

    border: 1px solid #333;

    border-radius: 16px;

    padding: 8px;

    margin-top: 40px;

    transition: 0.3s ease;
}


.newsletter-box:focus-within {

    border-color: rgb(250, 222, 14);

    box-shadow:
        0 0 0 2px
        rgba(250, 222, 14, 0.08);
}


.newsletter-box input {

    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    background: transparent;

    color: white;

    font-size: 16px;

    padding: 15px;
}


.newsletter-box input::placeholder {

    color: #888;
}


.newsletter-box button {

    border: none;

    background: rgb(250, 222, 14);

    color: #000;

    font-size: 16px;

    font-weight: bold;

    padding: 16px 25px;

    border-radius: 12px;

    cursor: pointer;

    white-space: nowrap;

    transition: all 0.3s ease;
}


.newsletter-box button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(250, 222, 14, 0.25);
}


/* =====================================================
   FOLLOW US
===================================================== */

.follow-title {

    font-size: 23px;

    margin-top: 60px;

    margin-bottom: 18px;
}

/* =====================================================
   SOCIAL ICONS
   AKKISHA INFOTECH
===================================================== */

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}


/* ================= SOCIAL BOX ================= */

.social-icons a {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #08090b;

    border: 1px solid #292d32;

    border-radius: 12px;

    color: #b5b5b5;

    font-size: 21px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* ================= ICON ================= */

.social-icons a i {
    display: block;

    transition: transform 0.3s ease;
}


/* ================= HOVER ================= */

.social-icons a:hover {
    background: #111315;

    color: #FADE0E;

    border-color: #FADE0E;

    transform: translateY(-5px);

    box-shadow:
        0 8px 25px rgba(250, 222, 14, 0.12);
}


.social-icons a:hover i {
    transform: scale(1.12);
}


/* =====================================================
   FACEBOOK
===================================================== */

.social-facebook:hover {
    color: #1877F2 !important;
    border-color: #1877F2 !important;

    box-shadow:
        0 8px 25px rgba(24, 119, 242, 0.15) !important;
}


/* =====================================================
   INSTAGRAM
===================================================== */

.social-instagram:hover {
    color: #E4405F !important;
    border-color: #E4405F !important;

    box-shadow:
        0 8px 25px rgba(228, 64, 95, 0.15) !important;
}


/* =====================================================
   LINKEDIN
===================================================== */

.social-linkedin:hover {
    color: #0A66C2 !important;
    border-color: #0A66C2 !important;

    box-shadow:
        0 8px 25px rgba(10, 102, 194, 0.15) !important;
}


/* =====================================================
   X
===================================================== */

.social-x:hover {
    color: #ffffff !important;
    border-color: #ffffff !important;

    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.10) !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 52px;
        height: 52px;

        border-radius: 11px;

        font-size: 19px;
    }

}


/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {

    border-top: 1px solid #292d32;

    padding: 28px 0;
}


.footer-bottom-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}


.footer-bottom p {

    color: #888;

    font-size: 15px;
}


.footer-bottom p span {

    color: rgb(250, 222, 14);
}


.footer-policy {

    display: flex;

    gap: 30px;
}


.footer-policy a {

    color: #888;

    font-size: 15px;

    transition: 0.3s ease;
}


.footer-policy a:hover {

    color: rgb(250, 222, 14);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .footer-main {

        grid-template-columns:
            1fr
            1fr;

        gap: 60px;
    }


    .footer-brand {

        grid-column: 1 / -1;
    }


    .footer-newsletter {

        grid-column: 1 / -1;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .professional-footer {

        padding-top: 60px;
    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 50px;

        padding-bottom: 55px;
    }


    .footer-brand,
    .footer-newsletter {

        grid-column: auto;
    }


    .footer-logo {

        width: 200px;
    }


    .footer-tagline {

        font-size: 17px;
    }


    .footer-contact-area {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .footer-links h3 {

        font-size: 24px;
    }


    .footer-newsletter h2 {

        font-size: 24px;
    }


    .newsletter-box {

        flex-direction: column;

        align-items: stretch;

        padding: 8px;
    }


    .newsletter-box input {

        width: 100%;

        padding: 15px;
    }


    .newsletter-box button {

        width: 100%;
    }


    .footer-bottom-content {

        flex-direction: column;

        text-align: center;
    }


    .footer-policy {

        flex-direction: column;

        gap: 10px;

        align-items: center;
    }

}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
	
	/* FAQ */

.faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
}

.faq-intro {
    position: static;
}

.faq-intro h2 {
    font-size: 48px;
}

.faq-intro-text {
    max-width: 650px;
}

.faq-note {
    max-width: 650px;
}

.premium-faq:hover {
    transform: none;
}

    .testimonial-grid {
		   grid-template-columns: 1fr 1fr;
			 
		}

    .nav,
    .nav-button {
        display: none;
    }

    .menu-btn {
        display: block;
        cursor: pointer;
    }

    .nav.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 25px;
        background: #0b0d10;
        flex-direction: column;
        border-top: 1px solid #222;
    }

    .hero-content,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-image {
        order: -1;
    }

    .services-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {
	
	  .faq-intro h2 {
    font-size: 42px;
}

.premium-faq-question {
    padding: 20px;
}

.faq-question-left {
    gap: 12px;
}

.faq-number {
    min-width: 25px;
}

.faq-question-text {
    font-size: 15px;
    line-height: 1.4;
}

.faq-plus {
    width: 32px;
    height: 32px;
    font-size: 20px;
}

.premium-faq-answer p {
    padding: 0 20px 0 57px;
    font-size: 14px;
}

    .testimonial-grid {
		   grid-template-columns: 1fr;
			 
		}

    .section {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero h2 {
        font-size: 23px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .services-grid,
    .portfolio-grid,
    .blog-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        height: 350px;
    }

    .about-image img {
        height: 400px;
    }

}
  /* ================= ANIMATIONS ================= */

/* Hero text animation */
.hero-text {
    animation: fadeLeft 1s ease forwards;
}

/* Hero image animation */
.hero-image {
    animation: fadeRight 1s ease forwards;
}

/* Floating hero image */
.hero-image img {
    animation: floating 4s ease-in-out infinite;
}


/* Fade from left */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Fade from right */
@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Floating image */
@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


/* Service cards animation */
.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgb(250, 222, 14);
    box-shadow: 0 15px 30px rgba(200, 255, 0, 0.12);
}


/* Service image zoom */
.service-card img {
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}


/* About image hover */
.about-image {
    overflow: hidden;
    border-radius: 25px;
}

.about-image img {
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}


/* Button animation */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-4px);
}


/* Navigation animation */
.nav a {
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: rgb(250, 222, 14);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}


/* Stats hover */
.stats-grid > div {
    transition: transform 0.3s ease;
}

.stats-grid > div:hover {
    transform: translateY(-8px);
}


/* Testimonial animation */
.testimonial-box {
    transition: all 0.4s ease;
}

.testimonial-box:hover {
    transform: translateY(-8px);
    border-color: rgb(250, 222, 14);
}


/* Contact button animation */
.white:hover {
    transform: translateY(-5px) scale(1.05);
}


/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
