.elementor-14 .elementor-element.elementor-element-8921a9c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6982d0a *//* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
    --deep-blue: #1a3a52;
    --bright-blue: #0066cc;
    --light-blue: #e8f2ff;
    --green: #10b981;
    --orange: #ff9500;
    --gray-light: #f8f9fb;
    --gray-medium: #e5e7eb;
    --gray-dark: #4b5563;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bright-blue) 0%, #0051a8 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0059d8 0%, #003d7a 100%);
}

.btn-secondary {
    background: white;
    color: var(--bright-blue);
    border: 2px solid var(--bright-blue);
}

.btn-secondary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* ============================================
   SECTION STYLING
   ============================================ */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--bright-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e8f5 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(40px);
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--bright-blue) 0%, #0051a8 100%);
    top: -50px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
    bottom: -50px;
    left: -100px;
    animation: float 8s ease-in-out infinite 1s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    top: 50%;
    left: 10%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    color: var(--deep-blue);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-card {
    position: absolute;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 4s ease-in-out infinite;
    min-width: 140px;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: 15%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-card p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   STORY SECTION
   ============================================ */

.story {
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    color: var(--deep-blue);
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.story-highlight {
    background: var(--light-blue);
    border-left: 4px solid var(--bright-blue);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.story-highlight p {
    margin: 0;
    color: var(--deep-blue);
    font-style: italic;
    font-weight: 600;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--bright-blue);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--bright-blue);
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 32px;
    width: 2px;
    height: calc(100% + 8px);
    background: linear-gradient(180deg, var(--bright-blue) 0%, transparent 100%);
}

.timeline-content {
    padding-top: 5px;
}

.timeline-year {
    display: block;
    color: var(--bright-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    margin: 0;
    color: var(--text-light);
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */

.mission-vision {
    background: linear-gradient(135deg, #f0f4f8 0%, #e0eaff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid;
    transition: var(--transition);
}

.mission-card {
    border-top-color: var(--bright-blue);
}

.vision-card {
    border-top-color: var(--green);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mv-card h3 {
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.mv-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-medium);
}

.mv-details h4 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.mv-details ul {
    list-style: none;
    padding: 0;
}

.mv-details li {
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.mv-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust {
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trust-card {
    background: var(--gray-light);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
}

.trust-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: var(--bright-blue);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.trust-card h3 {
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   APPROACH SECTION
   ============================================ */

.approach {
    background: var(--gray-light);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-step {
    background: white;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--bright-blue);
    transition: var(--transition);
}

.approach-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-visual {
    position: relative;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bright-blue);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.step-icon {
    font-size: 2rem;
}

.step-content h3 {
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.step-content p {
    margin: 0;
}

.approach-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--bright-blue);
    opacity: 0.3;
    margin: -10px 0;
}

/* ============================================
   PERFORMANCE SECTION
   ============================================ */

.performance {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #2d5a7b 100%);
    color: white;
}

.performance .section-header h2,
.performance .section-header p {
    color: white;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    display: inline;
}

.metric-unit {
    font-size: 2rem;
    font-weight: 700;
    margin-left: 5px;
}

.metric-label {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 600;
}

.metric-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: var(--transition);
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover .avatar-placeholder {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.team-member h3 {
    color: var(--deep-blue);
    margin-bottom: 5px;
}

.member-role {
    color: var(--bright-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.member-expertise {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.expertise-tag {
    background: var(--light-blue);
    color: var(--bright-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background: linear-gradient(135deg, var(--light-blue) 0%, #e5f0ff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-medium);
}

.testimonial-footer {
    display: flex;
    gap: 15px;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.client-name {
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.client-company {
    color: var(--text-light);
    margin: 3px 0 0 0;
    font-size: 0.85rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #1a3a52 50%, var(--bright-blue) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--deep-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4,
.footer-section h5 {
    color: white;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-contact a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-step {
        flex-direction: column;
        text-align: center;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .approach-step {
        padding: 25px;
    }
    
    .trust-card {
        padding: 25px 20px;
    }
    
    .mv-card {
        padding: 25px;
    }
}/* End custom CSS */