/* Animated Text Section */
.animated-text-section {
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgba(0, 0, 0, 0.7)), 
                url('../images/banner_bg.jpg') center/cover no-repeat fixed;
    background-blend-mode: overlay;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    z-index: 1;
    margin: 0;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.animated-text-container {
    max-width: 1200px;
    margin: 0 auto;
}

.animated-text {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
    text-transform: uppercase !important;
    font-family: 'Inter', sans-serif !important;
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
    padding: 20px !important;
    display: block;
    min-height: 1.2em;
    width: 100%;
    max-width: 1200px;
}

#juggling-text {
    display: inline-block;
    min-height: 1.2em;
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    font-family: 'Inter', sans-serif !important;
    width: 100%;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .animated-text {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .animated-text-section {
        padding: 70px 20px;
    }
    
    .animated-text {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 1.8rem;
    }
}

/* Add this at the top of the file or in the global styles section */
html {
    scroll-behavior: smooth;
    --saffron: #FF9933;
    font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Scroll Buttons - High Specificity */
.scroll-buttons {
    position: fixed !important;
    right: 30px !important;
    bottom: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

#scrollToTop,
#scrollToBottom {
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: 2px solid white !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: none !important; /* Hidden by default */
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    opacity: 0.9 !important;
    padding: 0 !important;
    margin: 0 !important;
    visibility: visible !important;
    position: static !important;
}

/* Show buttons when they have the 'visible' class */
#scrollToTop.visible,
#scrollToBottom.visible {
    display: flex !important;
}

/* Hide up button at the top of the page */
body.at-top #scrollToTop,
/* Hide down button at the bottom of the page */
body.at-bottom #scrollToBottom {
    display: none !important;
}

#scrollToTop,
#scrollToBottom {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}

#scrollToTop::before,
#scrollToBottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

#scrollToTop:hover::before,
#scrollToBottom:hover::before {
    opacity: 1;
}

#scrollToTop span,
#scrollToBottom span {
    display: block;
    position: relative;
    transition: transform 0.2s ease;
    line-height: 1;
}

#scrollToTop:hover span {
    transform: translateY(-2px);
}

#scrollToBottom:hover span {
    transform: translateY(2px);
}

#scrollToTop span {
    margin-top: -2px;
    font-size: 1.1em;
    font-weight: 900;
    text-shadow: 0 0 1px rgba(0,0,0,0.3);
    line-height: 0.8;
}

#scrollToBottom span {
    margin-top: 2px;
    font-size: 1.1em;
    font-weight: 900;
    text-shadow: 0 0 1px rgba(0,0,0,0.3);
    line-height: 0.8;
}

#scrollToTop:hover,
#scrollToBottom:hover {
    background: linear-gradient(135deg, #5a6fd1 0%, #6a4290 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    opacity: 1 !important;
}

/* Ensure no other styles are overriding these */
.scroll-buttons *,
.scroll-buttons *:before,
.scroll-buttons *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Schedule Meeting Button */
.schedule-meeting-btn {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 999;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.schedule-meeting-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.schedule-icon {
    display: flex;
    align-items: center;
}

.schedule-text {
    white-space: nowrap;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #4a6cf7 0%, #6c5ce7 50%, #a55eea 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,50 C30,50 40,30 50,30 C60,30 70,50 70,50 C70,50 60,70 50,70 C40,70 30,50 30,50 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.5;
    animation: float 15s infinite ease-in-out;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
}

.contact-section {
    padding: 6rem 0;
    background-color: #f9f9ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a6cf7 0%, #6c5ce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(74, 108, 247, 0.4);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-link, .contact-text {
    display: block;
    color: #4a6cf7;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3a5bd9;
    text-decoration: underline;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

/* Form Input Styles */
.contact-form input,
.contact-form textarea,
.contact-form select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9ff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a6cf7;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
    background-color: white;
    color: #333;
}

/* Form Input Styling */
.contact-form input,
.contact-form textarea,
.form-group input,
.form-group textarea {
    color: #2d3748 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid #e2e8f0;
    font-family: 'Sarabun', sans-serif;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Placeholder Styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0 !important;
    font-weight: 400;
    opacity: 1;
}

/* Focus State */
.contact-form input:focus,
.contact-form textarea:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: #4a6cf7;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
    background: #fff !important;
    outline: none;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 1.25rem;
}

/* Half Width Inputs */
.half-width {
    width: 48%;
    display: inline-block;
}

.half-width:first-child {
    margin-right: 4%;
}

/* Form Row Styling */
.form-row {
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Textarea Specific Styling */
textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #4a6cf7 0%, #6c5ce7 100%);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
    background: linear-gradient(135deg, #3a5bd9 0%, #5c4bc7 100%);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #4a6cf7 0%, #6c5ce7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

.map-section {
    padding: 0 0 6rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #111;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo {
    width: 50px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.logo-text {
    font-size: 2.0rem;
    font-weight: 800;
    color: #FF6F00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 0.25em;
    margin: 0 0.5em 0 0.25em;
    display: inline-block;
    white-space: nowrap;
    margin-left: 4px;
    letter-spacing: 0.05em;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0 1rem;
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.15rem; /* Increased by 15% from ~1rem */
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    display: block;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #667eea;
}

/* Underline effect on hover */
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #667eea;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Active state for current page */
.nav-menu a.active {
    color: #667eea;
    font-weight: 700;
}

.nav-menu a.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    color: white !important;
    text-decoration: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        gap: 1rem;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-link {
        padding: 1rem 2rem;
    }

    .nav-cta {
        margin: 1rem auto;
        display: block;
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 992px) {
   .nav-menu {
       gap: 0.3rem;
   }
   
   .nav-menu li {
       margin: 0.1rem 0;
   }
    
    .cta-button {
        margin: 0;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Form Responsiveness */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row input {
        width: 100%;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Styled button for CTA section */
.cta .btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 1.15rem;
    margin: 0 auto;
    display: block;
    width: auto;
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.problem-section p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-content {
    text-align: justify;
}

.solution-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

.solution-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    line-height: 1.7;
}

.learn-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.learn-more:hover {
    border-bottom-color: #667eea;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid #667eea;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial cite {
    color: #667eea;
    font-weight: 600;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 40px;
}

.testimonial-track {
    position: relative;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 1rem 0;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    background: #ffffff;
    color: #2d3748;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
    color: #4a5568;
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    padding: 0 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b; /* Slightly lighter navy for author section */
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem auto 0;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-slide:hover .testimonial-author {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 108, 247, 0.15);
}

.testimonial-author img {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    flex-shrink: 0;
}

.testimonial-author-info h4 {
    margin: 0;
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-author-info p {
    margin: 0.25rem 0 0;
    color: #718096;
    font-size: 0.95rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 20px;
    color: #4a6cf7;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

.testimonial-nav:hover {
    background: #4a6cf7;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 7px 25px rgba(74, 108, 247, 0.3);
    border-color: transparent;
}

.testimonial-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 12px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a6cf7, #a55eea);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.testimonial-dot.active {
    transform: scale(1.2);
    border-color: #4a6cf7;
    background: transparent;
}

.testimonial-dot.active::after {
    opacity: 1;
}

.testimonial-dot:hover:not(.active) {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 40px 0;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    color: #333333;
    background: transparent;
}


.testimonials .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #2d3748;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a6cf7, #6c5ce7);
    border-radius: 2px;
}

.testimonial-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 4rem;
}

.testimonial-track {
    position: relative;
    min-height: 500px;
    width: 100%;
    border-radius: 16px;
    padding: 1rem;
    background: transparent;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
    visibility: hidden;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    visibility: visible;
    pointer-events: auto;
    height: auto;
    min-height: 100%;
}

.testimonial-content {
    background: #0f172a; /* Dark navy background */
    padding: 3.5rem 3rem 3rem;
    border-radius: 12px;
    color: #e2e8f0; /* Light text for better contrast */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #2d3748;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Removed floating animation for testimonial content */

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e2e8f0; /* Lighter text for better readability */
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
content: '\201C';
font-family: Georgia, serif;
font-size: 4rem;
color: #edf2f7;
position: absolute;
line-height: 1;
opacity: 0.7;
}

.testimonial-content p::before {
top: -1rem;
left: 0;
}

.testimonial-content p::after {
content: '\201D';
bottom: -2rem;
right: 0;
}

.testimonial-rating {
    color: #f6ad55;
    margin: 1.5rem 0;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.testimonial-rating i {
    position: relative;
    text-shadow: 0 0 8px rgba(255, 203, 92, 0.5);
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #f6ad55, #f6e05e, #f6ad55);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        background-position: 0% center;
        transform: scale(1);
    }
    50% {
        background-position: 100% center;
        transform: scale(1.1);
    }
    100% {
        background-position: 0% center;
        transform: scale(1);
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b; /* Slightly lighter navy for author section */
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem auto 0;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-slide:hover .testimonial-author {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 108, 247, 0.15);
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-slide:hover .testimonial-author img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(74, 108, 247, 0.2);
}

.testimonial-author h4 {
    margin: 0 0 0.3rem;
    font-size: 1.4rem;
    color: #ffffff; /* White for better contrast */
    font-weight: 600;
    letter-spacing: 0.5px;
}

.testimonial-author span {
    color: #cbd5e1; /* Lighter text for better readability */
    font-size: 1.1rem;
    font-weight: 400;
    display: block;
    opacity: 0.9;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 20px;
    color: #4a6cf7;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

.testimonial-nav:hover {
    background: #4a6cf7;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 7px 25px rgba(74, 108, 247, 0.3);
    border-color: transparent;
}

.testimonial-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 12px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(145, 235, 117, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a6cf7, #a55eea);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.testimonial-dot.active {
    transform: scale(1.2);
    border-color: #4a6cf7;
    background: transparent;
}

.testimonial-dot.active::after {
    opacity: 1;
}

.testimonial-dot:hover:not(.active) {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-carousel {
        padding: 2rem 3rem;
    }
    
    .testimonial-content {
        padding: 2.5rem 2rem 2rem;
    }
    
    .testimonial-content p {
        font-size: 1.2rem;
    }
    
    .testimonial-author {
        padding: 1.2rem 1.5rem;
    }
    
    .testimonial-author img {
        width: 60px;
        height: 60px;
    }
    
    .author-info h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
   .testimonials {
        padding: 4.4rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-carousel {
        padding: 2rem 2.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .testimonial-rating {
        font-size: 1.3rem;
        margin: 1.2rem 0;
    }
    
    .testimonial-rating i {
        font-size: 1.3rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        max-width: 300px;
    }
    
    .testimonial-author img {
        margin: 0 0 1rem 0;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .testimonial-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.25rem 1.25rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        padding: 1.25rem;
    }
    
    .author-info h4 {
        font-size: 1.2rem;
    }
    
    .author-info span {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #4a6cf7, #6c5ce7, #a55eea);
    animation: gradientBG 8s ease infinite;
    background-size: 200% 200%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#contact .section-header h2::after {
    display: none;
}

.section-header p {
    color: #718096;
    font-size: 1.35rem;
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #4a6cf7;
    transition: all 0.3s ease;
}

.email-card::before { background: #4a6cf7; }
.phone-card::before { background: #6c5ce7; }
.location-card::before { background: #a55eea; }

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    height: 8px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.contact-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transform: scale(1.5);
}

.email-card .contact-icon { background: #4a6cf7; }
.phone-card .contact-icon { background: #6c5ce7; }
.location-card .contact-icon { background: #a55eea; }

.contact-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-link, .contact-text {
    color: #4a5568;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 1rem;
}

.contact-link:hover {
    color: #4a6cf7;
}

.contact-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(74, 108, 247, 0.5), transparent);
    animation: wave 2s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .contact-wave {
    opacity: 1;
}

@keyframes wave {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq {
    text-align: justify;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #f0f7ff;
    color: #333;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #444;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin: 0;
}

.contact-form .form-group {
    flex: 1;
    margin: 0;
    width: 100%;
}

.contact-form .half-width {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

.contact-form .hero-content {
    flex: 1;
    padding-right: 40px;
    margin-top: -20px; /* Prevents flex items from overflowing */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.5);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Clean and organized form styles */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.contact-form button:disabled:hover {
    transform: none !important;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Form Messages */
.form-message {
    padding: 12px 20px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.form-message.success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.form-message.error-message {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
}

.form-message i {
    margin-right: 8px;
}

/* Loading state */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: #f0f7ff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #d6e7ff;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-us-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-us-header h2 {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-us-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    position: relative;
}

.about-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: justify;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px 0 1.5rem;
    background: white;
    color: #667eea;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.vision-card .card-icon {
    color: #667eea;
}

.culture-card .card-icon {
    color: #764ba2;
}

.about-card h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-card p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.benefits-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    white-space: normal;
}

.consultation-details h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1.2rem;
    color: #2d3748;
    font-weight: 600;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    font-size: 1.4rem;
    line-height: 1.6;
}

.vision-list li {
    margin-bottom: 0.8rem;
    padding-left: 0;
    position: relative;
    color: #4a5568;
    font-size: 1.4rem;
    text-align: left;
    display: flex;
    align-items: center;
}

.vision-list li i {
    margin-right: 0.8rem;
    color: #4CAF50;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    top: 0;
    left: 0;
}

.culture-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.culture-item {
    background: #f8f9ff;
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.culture-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e0;
}

.culture-item i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #667eea;
}

.culture-item span {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.culture-quote {
    font-style: italic;
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    border-left: 4px solid #764ba2;
    margin-top: auto;
    font-size: 1.05rem;
    color: #4a5568;
}

/* Responsive Design for About Us */
@media (max-width: 992px) {
    .about-us-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .culture-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 4rem 0;
    }
    
    .about-us-header h2 {
        font-size: 2.2rem;
    }
    
    .card-content {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: -40px 0 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.6rem;
    }
    
    .about-card p {
        font-size: 1rem;
    }
    
    .culture-highlights {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 15px 0 10px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    margin-right: 0.08rem;
}

.footer-logo .logo-text {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 0.25em;
    display: inline-block;
    font-size: 1.2rem;
    color: #FF6F00;
    font-weight: 700;
}

.footer-section .tagline {
    font-size: 1.05rem;
    margin: 0.3rem 0 1rem;
    color: #e0e0e0;
    line-height: 1.5;
    font-weight: 400;
}

.footer-logo img {
    width: 50px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.footer-logo span {
    color: #FF6F00;
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 4px;
}

.footer-section {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-section p {
    color: #e0e0e0;
    margin: 0.2rem 0 0.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
}

.footer-section h3 {
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-section ul li {
    margin: 0;
    padding: 0.05rem 0;
    line-height: 1.3;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 0.15rem 0;
    font-size: 1.05rem;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-section i {
    margin-right: 0.6rem;
    color: #667eea;
    font-size: 1em;
    min-width: 1.2rem;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

.footer-links {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #667eea;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .solution-item,
    .solution-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
     .scroll-buttons {
        bottom: 90px; /* Slightly higher than on desktop */
        right: 20px;
    }
    
    .schedule-meeting-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
    
    .schedule-text {
        display: none; /* Hide text on mobile */
    }
    
    .schedule-icon {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* About Us Section - Light Blue Background */
#aboutus {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 50%, #81d4fa 100%);
    padding: 60px 0; /* Reduced from 80px */
    position: relative;
}

#aboutus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(3, 169, 244, 0.1) 100%);
    pointer-events: none;
}

#aboutus .container {
    position: relative;
    z-index: 1;
}

#aboutus h2 {
    color: #0277bd;
    text-shadow: 0 2px 4px rgba(2, 119, 189, 0.1);
}

#aboutus .hero-subtitle {
    color: #01579b;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

/* Banner Section */
.banner {
    background-color: #000;
    padding: 2.5rem 0;
    margin-top: 80px;
    overflow: hidden;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.banner-symbol {
    color: #FF6F00;
    font-size: 2.5rem;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.5);
    animation: symbolAppear 0.8s 0.5s ease-out forwards;
}

.banner-symbol.right {
    animation-delay: 0.8s;
}

.banner-text {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: textAppear 0.8s 0.3s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes symbolAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-buttons {
    position: fixed;
    right: 30px;
    bottom: 100px; /* Changed from 30px to 100px */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000; /* Increased from 999 */
    opacity: 1; /* Ensure it's visible */
    visibility: visible; /* Ensure it's visible */
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.scroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.scroll-btn i {
    font-size: 1.2rem;
}

/* Hide scroll buttons by default */
.scroll-buttons {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show scroll buttons when needed */
.scroll-buttons.visible {
    opacity: 1;
    visibility: visible;
}

/* Hide scroll-to-bottom button when at bottom */
.scroll-buttons.at-bottom #scrollToBottom {
    display: none;
}

/* Hide scroll-to-top button when at top */
.scroll-buttons.at-top #scrollToTop {
    display: none;
}

.schedule-meeting-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.schedule-meeting-btn i {
    font-size: 1.2rem;
}

/* Ensure scroll-to-top button stays above the schedule button */
.scroll-to-top {
    bottom: 90px;
    right: 30px;
    z-index: 1000;
}

/* Schedule Meeting Button - Modern Floating Style */
.schedule-meeting-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #3B82F6;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.schedule-meeting-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.schedule-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.schedule-text {
    font-weight: 600; /* Slightly bolder */
}

/* Consultation Button in Footer */
.consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.consultation-btn i {
    font-size: 1rem;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    background: linear-gradient(135deg, #4338CA 0%, #6D28D9 100%);
}

/* Hover Effect */
.schedule-meeting-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    background: #2563EB;
}

/* Responsive Design */
@media (max-width: 768px) {
     .scroll-buttons {
        bottom: 90px; /* Slightly higher than on desktop */
        right: 20px;
    }
    
    .schedule-meeting-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
    
    .schedule-text {
        display: none; /* Hide text on mobile */
    }
    
    .schedule-icon {
        margin-right: 0;
    }
}

/* Animated Text Section Styles */
.static-heading {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
    font-family: 'Inter', sans-serif;
}

/* Consolidated with main animated-text-section styles */

.animated-text {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
}

.angle-bracket {
    color: #FF9933 !important; /* Saffron color with !important to force override */
    font-size: 2.5rem; /* Reduced from 2.5rem to better match text */
    font-weight: bold;
    line-height: 1;
    margin: 0 5px;
    display: inline-block !important;
    -webkit-text-fill-color: #FF9933 !important;
    vertical-align: middle;
}

/* More specific selector to override any other styles */
.animated-text-section .animated-text #juggling-text {
    color: #87CEEB !important; /* Light blue color */
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    min-width: auto;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    vertical-align: middle;
    text-align: center;
}

/* Ensure button is above other elements */
.scroll-buttons {
    z-index: 9998; /* One less than schedule button */
}

/* Adjust scroll-to-top button position on smaller screens */
@media (max-width: 768px) {
    .schedule-meeting-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
    }
}


