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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo i {
    color: #7cb518;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #7cb518;
    transform: translateY(-2px);
}

.nav-menu .external-link {
    background: rgba(255, 255, 255, 0.1)!important;
    border: 1px solid rgba(255, 255, 255, 0.3)!important;
}

.nav-menu .external-link:hover {
    background: rgba(255, 255, 255, 0.2)!important;
    border-color: rgba(255, 255, 255, 0.5)!important;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.9), rgba(30, 64, 128, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f0f8ff" width="1200" height="800"/><circle fill="%232c5aa0" opacity="0.1" cx="200" cy="200" r="100"/><circle fill="%237cb518" opacity="0.1" cx="800" cy="300" r="150"/><circle fill="%232c5aa0" opacity="0.1" cx="1000" cy="600" r="80"/></svg>');
    color: white;
    text-align: center;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 300%; /* 3 slides */
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    width: 33.333%; /* 1/3 del contenedor */
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slide:not(.active) {
    pointer-events: none;
}

/* Estilos específicos para cada slide - (Reservado para futuro uso) */

/* Contenedores de contenido de cada slide */
.slide-content-1,
.slide-content-2,
.slide-content-3 {
    pointer-events: auto;
}

/* Títulos de cada slide */
.slide-title-1,
.slide-title-2,
.slide-title-3 {
    pointer-events: auto;
}

/* Textos de cada slide */
.slide-text-1,
.slide-text-2,
.slide-text-3 {
    pointer-events: auto;
}

/* Contenedores de botones de cada slide */
.slide-buttons-1,
.slide-buttons-2,
.slide-buttons-3 {
    pointer-events: auto;
}

.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #2c5aa0;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
}

.slider-arrow:hover {
    background: #7cb518;
    color: white;
    border-color: #7cb518;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 181, 24, 0.3);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow i {
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease 0.4s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #7cb518;
    color: white;
}

.btn-primary:hover {
    background: #6ba015;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 181, 24, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card i {
    font-size: 3rem;
    color: #7cb518;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: #7cb518;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 3px solid #7cb518;
    transform: scale(1.05);
}

.price-card.featured::before {
    content: "MÁS POPULAR";
    position: absolute;
    top: 20px;
    right: -30px;
    background: #7cb518;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price {
    font-size: 3rem;
    color: #2c5aa0;
    font-weight: bold;
}

.price span {
    font-size: 1rem;
    color: #666;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #7cb518;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7cb518;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Page Content */
.page-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-header {
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.content-section {
    padding: 50px 0;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c5aa0;
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #777;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 10001;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #7cb518;
}

.modal-body {
    padding: 2rem;
}

/* Estilos únicos para botones del slider - Z-index alto para evitar clicks en contenido oculto */
.btn-hosting,
.btn-domain,
.btn-ssd,
.btn-info-ssd,
.btn-support,
.btn-info-support {
    position: relative;
    z-index: 15;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

.btn-hosting:hover,
.btn-domain:hover,
.btn-ssd:hover,
.btn-info-ssd:hover,
.btn-support:hover,
.btn-info-support:hover {
    z-index: 20;
    transform: translateY(-2px);
}

/* --- New Home & About Page Styles --- */

/* Trust Indicators */
.trust-bar {
    background: #f8f9fa;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.trust-logo-item {
    font-size: 2rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.trust-logo-item:hover {
    color: #2c5aa0;
    transform: scale(1.1);
    opacity: 1;
}

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #7cb518;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: #fff;
}

/* Testimonials Slider */
.testimonials-section {
    padding: 5rem 0;
    background: #fff;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem; /* Space for dots */
}

.testimonials-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-out;
}

.testimonial-slide {
    width: 100%;
    flex: 0 0 100%;
    padding: 10px; /* Reduced padding slightly */
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Tablet */
@media (min-width: 768px) {
    .testimonial-slide {
        width: 50%;
        flex: 0 0 50%;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .testimonial-slide {
        width: 25%;
        flex: 0 0 25%;
    }
}

/* =========================================
   About Us Page Styles (Elegant & Visually Striking)
   ========================================= */

#nosotros .content-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding-top: 4rem;
    position: relative;
}

/* Subtle decorative circles */
#nosotros .content-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 181, 24, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

#nosotros .content-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 90, 160, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Mission/Vision Section (First Row) */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

@media (min-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Values + Why Us Section (Second Row - Full Width) */
.values-why-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
}

.values-why-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 181, 24, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-heading {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 0;
    background: linear-gradient(135deg, #0f172a 0%, #2c5aa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated gradient underline */
.about-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7cb518, #2c5aa0);
    border-radius: 2px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.about-block {
    margin-bottom: 3.5rem;
}

.about-block p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-block p strong {
    color: #2c5aa0;
    font-weight: 600;
    position: relative;
}

/* Highlight text with elegant quote styling */
.highlight-text {
    font-size: 1.3rem;
    color: #1e3a8a;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(124, 181, 24, 0.05) 100%);
    border-left: 4px solid #7cb518;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border-radius: 0 12px 12px 0;
    position: relative;
    font-style: italic;
}

.highlight-text::before {
    content: '"';
    position: absolute;
    left: 10px;
    top: -20px;
    font-size: 5rem;
    color: rgba(124, 181, 24, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Values and Why Us Grid Layout */
.values-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .values-why-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Values List - Premium Cards with Icons */
.values-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
    list-style: none;
}

.values-list li {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient accent on hover */
.values-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7cb518, #2c5aa0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.values-list li:hover::before {
    transform: scaleX(1);
}

.values-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(44, 90, 160, 0.2);
    border-color: rgba(44, 90, 160, 0.1);
}

.value-item {
    position: relative;
}

.value-item strong {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Add icon before each value title */
.value-item strong::before {
    content: '✦';
    color: #7cb518;
    font-size: 1.2rem;
}

.value-item span {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    display: block;
}

/* Why Us Block - Striking yet Elegant */
.why-us-block {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px -15px rgba(44, 90, 160, 0.4);
    border: none;
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
}

/* Decorative pattern */
.why-us-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us-block .about-heading {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.why-us-block .about-heading::after {
    background: #7cb518;
}

.why-us-block p {
    color: rgba(255,255,255,0.95);
}

.why-us-block h4 {
    color: #7cb518;
}

.check-list {
    margin-top: 2rem;
}

.check-list li {
    padding-left: 3rem;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    position: relative;
}

.check-list li i {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #7cb518;
    color: white;
    box-shadow: 0 4px 12px rgba(124, 181, 24, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image with elegant frame */
.team-img-main {
    width: 100%;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0,0,0,0.05);
    position: sticky;
    top: 150px;
    transition: all 0.5s ease;
}

.team-img-main:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 60px -15px rgba(44, 90, 160, 0.3),
        0 0 0 1px rgba(44, 90, 160, 0.1);
}

/* Fade in animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.about-block {
    animation: fadeIn 0.8s ease-out backwards;
}

.about-block:nth-child(1) { animation-delay: 0.1s; }
.about-block:nth-child(2) { animation-delay: 0.2s; }
.about-block:nth-child(3) { animation-delay: 0.3s; }
.about-block:nth-child(4) { animation-delay: 0.4s; }

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #2c5aa0;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Slider Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.t-dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    background: #7cb518;
    transform: scale(1.2);
}

/* Timeline (Our Story) */
.timeline-section {
    padding: 5rem 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #eee;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #7cb518;
    border: 4px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: -14px;
    z-index: 1;
    box-shadow: 0 0 0 3px #eee;
}

.timeline-item.right .timeline-dot {
    left: -14px;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: #eefec3;
    color: #5a8a00;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Tech Stack */
.tech-stack-section {
    padding: 4rem 0;
    background: #0f1525;
    color: white;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.tech-item i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(#7cb518, #2c5aa0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    height: 250px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #7cb518;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

/* Responsive Adjustments for Timeline */
@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item.left {
        text-align: left;
    }
    
    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 17px;
        right: auto;
    }
}

/* --- New Contact Page Styles --- */

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    opacity: 0.3;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

/* Info Column Styles */
.contact-title {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #7cb518;
    border-radius: 2px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(124, 181, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.4rem;
    color: #7cb518;
}

.info-details h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.info-details p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.info-details a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.info-details a:hover {
    text-decoration: underline;
}

.sub-text {
    font-size: 0.85rem;
    color: #999;
    display: block;
    margin-top: 0.3rem;
}

/* Social Connect */
.social-connect {
    margin-top: 3rem;
}

.social-connect h4 {
    margin-bottom: 1.5rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5aa0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #2c5aa0;
    color: #fff;
    transform: translateY(-3px);
}

/* Form Styles */
.contact-form-col {
    position: relative;
}

.form-box {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #2c5aa0, #7cb518);
}

.form-box h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    transition: color 0.3s ease;
}

.textarea-wrapper i {
    top: 20px;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Space for icon */
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fcfcfc;
}

.form-control:focus {
    border-color: #2c5aa0;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
}

.form-control:focus + i,
.input-wrapper:focus-within i {
    color: #2c5aa0;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* Success Message Animation (Optional for future JS) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
