* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0d47a1;
    --secondary: #ff6d00;
    --accent: #4caf50;
    --dark: #1a237e;
    --light: #f5f5f5;
    --gray: #757575;
    --light-gray: #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    /*width: 90%;*/
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 50px 0;
}

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

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: #ff6d00;
    max-width: 500px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 900;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /*width: 100%;*/
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: #e65100;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 109, 0, 0.2);
}

/* Header Styles */
header {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.logo h1 {
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.logo i {
    margin-right: 12px;
    font-size: 2rem;
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 35px;
    transform: translateY(-20px);
    opacity: 0;
    animation: slideInDown 0.5s ease forwards;
}

nav ul li:nth-child(1) { animation-delay: 0.1s; }
nav ul li:nth-child(2) { animation-delay: 0.2s; }
nav ul li:nth-child(3) { animation-delay: 0.3s; }
nav ul li:nth-child(4) { animation-delay: 0.4s; }
nav ul li:nth-child(5) { animation-delay: 0.5s; }

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    bottom: -8px;
    left: 0;
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 2px;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0%) 0%, rgba(26, 35, 126, 3%) 100%), url('../images/banner-2.jpeg');
    /*background-size: cover;*/
    /*background-position: center;*/
    /*background-attachment: fixed;*/
    /*color: white;*/
    /*position: relative;*/
    /*overflow: hidden;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 109, 0, 0.2) 0%, transparent 50%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 60px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
}

.hero-form-container {
    /*flex: 1;*/
    min-width: 360px;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
    position: relative;
    overflow: hidden;
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-title {
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
    font-size: 26px;
}

.form-group {
    margin-bottom: 25px;
    /*transform: translateX(-20px);*/
    /*opacity: 0;*/
    animation: slideInRight 0.5s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.8s; }
.form-group:nth-child(2) { animation-delay: 0.9s; }
.form-group:nth-child(3) { animation-delay: 1.0s; }
.form-group:nth-child(4) { animation-delay: 1.1s; }
.form-group:nth-child(5) { animation-delay: 1.2s; }

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

/* About Section */
.about {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(13, 71, 161, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.about-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.about-img {
    flex: 1;
    min-width: 300px;
    transform: translateX(-50px);
    /*opacity: 0;*/
    transition: all 1s ease;
}

#about2 .about-img {
    flex: 1;
    min-width: 300px;
    transform: translateX(0px);
    /*opacity: 0;*/
    transition: all 1s ease;
}
#about3 .about-img {
    flex: 1;
    min-width: 300px;
    transform: translateX(0px);
    /*opacity: 0;*/
    transition: all 1s ease;
}

.about-img.animate {
    transform: translateX(0);
    opacity: 1;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.02);
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding-left: 70px;
    transform: translateX(50px);
    /*opacity: 0;*/
    transition: all 1s ease 0.2s;
}
#about2 .about-content {
    flex: 1;
    min-width: 300px;
    padding-left: 0px;
    padding-right: 30px;
    transform: translateX(50px);
    /*opacity: 0;*/
    transition: all 1s ease 0.2s;
}
#about3 .about-content {
    flex: 1;
    min-width: 300px;
    padding-left: 0px;
    padding-right: 80px;
    transform: translateX(50px);
    /*opacity: 0;*/
    transition: all 1s ease 0.2s;
}

.about-content.animate {
    transform: translateX(0);
    opacity: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.about-content p {
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 1.1rem;
}

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

.about-feature {
    display: flex;
    align-items: flex-start;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.about-feature.animate {
    transform: translateY(0);
    opacity: 1;
}

.about-feature:nth-child(1) { transition-delay: 0.4s; }
.about-feature:nth-child(2) { transition-delay: 0.6s; }
.about-feature:nth-child(3) { transition-delay: 0.8s; }
.about-feature:nth-child(4) { transition-delay: 1.0s; }

.about-feature i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
    background-color: rgba(13, 71, 161, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.about-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

/* Why Choose Us */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
}

.feature-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.feature-card:hover i {
    color: var(--secondary);
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--dark);
}

/* Counter Section */
.counter-section {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95) 0%, rgba(26, 35, 126, 0.95) 100%), url('../images/banner-1.png');
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 109, 0, 0.2) 0%, transparent 50%);
}

.counter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.counter-item {
    padding: 4px 20px;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.8s ease;
}

.counter-item.animate {
    transform: scale(1);
    opacity: 1;
}

.counter-item i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 5px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    /*margin-bottom: 15px;*/
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.counter-text {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateY(50px);
    opacity: 0;
}

.service-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.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; }
.service-card:nth-child(4) { transition-delay: 0.7s; }

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.service-content p {
    margin-bottom: 25px;
    color: var(--gray);
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #ff6d00;
    margin-right: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(13, 71, 161, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.8s ease;
}

.testimonial-card.active {
    transform: scale(1);
    opacity: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: rgba(13, 71, 161, 0.1);
    font-family: Georgia, serif;
}

.testimonial-content {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.author-info p {
    color: var(--gray);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.testimonial-nav {
    background-color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.2rem;
}

.testimonial-nav:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 109, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}
.copyright ul {
    display: flex;
    list-style: none;
}
.copyright ul li {
    margin-right: 10px;
}
.copyright ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 12px;
}
.footer-logo h3 {
    margin-bottom: 20px;
}
.footer-logo span {
    color: var(--secondary);
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
    transform: translateX(-10px);
    /*opacity: 0;*/
    transition: all 0.5s ease;
}

.footer-links ul li.animate {
    transform: translateX(0);
    opacity: 1;
}

.footer-links ul li:nth-child(1) { transition-delay: 0.1s; }
.footer-links ul li:nth-child(2) { transition-delay: 0.2s; }
.footer-links ul li:nth-child(3) { transition-delay: 0.3s; }
.footer-links ul li:nth-child(4) { transition-delay: 0.4s; }
.footer-links ul li:nth-child(5) { transition-delay: 0.5s; }

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    color: #ccc;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--secondary);
    font-size: 1.2rem;
    width: 25px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .about-content {
        padding-left: 40px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .section-title h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        /*transform: translateX(20px);*/
        /*opacity: 0;*/
        animation: slideInRight 0.8s ease forwards 0.2s;
    }

    nav {
        position: fixed;
        /*top: 80px;*/
        left: 0;
        width: 100%;
        background-color: white;
        padding: 30px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 999;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        top: 80px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 15px 0;
        transform: translateX(-20px);
        opacity: 0;
    }
    
    nav.active ul li {
        animation: slideInLeft 0.5s ease forwards;
    }
    
    nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
    nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
    nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
    nav.active ul li:nth-child(5) { animation-delay: 0.5s; }

    .hero {
        padding: 160px 0 80px;
    }
    
    .hero-form-container {
        min-width: 100%;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        /*width: 100%;*/
        padding: 14px 18px !important;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/*FAQ Section start*/
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: #0d47a1;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: background 0.3s ease;
}
#faq .active .faq-question {
  background: #ff6d00;  
}
.faq-question:hover {
  background: #ff6d00;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: all 0.4s ease;
  padding: 0 20px;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/*FAQ Section end*/

#faq .hero-form-container {
    margin: 0 20px;
}
#faq .form-group {
    margin-bottom: 15px;
}

.counter-number::after{
    content:"+";
    color:#ff6a00;   /* orange like your theme */
    margin-left:5px;
    font-size:0.8em;
    font-weight:700;
}
.comparison-section{
padding:60px 20px;
background:#fff;
}

.table-responsive{
width:100%;
overflow-x:auto;
}

.comparison-table{
width:100%;
border-collapse:collapse;
font-family:Poppins,sans-serif;
min-width:700px;
}

.comparison-table th,
.comparison-table td{
/*border:1px solid #dcdcdc;*/
padding:1px 20px;
}

.main-heading th{
font-size:34px;
font-weight:700;
text-align:center;
background: #ff6d00;
padding: 20px;
color: #fff;
}

.comparison-table thead tr:nth-child(2) th{
font-size:28px;
font-weight:700;
text-align:center;
}

.comparison-table td:first-child{
font-size:22px;
font-weight:500;
}

.check{
font-size:42px;
font-weight:bold;
text-align:center;
color:green;
}

.cross{
font-size:42px;
font-weight:bold;
text-align:center;
color:red;
}

.comparison-table td:not(:first-child){
text-align:center;
width:18%;
}

/* Mobile */
@media(max-width:768px){

.main-heading th{
font-size:22px;
line-height:1.4;
}

.comparison-table thead tr:nth-child(2) th{
font-size:15px !important;
}

.comparison-table td:first-child{
font-size:16px;
}

.check,
.cross{
font-size:28px;
}

.comparison-table th,
.comparison-table td{
padding:12px;
}

}
.mob {
    display: none;
}
@media only screen and (min-width: 200px) and (max-width: 767px) {
.hero {
    background-size: contain;
    background-position: top;
    margin-top: 80px;
}
.services-container{
display:grid;
grid-template-columns:minmax(0,1fr);
gap:20px;
}
.about-content {
    transform: none !important;
}
.mob {
    display: block;
    z-index: 9;
}
.mob a {
    text-decoration: none;
}
#faq .row {
display: block !important;
}
.mobile-number {
display: block !important;
}
.mobile-number i.fa.fa-phone {
    color: #ff6d00;
}
}
.mobile-number {
display: none;
}


.how-it-works {
  text-align: center;
  padding: 60px 20px;
  background: #f9fafc;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

/* horizontal line */
.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ddd;
  z-index: 0;
}

.step {
  position: relative;
  width: 14%;
  z-index: 1;
}

.icon {
  width: 80px;
  height: 80px;
  background: #FF6d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon i {
  color: #fff;
  font-size: 28px;
}

.step h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0f172a;
}

.step p {
  font-size: 13px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .timeline {
    flex-wrap: wrap;
    justify-content: center;
  }

  .timeline::before {
    display: none;
  }

  .step {
    width: 45%;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .step {
    width: 100%;
  }
}


.section-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}

.services-grid-popular {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.service-card-popular {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card-popular:hover {
  transform: translateY(-5px);
}

.service-card-popular i {
  font-size: 40px;
  color: #FF6D00;
  margin-bottom: 15px;
}

.service-card-popular h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card-popular p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

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

@media (max-width: 576px) {
  .comparison-table{
    min-width:100%;
    }    
    
  .services-grid-popular {
    grid-template-columns: 1fr;
  }

  .section-subtitle {
    font-size: 18px;
  }
  .enquire-btn {
    display: none;
  }
  .counter-item {
    transform: scale(0.7) !important;
    padding: 0 !important;
  }
  .counter-container {
    gap: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .logo h1 {
    font-size: 1rem;
  }
  #nav .btn {
      display: none;
  }
  .counter-item {
    padding: 30px 20px;
  }
}
.comparison-section table, th, tr, td {
    border: 2px solid orange;
}
.comparison-table thead tr:nth-child(2) th {
    font-size: 24px;
    padding: 20px;
    color: #fff;
    background: #2559a9;
}