/* Root Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --text-color: #334155;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.brand-highlight {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background-color: var(--primary-dark);
    bottom: -80px;
    left: -80px;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    top: 50%;
    left: 50%;
    animation: float 18s infinite ease-in-out;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    animation: slideInLeft 0.8s ease-out;
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1rem;
}

.hero-badge span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    opacity: 0.2;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn i {
    transition: var(--transition);
}

.hero-buttons .btn:hover i.fa-arrow-right {
    transform: translateX(5px);
}

/* Hero Stats */
.hero-stats .stat-item {
    text-align: center;
    position: relative;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image .main-img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}

.floating-card i {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.floating-card .card-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.floating-card .card-content p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.card-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 4s;
}

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

.about-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.about-decoration .shape-1 {
    width: 350px;
    height: 350px;
    background-color: var(--primary-color);
    top: -100px;
    left: -100px;
}

.about-decoration .shape-2 {
    width: 250px;
    height: 250px;
    background-color: var(--primary-color);
    bottom: -80px;
    right: -80px;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    z-index: 2;
}

.about-image .main-about-img {
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    z-index: 0;
}

/* Image Badges */
.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: slideInUp 1s ease-out;
}

.image-badge .badge-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
}

.image-badge .badge-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.image-badge .badge-text p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    text-align: center;
    z-index: 3;
    animation: scaleIn 1s ease-out;
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.875rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}

/* Highlight Boxes */
.about-highlights {
    margin-top: 2rem;
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.highlight-box:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.highlight-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.highlight-box p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-text {
    color: var(--text-light);
    font-size: 1rem;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
}

.about-features .fa-check-circle {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Vision Mission Section */
.vision-mission-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.vm-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.vm-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background-color: var(--primary-color);
}

.vm-bg-decoration .shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.vm-bg-decoration .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.vm-bg-decoration .shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
}

.vision-mission-section .container {
    position: relative;
    z-index: 1;
}

.vm-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.vm-card-2 {
    background: var(--primary-color);
}

.vm-card-2 .vm-title,
.vm-card-2 .vm-text {
    color: var(--white);
}

.vm-card-2 .vm-icon {
    background-color: var(--white);
    color: var(--primary-color);
}

.vm-card-2 .vm-number {
    color: rgba(255, 255, 255, 0.3);
}

.vm-card-2 .vm-dot {
    background-color: rgba(255, 255, 255, 0.3);
}

.vm-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.vm-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2rem;
    transition: var(--transition);
}

.vm-card:hover .vm-icon {
    transform: rotateY(360deg);
}

.vm-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.vm-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.vm-text {
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    line-height: 1.8;
}

.vm-card-footer {
    display: flex;
    gap: 8px;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.vm-card-2 .vm-card-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.vm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.vm-card:hover .vm-dot {
    animation: pulse 1.5s infinite;
}

.vm-card:hover .vm-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.vm-card:hover .vm-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.vm-card-1 {
    animation-delay: 0.1s;
}

.vm-card-2 {
    animation-delay: 0.2s;
}

.vm-card-3 {
    animation-delay: 0.3s;
}

/* Features Section */
.features-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.features-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background-color: var(--primary-color);
}

.features-bg-decoration .shape-1 {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -100px;
}

.features-bg-decoration .shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--border-color);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover::before {
    width: 80%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
    transform: translateY(-10px);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0;
    transform: scale(1.3);
    transition: var(--transition);
}

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

.feature-card:hover .feature-icon::before {
    opacity: 1;
    transform: scale(1.5);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-card:hover .feature-title {
    color: var(--primary-color);
}

.feature-text {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-card-1 {
    animation-delay: 0.1s;
}

.feature-card-2 {
    animation-delay: 0.2s;
}

.feature-card-3 {
    animation-delay: 0.3s;
}

.feature-card-4 {
    animation-delay: 0.4s;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.services-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background-color: var(--primary-color);
}

.services-bg-decoration .shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: 10%;
}

.services-bg-decoration .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 10%;
}

.services-bg-decoration .shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: -80px;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card-inner {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: rgba(37, 99, 235, 0.03);
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    color: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(1.2);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: scale(1.1) rotateY(360deg);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: rgba(255, 255, 255, 0.3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--white);
}

.service-text {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
    transition: var(--transition);
}

.service-card:hover .service-text {
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    border-color: var(--primary-color);
}

.service-card-1 {
    animation-delay: 0.1s;
}

.service-card-2 {
    animation-delay: 0.2s;
}

.service-card-3 {
    animation-delay: 0.3s;
}

.service-card-4 {
    animation-delay: 0.4s;
}

.service-card-5 {
    animation-delay: 0.5s;
}

.service-card-6 {
    animation-delay: 0.6s;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 1.125rem;
    margin: 0;
    opacity: 0.9;
}

.cta-section .btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.cta-section .btn-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background-color: var(--primary-color);
}

.contact-bg-decoration .shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.contact-bg-decoration .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

.contact-details p+p {
    margin-top: 0.5rem;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
    background: var(--white);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
    background: var(--white);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form .btn-primary {
    padding: 1rem 2.5rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about,
.footer-widget {
    position: relative;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Footer Widgets */
.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover i {
    color: var(--primary-color);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 12px;
}

.footer-contact i {
    width: 20px;
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact .contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.6;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-copyright .brand-highlight {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 60px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    section {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    .floating-card i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .card-1 {
        right: 0;
        top: 5%;
    }

    .card-2 {
        left: 0;
        bottom: 35%;
    }

    .card-3 {
        right: 5%;
        bottom: 10%;
    }

    .image-badge {
        padding: 0.75rem 1rem;
        bottom: 15px;
        left: 15px;
    }

    .image-badge .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .image-badge .badge-text h4 {
        font-size: 0.875rem;
    }

    .image-badge .badge-text p {
        font-size: 0.75rem;
    }

    .experience-badge {
        padding: 1rem;
        top: 15px;
        right: 15px;
    }

    .experience-badge h3 {
        font-size: 2rem;
    }

    .about-pattern {
        top: -10px;
        left: -10px;
        border-width: 2px;
    }

    .vm-card {
        padding: 2rem;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .vm-number {
        font-size: 2.5rem;
    }

    .vm-title {
        font-size: 1.25rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .contact-info-wrapper {
        margin-bottom: 2rem;
    }

    .service-card-inner {
        padding: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .service-number {
        font-size: 2rem;
    }

    .service-overlay {
        font-size: 6rem;
    }
}

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

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .floating-card {
        display: none;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .vm-card {
        padding: 1.5rem;
    }

    .vm-number {
        font-size: 2rem;
    }

    .vm-card-header {
        margin-bottom: 1rem;
    }

    .feature-card {
        padding: 2rem 1.25rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card-inner {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-number {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-overlay {
        font-size: 4rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

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

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

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.hero-content,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}