@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --primary: #2A6BFF;
    --primary-light: #5A8BFF;
    --primary-dark: #1A5BEF;
    --secondary: #FF9A3D;
    --secondary-light: #FFB366;
    --accent: #6C63FF;
    --light: #F8FAFF;
    --dark: #222222;
    --gray: #6C757D;
    --gradient-primary: linear-gradient(135deg, #e71f25 0%, #ed1d24 100%);
    --gradient-secondary: linear-gradient(135deg, #FF9A3D 0%, #FF6B6B 100%);
}

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

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #fff;
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
}

/* Custom Shapes */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #FFFFFF;
}

/* Header Styles */
.navbar {
    padding: 12px 0;
    transition: all 0.4s ease;
    background-color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

header {
    margin-bottom: 93px;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
}

.navbar-brand .logo-icon {
    background: var(--gradient-primary);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 1.5rem;
}

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

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s;
    color: var(--dark) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgb(237 29 36 / 5%);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgb(237 29 36 / 30%);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 154, 61, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 154, 61, 0.4);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFF 0%, #E8F0FF 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1582735689369-4fe89db7114c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(248, 250, 255, 0.9) 0%, rgba(248, 250, 255, 0.7) 25%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: #111;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 60%;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(42, 107, 255, 0.1);
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
    background: rgba(255, 154, 61, 0.1);
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 15%;
    animation-delay: 4s;
    background: rgba(108, 99, 255, 0.1);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: white;
    position: relative;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    background: #111;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 2;
}

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

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(42, 107, 255, 0.1) 0%, rgba(108, 99, 255, 0.1) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
    color: white;
}

/* How It Works */
.how-it-works {
    padding: 70px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #E8F0FF 100%);
    position: relative;
    overflow: hidden;
}

.steps-container {
    position: relative;
    margin-top: 4rem;
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #00164b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

/* Services */
.services-section {
    padding: 70px 0;
    background-color: white;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    background: white;
    position: relative;
}

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

.service-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

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

.service-content {
    padding: 2rem;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 154, 61, 0.3);
}

/* Testimonials */
.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #E8F0FF 100%);
}

.app-badge {
    height: 60px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin: 1rem;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(42, 107, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.2rem;
    border: 3px solid var(--primary-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #0d1233;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.cta-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatUp 15s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 60px 0 15px;
    position: relative;
}

.footer-tagline {
    max-width: 75%;
    margin: 0 auto;
    color: #c6c6c6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: var(---gradient-primary);
}

.footer-logo .logo-icon {
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 1.8rem;
}

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

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-link {
    color: #B0B7C3;
    text-decoration: none;
    display: block;
    margin-bottom: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-link:hover {
    color: white;
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    justify-content: center;
}

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

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    color: #B0B7C3;
    font-size: 13px;
}

/* About Us CSS */
.section-header {
    background: linear-gradient(135deg, #00123b, #00185d);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.section-header h1 {
    font-size: 40px;
    font-weight: 800;
}

.section-header p {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
}

.content-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.info-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #3b82f6;
}

.info-box h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.why-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.why-card {
    background: #f3f7ff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.why-card i {
    font-size: 40px;
    color: #1d4ed8;
    margin-bottom: 15px;
}

.timeline {
    margin-top: 25px;
}

.timeline-item {
    background: #ffffff;
    padding: 20px;
    border-left: 4px solid #1e40af;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-section {
    text-align: center;
    padding: 40px 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    width: 230px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-card img {
    width: 100%;
    border-radius: 12px;
}

.team-card h4 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
}

.cta-box {
    text-align: center;
    background: #1e40af;
    color: white;
    padding: 40px 20px;
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.cta-box a {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff;
    color: #1e40af;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

/* Contact Us CSS */
.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-box {
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-box i {
    font-size: 40px;
    color: #1e40af;
    margin-bottom: 15px;
}

.contact-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-form button {
    background: #1e40af;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

.map-box {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-bg {
        width: 55%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-bg {
        width: 50%;
        clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .features-section,
    .how-it-works,
    .services-section,
    .testimonials-section {
        padding: 80px 0;
    }

    .step-connector {
        display: none;
    }
    .navbar-brand img{
        height: 50px;
    }
    header {
  margin-bottom: 85px;
}
.hero-content {
  margin-top: -80px;
}
.hero-subtitle {
  font-size: 14px;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.hero-title {
    font-size: 30px;
  }
}

