:root {
    --primary-color: #0d6efd;
    --secondary-color: #6610f2;
    --accent-color: #0dcaf0;
    --dark-bg: #0b0c10;
    --light-text: #f8f9fa;
    --gradient-main: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    --gradient-hover: linear-gradient(135deg, #0b5ed7 0%, #520dc2 100%);
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* HEADER */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* LOGO */
.logo {
    width: 34px;
    margin-right: 10px;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e40af;
}

/* NAV LINKS */
.nav-link {
    font-weight: 500;
    color: #334155 !important;
    position: relative;
    padding: 8px 4px;
    margin: 0 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb !important;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    left: 0;
    bottom: -6px;
    border-radius: 10px;
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: #2563eb;
}

/* CTA BUTTON */
.cta-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    color: white !important;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.45);
    color: white !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Updated gradient as per request, with fallback/overlay */
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(124, 58, 237, 0.85));
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    /* As requested: 3.5rem */
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    /* As requested: 1.2rem */
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn-gradient {
    /* Keeping this for other buttons, but Hero CTA might use cta-btn if updated, or keep using btn-gradient which is fine. 
       The request didn't specify changing the HERO buttons HTML, just the Hero styles. */
    background: var(--gradient-main);
    border: none;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b5ed7 0%, #520dc2 100%);
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
    color: white;
}

.btn-outline-light {
    padding: 14px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-width: 2px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}



/* Section General */
/* Section General */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-title::after {
    display: none;
    /* Remove old underline */
}

/* Services */
.service-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    transition: height 0.3s;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover h4,
.service-card:hover p,
.service-card:hover .service-icon {
    color: white !important;
    -webkit-text-fill-color: white;
}

.service-card:hover .service-icon {
    background: white;
    -webkit-background-clip: unset;
    color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 30px;
    background: -webkit-linear-gradient(45deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s;
}

/* Why Choose Us */
.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(13, 110, 253, 0.2);
}

.feature-icon {
    min-width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-right: 25px;
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    background: var(--gradient-main);
    color: white;
    transform: rotate(5deg);
}

.feature-box h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Mission Vision */
.mission-vision-section {
    background: #f8f9fa;
}

.mv-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    height: 100%;
    transition: transform 0.3s;
}

.mv-box:hover {
    transform: translateY(-5px);
}

.mv-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact */
.contact-info-box {
    padding: 40px;
    background: var(--gradient-main);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.2);
    color: white;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-box h3,
.contact-info-box h6,
.contact-info-box p,
.contact-info-box a {
    color: white !important;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-control {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    transition: all 0.3s;
}

.form-control:focus {
    background-color: white;
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.1);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: #0b0c10;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
}

.footer h5 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.footer-links a i {
    color: var(--primary-color);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-main);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}