/* ---------- GLOBAL ---------- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    will-change: scroll-position;
}
body {
    background: radial-gradient(circle at top right, #0a0a0a, #050505);
    color: #fff;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
/* ---------- NAVBAR ---------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}
.logo {
    background-size: contain;
    background-repeat: no-repeat;
    height: 35px;
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    position: relative;
    font-weight: 500;
    color: #00bcd4;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #00bcd4;
    transition: 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
/* ----------Nav Bar MOBILE MENU ---------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.bar {
    height: 3px;
    width: 25px;
    background: #00bcd4;
    margin: 4px 0;
    transition: 0.4s;
}
.company{
    color: #00bcd4;
    font-style: italic;
}
/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.75);
    background-blend-mode: darken;
}
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 90%;
    min-height: 90%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    filter: brightness(70%); /* lowers video brightness so text is visible */
}
.hero-tag h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, #00ffff, #00bcd4, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideIn 1.5s ease forwards;
}
.hero-tag p {
    max-width: 600px;
    font-size: 1.1rem;
    margin-top: 1rem;
    color: #ddd;
    opacity: 0;
    animation: fadeIn 2s ease forwards 1s;
}
/* HERO CAROUSEL */
.hero-tag {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-tag.active {
    opacity: 1;
    pointer-events: auto;
}
.btn-primary {
    margin-top: 2rem;
    background: #00bcd4;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s;
    opacity: 0;
    animation: fadeInUp 2s ease forwards 1.5s;
}
.btn-primary:hover {
    background: #00ffff;
    box-shadow: 0 0 20px #00bcd4;
    color: #ff9800;
    transform: translateY(-3px);
}
/* ---------- BACKGROUND ANIMATION ---------- */
.floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.floating-circles span {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background-color: #0077ff90;
    border-radius: 50%;
    animation: moveUp 10s linear infinite;
    bottom: -50px;
}
.floating-circles span:nth-child(1) {     left: 10%;     animation-delay: 0s; }
.floating-circles span:nth-child(2) {     left: 25%;     width: 25px;     height: 25px;     animation-delay: 1s; }
.floating-circles span:nth-child(3) {     left: 50%;     animation-delay: 2s; }
.floating-circles span:nth-child(4) {     left: 70%;     width: 50px;     height: 50px;     animation-delay: 2s; }
.floating-circles span:nth-child(5) {     left: 90%;     animation-delay: 1s; }
.floating-circles span:nth-child(6) {     left: 90%;     animation-delay: 0s; }
.floating-circles span:nth-child(7) {     left: 70%;     width: 25px;     height: 25px;     animation-delay: 6s; }
.floating-circles span:nth-child(8) {     left: 50%;     animation-delay: 7s; }
.floating-circles span:nth-child(9) {     left: 25%;     width: 50px;     height: 50px;     animation-delay: 8s; }
.floating-circles span:nth-child(10){     left: 10%;     animation-delay: 9s; }
.floating-circles span:nth-child(11){     right: 10%;     animation-delay: 10s; }
.floating-circles span:nth-child(12){     right: 25%;     width: 25px;     height: 25px;     animation-delay: 11s; }
.floating-circles span:nth-child(13){     right: 50%;     animation-delay: 12s; }
.floating-circles span:nth-child(14){     right: 75%;     width: 50px;     height: 50px;     animation-delay: 13s; }
.floating-circles span:nth-child(15){     right: 90%;     animation-delay: 14s; }
.floating-circles span:nth-child(16){     right: 90%;     animation-delay: 15s; }
.floating-circles span:nth-child(17){     right: 70%;     width: 25px;     height: 25px;     animation-delay: 16s; }
.floating-circles span:nth-child(18){     right: 50%;     animation-delay: 17s; }
.floating-circles span:nth-child(19){     right: 25%;     width: 50px;     height: 50px;     animation-delay: 18s; }
.floating-circles span:nth-child(20){     right: 10%;     animation-delay: 19s; }
/* ---------- ABOUT SECTION ---------- */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a, #050505);
    color: #fff;
    overflow: hidden;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text {
    flex: 1 1 500px;
    animation: fadeLeft 1.5s ease forwards;
}
/* for all section titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
    animation: fadeDown 1s ease-in-out;
}
.section-title span {
    color: #00bcd4;
    text-shadow: 0 0 15px #00bcd4;
}
.about-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeRight 1.5s ease forwards;
}
.about-image img {
    width: 90%;
    max-width: 400px;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.about-image img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}
.about-intro {
    font-size: 1rem;
    color: #ccc;
    margin: 1rem 0 2rem;
    line-height: 1.6;
}
.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}
.about-card h3 {
    color: #00ffff;
    margin-bottom: 0.6rem;
}
.about-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}
.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
    border-color: #00ffff;
}
/* ---------- SERVICES SECTION ---------- */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #050505, #0a0a0a);
    text-align: center;
    overflow: hidden;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
    animation: fadeDown 1s ease-in-out;
}
.section-title span {
    color: #00bcd4;
    text-shadow: 0 0 15px #00bcd4;
}
.section-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.8;
    animation: fadeIn 1.5s ease-in-out;
}
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}
.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
}
.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: #fff;
}
.service-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
    border-color: #00ffff;
}
/* glowing background animation for hover */
.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg, transparent, #00ffff, transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: 0.4s;
}
.service-card:hover::before {
    opacity: 0.3;
}
/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials {
    padding: 6rem 2rem;
    text-align: center;
    background: #050505;
    position: relative;
    overflow: hidden;
    height: 90vh;
    background: rgba(0, 0, 0, 0.75) url(./WhatsApp.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-blend-mode: darken;
}
.testimonial-slider {
    max-width: 800px;
    margin: 3rem auto 2rem;
    position: relative;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    color: #fff;
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    box-shadow: 0 0 25px rgba(0,255,255,0.1);
    transition: all 0.6s ease;
}
.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}
.testimonial-card .message {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #e6ffff;
}
.testimonial-card h3 {
    color: #00ffff;
    margin-bottom: 0.3rem;
}
.testimonial-card .role {
    color: #aaa;
    font-size: 0.9rem;
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.2rem;
}
.slider-controls .dot {
    width: 10px;
    height: 10px;
    background: #00ffff;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s ease;
}
.slider-controls .dot.active {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 10px #00ffff;
}
/* ---------- TRAINING SECTION ---------- */
.training {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #050505, #0a0a0a);
    text-align: center;
    overflow: hidden;
}
.training-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.training-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.training-card .icon {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 1rem;
    color: #00ffff;
}
.training-card>.icon>marquee{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.training-card>.icon>marquee>img{
    height: 80%;
    width: 40px;
    border-radius: 10px;
    margin-right: 10px;
}
.training-card>.icon>marquee>svg{
    height: 30px;
}
.training-card h3 {
    color: #fff;
    margin-bottom: 0.8rem;
}
.training-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.enroll-btn {
    background: #00bcd4;
    color: #fff;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}
.enroll-btn:hover {
    background: #00ffff;
    box-shadow: 0 0 20px #00ffff;
    transform: translateY(-3px);
}
.training-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.75) url(./WhatsApp.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-blend-mode: darken;
}
.training-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #00ffff, transparent 30%);
    animation: rotate 5s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}
.training-card:hover::before {
    opacity: 0.3;
}
/* PORTFOLIO SECTION */
.portfolio-section {
    padding: 80px 0;
    background: #111;
    text-align: center;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 40px;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    transition: 0.4s;
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
    backdrop-filter: blur(3px);
}
.portfolio-item:hover img {
    transform: scale(1.1);
    filter: brightness(40%);
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
/* TEAM SECTION */
.team-section {
    padding: 80px 0;
    text-align: center;
    background: #0e0e0e; 
}
.section-title {
    font-size: 40px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 700;
}
.team-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.team-card {
    position: relative;
    width: 280px;
    height: 340px;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: 0.4s;
}
.team-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.4s;
    border-radius: 18px;
}
.team-card:hover img {
    transform: scale(1.1);
    filter: brightness(40%);
}
.team-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.team-card:hover .team-info {
    height: 100%;
    opacity: 1;
}
.team-info h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}
.team-info p {
    font-size: 16px;
    margin-top: 5px;
    opacity: 0.8;
}
/* PRICING SECTION */
.pricing-section {
    padding: 80px 0;
    background: #0d0d0d;
    text-align: center;
    background: rgba(0, 0, 0, 0.85) url(./CompanyLogo.PNG);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-blend-mode: darken;
}
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.price-card {
    width: 300px;
    padding: 25px;
    border-radius: 18px;
    color: #fff;
    transition: 0.4s;
    border: 1px solid #333;
    background: rgba(0, 0, 0, 0.75) url(./WhatsApp.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-blend-mode: darken;
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.75);

}
.price-card.popular {
    border: 2px solid #00ffff;
    box-shadow: 0 0 25px rgba(255, 152, 0, 0.4);
}
.price {
    font-size: 32px;
    margin: 15px 0;
    color: #00ffff;
}
.price-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.price-card ul li {
    margin: 8px 0;
    opacity: 0.8;
}
.price-btn {
    width: 100%;
    padding: 10px;
    background: #00ffff;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.price-btn:hover {
    background: #ffa726;
}
/*FAQ Section*/
.faq-section {
    padding: 90px 20px;
    background: #0c0c0c;
    color: #fff;
    text-align: center;
}
.faq-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 50px;
}
.faq-container {
    max-width: 900px;
    margin: auto;
}
.faq-item {
    background: #141414;
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 20px;
    border: 1px solid #222;
    transition: 0.3s;
}
.faq-item:hover {
    border-color: #4c4cff;
    box-shadow: 0 0 20px rgba(76, 76, 255, 0.4);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question h3 {
    font-size: 20px;
    margin: 0;
    text-align: left;
}
.faq-icon {
    font-size: 28px;
    font-weight: bold;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    text-align: left;
    margin-top: 10px;
}
.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
/* ---------- CONTACT SECTION ---------- */
.contact {
    padding: 6rem 2rem;
    background: radial-gradient(circle at top, #050505, #0a0a0a 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 3rem;
}
.contact-form, .contact-info {
    flex: 1 1 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75) url(./WhatsApp.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-blend-mode: darken;
}
.contact-form:hover, .contact-info:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}
.contact-form input,.contact-form textarea {
    margin-bottom: 1.2rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    background: transparent;
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s;
}
.contact-form input:focus,.contact-form textarea:focus {
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    outline: none;
}
.send-btn {
    background: linear-gradient(90deg, #00bcd4, #00ffff);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.send-btn:hover {
    box-shadow: 0 0 20px #00ffff;
    transform: translateY(-3px);
}
.contact-info h3 {
    color: #00ffff;
    margin-bottom: 1rem;
}
.contact-info p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}
.social-icons {
    margin-top: 1.5rem;
}
.social-icons a {
    display: inline-block;
    margin: 0 0.5rem;
    color: #00ffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00ffff;
}
/* Background floating glow orbs */
.contact::before, .contact::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,255,0.2), transparent 70%);
    animation: float 8s infinite ease-in-out alternate;
}
.contact::before {
    width: 200px; 
    height: 200px;
    top: 20%; 
    left: 10%;
}
.contact::after {
    width: 300px; 
    height: 300px;
    bottom: 10%; 
    right: 15%;
}
/* ---------- FOOTER SECTION ---------- */
.footer {
    background: linear-gradient(180deg, #040404, #000);
    padding: 3rem 1.5rem 1rem;
    color: #ccc;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0,255,255,0.1), transparent 30%);
    animation: rotate 12s linear infinite;
    opacity: 0.3;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
    position: relative;
}
.footer-brand h2 {
    color: #00ffff;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-brand h2 span {
    color: #fff;
}
.footer-brand p {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 0.4rem;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}
.footer-social a {
    display: inline-block;
    margin: 0 0.5rem;
    color: #00ffff;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    color: #fff;
    transform: translateY(-3px);
    text-shadow: 0 0 10px #00ffff;
}
.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(0,255,255,0.1);
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #888;
}
/* ---------- FLOATING ACTION BUTTONS ---------- */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,255,255,0.3);
    transition: all 0.3s ease;
    position: relative;
    border: none;
    outline: none;
}
.fab-btn.whatsapp {
    background: #25d366;
}
.fab-btn.call {
    background: #00bcd4;
}
.fab-btn.top {
    background: #111;
    border: 1px solid #00ffff;
}
.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0,255,255,0.6);
}
/* Glowing pulse animation */
.fab-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    background: rgba(0,255,255,0.2);
    animation: pulse 2s infinite;
    z-index: -1;
}
/* Hide scroll-to-top initially */
#scrollTopBtn {
display: none;
}
/* Key Frames */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes moveUp {
    0% {transform: translateY(0) scale(1);opacity: 1;}
    100% {transform: translateY(-1200px) scale(0.5);opacity: 0;}
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes rotate {
    100% { transform: rotate(360deg); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
/* fade in animation on scroll */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(50px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    from { transform: translateY(0); opacity: 0.5; }
    to { transform: translateY(-30px); opacity: 1; }
}
@keyframes pulse {
    0% {transform: scale(1); opacity: 0.6;}
    70% {transform: scale(1.8); opacity: 0;}
    100% {opacity: 0;}
}
/* Responsive CSS */
/* Nav Bar */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0vh;
        right: -100%;
        height: 10vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        align-items: center;
        justify-content: center;
        transition: right 0.5s ease;
        display: grid;
        grid-template-columns: auto auto auto auto auto;
        grid-template-rows: 10px;
        gap: 1rem;
        padding-top: 5vh;
        font-size: 15px;
    }
    .nav-links.active {
        right: 0;
    }
    .menu-toggle {
        display: flex;
        margin-left: 10px;
    }
}
/* Hero Section */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}
/* Testimonial Section */
@media(max-width: 600px) {
    .testimonial-card {
        padding: 1.8rem;
    }
}
/* Responsive positioning */
@media (max-width: 600px) {
    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    .fab-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}