@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,300;1,400;1,500&display=swap');

:root {
    --primary-orange: #E67E22;
    --dark-black: #1a1a1a;
    --light-white: #f8f9fa;
    --secondary-orange: #D67015;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.2);
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .2s ease-in-out;
    text-decoration: none;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    color: var(--text-dark);
}

.heading, .clients .section-header h2, .section-head h1, .testimonials .section-header h2, .section-head-1 h4{
    margin: 2rem;
    padding-top: 3rem;
    display: inline-block;
    font-size: 3.5rem;
    color: var(--primary-orange);
    position: relative;
    letter-spacing: 0.1rem;
    font-weight: 700;
    text-transform: capitalize;
}

.heading::before, .heading::after, .clients .section-header h2::before, .clients .section-header h2::after, .section-head h1::before, .section-head h1::after, .testimonials .section-header h2::before, .testimonials .section-header h2::after, .section-head-1 h4::before, .section-head-1 h4::after{
    content: '';
    position: absolute;
    height: 2rem;
    width: 2rem;
    border-top: 3px solid var(--primary-orange);
    border-left: 3px solid var(--primary-orange);
}

.faq .heading::before, .faq .heading::after{
    border-top: 3px solid var(--primary-orange);
    border-left: 3px solid var(--primary-orange);
}

.heading::before, .clients .section-header h2::before, .section-head h1::before, .testimonials .section-header h2::before, .section-head-1 h4::before{
    top: 4.8rem;
    left: -1.5rem;
}

.heading::after, .clients .section-header h2::after, .section-head h1::after, .testimonials .section-header h2::after, .section-head-1 h4::after{
    bottom: -0.5rem;
    right: -1.5rem;
    transform: rotate(180deg);
}

.row .btn{
    outline: none;
    border: none;
    border-radius: 5rem;
    background: var(--primary-orange);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    padding: 1rem 3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.communicate .btn{
    outline: none;
    border: none;
    border-radius: 5rem;
    background: var(--primary-orange);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    padding: 1rem 3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.row .btn:hover{
    background: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.communicate .btn:hover{
    background: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.header.scrolled {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.orange_title {
    color: var(--primary-orange);
    font-weight: 700;
}

.header .logo img{
    width: 130%;
    height: 3rem;
    object-fit: contain;
}

.header .navbar ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.header .navbar ul li{
    position: relative;
}

.header .navbar ul li a{
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
    color: inherit;
}

.header .navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease-in-out;
}

.header .navbar ul li a:hover::after {
    width: 100%;
}

.header .fa-bars{
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    display: none;
    transition: color 0.3s ease;
}


.home{
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

.home h1{
    color: #fff;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 2rem 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.home h3 {
    color: var(--primary-orange);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
}

.home p{
    color: #fff;
    font-size: 1.8rem;
    max-width: 600px;
    margin: 2rem auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.home .wave{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 11rem;
    width: 100%;
    background: url(../images/wave.png);
    background-size: 100rem 11rem;
    animation: waves 8s linear infinite;
    background-repeat: repeat-x;
}

.home .wave2{
    animation-direction: reverse;
    animation-duration: 6s;
    opacity: .3;
}

.home .wave3{
    animation-duration: 4s;
    opacity: .5;
}

.home .video-bg{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 5rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--secondary-orange);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background: var(--light-white);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

@keyframes waves{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 100rem;
    }
}


.about{
    min-height: 60vh;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    background: white;
}

.about .row{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about .row .content{
    text-align: center;
}

.about .row .content h3{
    font-size: 3rem;
    color: var(--dark-black);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about .row .content p{
    font-size: 1.6rem;
    color: var(--text-light);
    padding: 1rem 0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}
.pt-5 .container .row .section-head p{
    font-size: 1.6rem;
    color: var(--text-light);
    padding: 1rem 0;
    line-height: 1.8;
}

.section-head{
    margin-bottom: 4rem;
    text-align: center;
    margin-top: 0;
}

.section-head h1 {
    font-size: 3.5rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.section-head p{
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 2rem auto;
}

.item{
    background: white;
    text-align: center;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-white);
    transition: left 0.3s ease-in-out;
    z-index: -1;
}

.item:hover::before {
    left: 0;
}

.item:hover{
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.item h6{
    font-size: 1.8rem;
    color: var(--dark-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.item:hover h6,
.item:hover p{
    color: var(--primary-orange);
}

.item .icon{
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    width: 8rem;
    height: 8rem;
    line-height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.item .feature_box_col_one{
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.item .feature_box_col_two{
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.item .feature_box_col_three{
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.item .feature_box_col_four{
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.item .feature_box_col_five{
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.item .feature_box_col_six{
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.item p{
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}   

.counters {
    background: linear-gradient(135deg, var(--dark-black), #2a2a2a);
    color: #fff;
    padding: 4rem 2rem;
}

.counters .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 3rem;
    text-align: center;
}

.counter-box {
    padding: 2rem;
}

.counter-box i {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    display: block;
}

.counter-box .counter {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--primary-orange);
}

.counter-box h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .counters .container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
    }
}

.section-head-1{
    margin-bottom: 60px;
    background-size: 200%;
    background-position: left;
}

.section-head-1 p{
    color: #333;
    font-size: 2rem;
    line-height: 1.6;
    text-align: center;
}


.communicate{
    text-align: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: #fff;
    min-height: 35vh;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.communicate::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.communicate h3{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.communicate p{
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonials {
    position: relative;
    padding: 90px 0 60px 0;
    background: #f2f2f2;
}

.testimonials .testimonial-item {
    position: relative;
    margin: 0 15px 30px 15px;
    background: #ffffff;
}

.testimonials .testimonial-img {
    position: relative;
    background: #000000;
    overflow: hidden;
}

.testimonials .testimonial-text {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
}

.testimonials .testimonial-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials .testimonial-text h4 {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.testimonials .testimonial-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dddddd;
}

.testimonials .owl-dot.active {
    background-color: #4F84C4;
}

@media (max-width: 575px) {
    .testimonials .testimonial-text {
        padding: 25px;
    }
}

.clients {
    position: relative;
    padding: 90px 0;
    text-align: center;
    margin-top: -10rem;
    margin-bottom: -10rem;
}

.clients .section-header p {
    padding-bottom: 10px;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}

.clients img {
    max-width: 100%;
    opacity: 1;
    transition: 0.3s;
    padding: 15px 0;
}

.clients img:hover {
    opacity: .5;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.clients .owl-dot.active {
    background-color: #4F84C4;
}    

.team{
    min-width: 100%;
    min-height: 95vh;
    text-align: center;
    background-color: var(--light-white);
    padding: 4rem 2rem;
}

.team .heading{
    color: var(--primary-orange);
}

.team .heading::before, .team .heading::after{
    border-color: var(--primary-orange);
}

.team .row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.team .row .card{
    height: auto;
    width: 100%;
    max-width: 280px;
    background-color: #fff;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease-in-out;
}

.team .row .card:hover{
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.team .row .card .image{
    margin: 0 0 1.5rem 0;
}

.team .row .card .image img{
    height: 12rem;
    width: 12rem;
    border-radius: 50%;
    border: 4px solid var(--primary-orange);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.team .row .card .info h3{
    font-size: 1.8rem;
    color: var(--dark-black);
    margin: 1rem 0;
    font-weight: 700;
}

.team .row .card .info span{
    font-size: 1.4rem;
    color: var(--primary-orange);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.team .row .card .info .icons {
    margin-top: 1.5rem;
}

.team .row .card .info .icons a{
    padding: 0.8rem;
    font-size: 1.8rem;
    color: var(--dark-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.team .row .card .info .icons .fa-facebook-f:hover, .footer .icons .fa-facebook-f:hover{
    color: #4267B2;
}

.team .row .card .info .icons .fa-twitter:hover, .footer .icons .fa-twitter:hover{
    color: #1DA1F2;
}

.team .row .card .info .icons .fa-instagram:hover, .footer .icons .fa-instagram:hover{
    color: #C13584;
}

.team .row .card .info .icons .fa-linkedin:hover, .footer .icons .fa-linkedin:hover{
    color: #2867B2;
}

.contact{
    text-align: center;
    align-items: center;
    padding: 4rem 2rem;
    background: white;
}

.contact .heading{
    margin-bottom: 3rem;
}

.contact-in {
    width: 90%;
    max-width: 1000px;
    height: auto;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    border-radius: 1.5rem;
    background: white;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-map {
    width: 100%;
    height: 400px;
    flex: 50%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-form {
    width: 100%;
    height: auto;
    flex: 50%;
    text-align: left;
    padding: 3rem 2rem;
}

.contact-form-txt,
.contact-form-email,
.contact-form-phone,
.contact-form-txtarea {
    width: 100%;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    border-radius: 0.8rem;
    outline: none;
    margin-bottom: 1.5rem;
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.contact-form-txt:focus,
.contact-form-email:focus,
.contact-form-phone:focus,
.contact-form-txtarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.contact-form-txt::placeholder,
.contact-form-email::placeholder,
.contact-form-phone::placeholder,
.contact-form-txtarea::placeholder {
    color: #aaa;
}

.contact-form-txtarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-btn {
    outline: none;
    border: none;
    border-radius: 0.8rem;
    background: var(--primary-orange);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    padding: 1.2rem 2rem;
    width: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.contact-form-btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

        .footer {
    position: relative;
    padding: 0 0 2rem 0;
    background: var(--dark-black);
}

.footer .footer-top {
    background: linear-gradient(135deg, var(--dark-black), #0a0a0a);
    padding: 4rem 2rem 2rem;
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
    margin-bottom: 2rem;
}

.footer .footer-top .social-links a {
    font-size: 1.8rem;
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    line-height: 1;
    padding: 0.8rem;
    margin-right: 0.5rem;
    text-align: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer .footer-top .social-links a:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer .footer-top h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05rem;
}

.footer .footer-top h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background-color: var(--primary-orange);
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 0.8rem;
    color: var(--primary-orange);
    font-size: 1.4rem;
}

.footer .footer-top .footer-links ul li {
    padding: 0.7rem 0;
    transition: all 0.3s ease;
}

.footer .footer-top .footer-links ul li:hover {
    padding-left: 0.5rem;
}

.footer .footer-top .footer-links ul a {
    font-size: 1.4rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.footer .footer-top .footer-links ul a:hover {
    color: var(--primary-orange);
}

.footer .footer-top .footer-contact p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.4rem;
}

.footer .footer-top .footer-newsletter input[type="email"] {
    padding: 0.8rem;
    width: 60%;
    border: 2px solid var(--primary-orange);
    background: transparent;
    color: #ffffff;
    border-radius: 0.5rem;
    font-size: 1.4rem;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
    border: 0;
    width: 40%;
    padding: 0.8rem;
    text-align: center;
    color: white;
    border: 2px solid var(--primary-orange);
    background: var(--primary-orange);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0.5rem;
    font-weight: 600;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
    color: var(--primary-orange);
    background: transparent;
    letter-spacing: 0.1rem;
}

.footer .footer-top .footer-newsletter p {
    color: #ccc;
    font-size: 1.4rem;
    margin-top: 1rem;
}

.footer .credit,
.footer .copyright {
    text-align: center;
    padding: 1.5rem 0;
    color: #aaa;
    font-size: 1.4rem;
    border-top: 1px solid #333;
}

.back-to-top {
    position: fixed;
    display: none;
    background-color: var(--primary-orange);
    color: #ffffff;
    width: 4.5rem;
    height: 4.5rem;
    text-align: center;
    line-height: 1;
    font-size: 2rem;
    right: 1.5rem;
    bottom: 1.5rem;
    transition: all 0.3s ease;
    z-index: 999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.4);
}

        .faq{
            min-height: 70vh;
    width: 100%;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--light-white), white);
}

.faq .row{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq .row .accordion-container{
    width: 100%;
    text-align: left;
}

.faq .row .accordion{
    margin-bottom: 1rem;
}

.faq .row .accordion-container .accordion .accordion-header{
    background: white;
    margin: 1rem 0;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq .row .accordion-container .accordion .accordion-header:hover {
    box-shadow: var(--shadow-lg);
    background: var(--light-white);
}

.faq .row .accordion-container .accordion .accordion-header span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    font-size: 1.8rem;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq .row .accordion-container .accordion .accordion-header h3{
    display: inline;
    color: var(--dark-black);
    font-weight: 600;
    padding: 0;
    font-size: 1.6rem;
    margin: 0;
}

.faq .row .accordion-container .accordion .accordion-body{
    padding: 1.5rem;
    color: var(--text-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background-color: #f0f0f0;
    font-size: 1.4rem;
    display: none;
    margin: 0 0 0.5rem 0;
    border-radius: 0.8rem;
    margin-left: 1rem;
    line-height: 1.8;
}

@media (max-width: 1200px){
    .faq{
        min-height: auto;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    html {
        font-size: 57.5%;
    }
    
    .home h1 {
        font-size: 3.5rem;
    }
    
    .contact-map {
        flex: 100%;
        height: 300px;
    }
    
    .contact-form {
        flex: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 0.8rem 1rem;
    }

    .header .logo img{
        width: 100%;
        height: 2.5rem;
    }
 
    .header .fa-bars{
        display: block;
        color: white;
    }

    .header.scrolled .fa-bars {
        color: var(--primary-orange);
    }

    .header .navbar{
        position: fixed;
        top: -100%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: white;
        z-index: 999;
        transition: top 0.3s ease-in-out;
        box-shadow: var(--shadow-lg);
    }

    .header .navbar.nav-toggle {
        top: 5rem;
    }

    .header .navbar ul{
        height: 100%;
        width: 100%;
        flex-direction: column;
        padding: 2rem 0;
    }

    .header .navbar ul li {
        margin: 0.5rem 0;
    }

    .header .navbar ul li a {
        font-size: 1.6rem;
        padding: 0 2rem;
        display: block;
    }

    .header .fa-times{
        transform: rotate(90deg);
    }

    .home {
        margin-top: 6rem;
        min-height: 80vh;
    }

    .home h1{
        font-size: 2.8rem;
    }

    .home h3 {
        font-size: 1.5rem;
    }
    
    .home p{
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .about {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .about .row .content h3{
        font-size: 2.2rem;
    }
    
    .about .row .content p{
        font-size: 1.4rem;
    }

    .section-head h1 {
        font-size: 2.5rem;
    }

    .section-head p {
        font-size: 1.4rem;
    }

    .item {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .item h6 {
        font-size: 1.6rem;
    }

    .item p {
        font-size: 1.3rem;
    }

    .item .icon {
        font-size: 3rem;
        width: 7rem;
        height: 7rem;
        line-height: 7rem;
    }

    .counters {
        padding: 3rem 1rem;
    }

    .counters .container {
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
    }

    .counter-box .counter {
        font-size: 2.5rem;
    }

    .counter-box h3 {
        font-size: 1.4rem;
    }

    .communicate {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .communicate h3 {
        font-size: 2rem;
    }

    .communicate p {
        font-size: 1.4rem;
    }

    .team {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .team .row {
        gap: 1.5rem;
    }

    .team .row .card {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .team .row .card .image img {
        height: 10rem;
        width: 10rem;
    }

    .team .row .card .info h3 {
        font-size: 1.6rem;
    }

    .contact {
        padding: 3rem 1rem;
    }

    .contact-in {
        width: 100%;
        max-width: 100%;
        border-radius: 1rem;
    }

    .contact-map {
        flex: 100%;
        height: 250px;
    }

    .contact-form {
        flex: 100%;
        padding: 2rem 1.5rem;
    }

    .contact-form-txt,
    .contact-form-email,
    .contact-form-phone,
    .contact-form-txtarea {
        margin-bottom: 1rem;
    }

    .faq {
        padding: 3rem 1rem;
    }

    .faq .row {
        flex-direction: column;
    }

    .faq .row .accordion-container {
        width: 100%;
    }

    .footer .footer-top {
        padding: 3rem 1rem;
    }

    .footer .footer-top .footer-info,
    .footer .footer-top .footer-links,
    .footer .footer-top .footer-contact,
    .footer .footer-top .footer-newsletter {
        text-align: center;
        margin-bottom: 2rem;
    }

    .back-to-top {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }

    .heading, .clients .section-header h2, .section-head h1, .testimonials .section-header h2, .section-head-1 h4 {
        font-size: 2.5rem;
        margin: 1rem;
        padding-top: 2rem;
    }

    .home {
        padding: 0 1rem;
        min-height: 70vh;
    }

    .home h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .home h3 {
        font-size: 1.2rem;
    }

    .home p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
    }

    .about .row .content h3 {
        font-size: 1.8rem;
    }

    .about .row .content p {
        font-size: 1.2rem;
    }

    .section-head h1 {
        font-size: 2rem;
    }

    .section-head p {
        font-size: 1.2rem;
    }

    .item {
        padding: 1.5rem;
    }

    .item h6 {
        font-size: 1.4rem;
    }

    .item p {
        font-size: 1.1rem;
    }

    .counters .container {
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
    }

    .counter-box {
        padding: 1.5rem;
    }

    .counter-box i {
        font-size: 2.5rem;
    }

    .counter-box .counter {
        font-size: 2rem;
    }

    .counter-box h3 {
        font-size: 1.2rem;
    }

    .communicate h3 {
        font-size: 1.6rem;
    }

    .communicate p {
        font-size: 1.2rem;
    }

    .team .row .card {
        padding: 1.5rem;
    }

    .team .row .card .image img {
        height: 8rem;
        width: 8rem;
    }

    .team .row .card .info h3 {
        font-size: 1.4rem;
    }

    .team .row .card .info span {
        font-size: 1.2rem;
    }

    .contact-in {
        flex-direction: column;
    }

    .contact-map {
        height: 200px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form-txt,
    .contact-form-email,
    .contact-form-phone,
    .contact-form-txtarea {
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .contact-form-btn {
        padding: 1rem;
        font-size: 1.2rem;
    }

    .faq .row .accordion-container .accordion .accordion-header {
        padding: 1rem;
    }

    .faq .row .accordion-container .accordion .accordion-header span {
        height: 2.5rem;
        width: 2.5rem;
        line-height: 2.5rem;
        font-size: 1.4rem;
        margin-right: 1rem;
    }

    .faq .row .accordion-container .accordion .accordion-header h3 {
        font-size: 1.3rem;
    }

    .faq .row .accordion-container .accordion .accordion-body {
        padding: 1rem;
        font-size: 1.2rem;
    }

    .footer .footer-top h4 {
        font-size: 1.4rem;
    }

    .footer .footer-top .footer-links ul a {
        font-size: 1.2rem;
    }

    .footer .footer-top .footer-contact p {
        font-size: 1.2rem;
    }
}
#canvas-container{ position: fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    z-index:-1; /* behind website */ 
    pointer-events:none; /* don't block clicks */ 
} 

canvas{ display:block; }
/* From Uiverse.io by david-mohseni */ 
.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
  background: #000000;
  color: #fff;
}

.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {

    background: #0A66C2;
}
.wrapper .portfolio:hover,
.wrapper .portfolio:hover .tooltip,
.wrapper .portfolio:hover .tooltip::before {

    background: darkorange;
}
/* From Uiverse.io by McHaXYT */ 
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.button {
  cursor: pointer;
  text-decoration: none;
  color: #ffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2d2e32;
  border: 2px solid #2d2e32;
  transition: all 0.45s;
}

.button:hover {
  transform: rotate(360deg);
  transform-origin: center center;
  background-color: #ffff;
  color: #2d2e32;
}

.button:hover .btn-svg {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg)
    brightness(103%) contrast(103%);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* From Uiverse.io by david-mohseni */ 
.face {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  outline: 10px solid #333;
  background: repeating-radial-gradient(circle at 50% 50%, 
  rgba(10, 7, 234, 0.2) 0%, rgba(6, 14, 169, 0.2) 2%, 
  transparent 2%, transparent 3%, rgba(15, 12, 226, 0.2) 3%, 
  transparent 3%), conic-gradient(white 0%, silver 10%, 
  white 35%, silver 45%, white 60%, silver 70%, 
  white 80%, silver 95%, white 100%);
  box-shadow: inset 0 0 20px #0007;
}

.hour {
  position: absolute;
  width: 5px;
  height: 60px;
  background: #aaa;
  left: 87.5px;
  top: 43px;
  border-radius: 3px 3px 1px 1px;
  transform-origin: 2px 47px;
  box-shadow: 0 0 5px #0005,inset 1.5px 3px 0px #333, inset -1.5px -3px 0px #333;
  z-index: 1;
  animation: watch 43200s linear infinite;
}

.minute {
  position: absolute;
  width: 4px;
  height: 78px;
  background: #aaa;
  left: 88px;
  top: 25px;
  border-radius: 3px 3px 1px 1px;
  transform-origin: 2px 65px;
  box-shadow: 0 0 5px #0005, inset 1.5px 3px 0px #333, inset -1.5px -3px 0px #333;
  z-index: 2;
  animation: watch 3600s linear infinite;
}

.second {
  position: absolute;
  width: 10px;
  height: 10px;
  background: red;
  left: 85px;
  top: 85px;
  border-radius: 50%;
  border: 1px solid #eee;
  z-index: 3;
  animation: watch 60s steps(60, end) 0s infinite;
}

.second::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 85px;
  left: 3px;
  bottom: -10px;
  background: red;
  border-radius: 2px;
  box-shadow: 5px 0 2px rgba(128, 128, 128, 0.2);
}

.second::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 2px;
  top: 2px;
  background: #555;
  border-radius: 50%;
}

.v-index {
  position: absolute;
  color: #333;
  font-size: 24px;
  left: 83.5px;
  top: -3px;
  text-shadow: 0 157px 0 #333;
  z-index: 1
}

.h-index {
  position: absolute;
  color: #333;
  font-size: 24px;
  top: 72px;
  left: 5px;
  transform: rotate(-90deg);
  text-shadow: 0 158px 0 #333;
  z-index: 1;
}

@keyframes watch {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.face_container{
  width: 100%;
  height: 28vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.5); }
    100% { box-shadow: 0 0 0 20px rgba(230, 126, 34, 0); }
}

/* Hero entrance: eyebrow -> logo -> heading -> paragraph -> buttons, cascading in */
.home .video-bg {
    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-content > * {
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > .orange_title { animation-delay: 0.1s; }
.hero-content > .logo { animation-delay: 0.3s; }
.hero-content > h1 { animation-delay: 0.5s; }
.hero-content > p { animation-delay: 0.7s; }
.hero-content > .hero-buttons { animation-delay: 0.9s; }

.btn-primary {
    animation: pulseRing 2.5s ease-out 1.6s infinite;
}

/* Generic scroll-triggered reveal, activated by IntersectionObserver in main.js */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .home .video-bg,
    .btn-primary,
    .hero-content > * {
        animation: none !important;
    }

    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Hover micro-interactions */
.item .icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.item:hover .icon {
    transform: rotate(360deg) scale(1.1);
}

.counter-box i {
    transition: transform 0.4s ease;
}

.counter-box:hover i {
    transform: translateY(-6px) scale(1.15);
}

.team .row .card .image img,
.team .row .card > img {
    transition: transform 0.5s ease;
}

.team .row .card:hover img {
    transform: scale(1.06);
}