/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    background: linear-gradient(135deg, #003366, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #F4E87C;
    font-weight: 500;
    font-style: italic;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #003366;
    background: rgba(0, 51, 102, 0.05);
}

.nav-btn-lms {
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 51, 102, 0.2);
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 102, 204, 0.3);
    touch-action: manipulation;
    position: relative;
    z-index: 1;
}

.nav-btn-lms:hover {
    background: linear-gradient(135deg, #0066cc, #003366);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.nav-btn-lms:active {
    transform: scale(0.98);
}

.nav-btn-lms i {
    font-size: 0.8rem;
}

.nav-btn-ict {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 200, 83, 0.2);
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 200, 83, 0.3);
    touch-action: manipulation;
    position: relative;
    z-index: 1;
}

.nav-btn-ict:hover {
    background: linear-gradient(135deg, #00e676, #00c853);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.nav-btn-ict:active {
    transform: scale(0.98);
}

.nav-btn-ict i {
    font-size: 0.8rem;
}

.nav-btn-academy {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.2);
}

.nav-btn-academy:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.nav-btn-academy i {
    font-size: 0.8rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #f9f9f9 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 51, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    background: linear-gradient(135deg, #003366, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description,
.hero-subtitle,
.hero-mission {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
    animation: fadeIn 1s ease-out;
}

.hero-description {
    animation-delay: 0.8s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-subtitle {
    animation-delay: 1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-mission {
    animation-delay: 1.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 1.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.btn-outline:hover {
    background: #003366;
    color: white;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #003366;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #003366;
    font-size: 2rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #003366, #0066cc);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #fafafa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.about-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #003366, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 50%;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.mission-card h4,
.vision-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.about-image {
    position: sticky;
    top: 120px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

/* Values Section */
.values-title {
    font-size: 2rem;
    text-align: center;
    color: #333;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

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

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #003366, #0066cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05), rgba(0, 102, 204, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 50%;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

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

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.program-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.program-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Services Section */
.services {
    background: #fafafa;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
}

.project-management {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-management h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #003366, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pm-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.pm-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.pm-feature:hover {
    background: #f0f0f0;
}

.pm-feature i {
    color: #003366;
    font-size: 1.2rem;
    width: 20px;
}

.pm-description {
    font-style: italic;
    color: #666;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Clients Section */
.clients-content {
    text-align: center;
}

.clients-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.setas-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 40px;
}

.setas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.seta-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.seta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.seta-card i {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.seta-card:hover i {
    transform: scale(1.2);
}

.seta-card span {
    display: block;
    font-weight: 600;
    color: #333;
}

.reputation-text {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    font-style: italic;
}

/* Accreditations Section */
.accreditations {
    background: #fafafa;
}

.accreditations-content {
    text-align: center;
}

.accreditations-description,
.standards-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.resources-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 40px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: #003366;
}

.resource-link i {
    font-size: 2rem;
    color: #003366;
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: scale(1.1);
}

.resource-link span {
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 50%;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-card a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #333;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003366;
}

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

.social-media {
    text-align: center;
}

.social-media h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.footer-text {
    font-size: 1.1rem;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #999;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #003366;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.2);
}

.testimonial-avatar svg {
    width: 100%;
    height: 100%;
}

.quote-icon {
    text-align: right;
    color: #003366;
    opacity: 0.2;
    font-size: 2rem;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    min-height: 100px;
}

.testimonial-author {
    margin-bottom: 15px;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #0066cc;
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20ba56;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #0066cc, #003366);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.5);
}

/* Tech Solutions Subsection within About */
.tech-solutions-subsection {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.tech-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.tech-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.tech-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #003366;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-top-color: #0066cc;
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

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

.tech-icon i {
    font-size: 2rem;
    color: white;
}

.tech-card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 15px;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    margin-top: 80px;
}

.projects-section h3 {
    font-size: 2rem;
    color: #003366;
    text-align: center;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.project-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #0066cc;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: #003366;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.project-header i {
    font-size: 1.8rem;
    color: #0066cc;
}

.project-header h4 {
    font-size: 1.3rem;
    color: #003366;
    margin: 0;
}

.project-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Future Vision */
.future-vision {
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 20px;
    padding: 60px;
    color: white;
    text-align: center;
}

.vision-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.vision-icon i {
    font-size: 3rem;
    color: white;
}

.future-vision h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.future-vision p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.vision-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vision-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.vision-item i {
    font-size: 1.5rem;
    color: #ffc107;
}

.vision-item span {
    font-size: 1.05rem;
    font-weight: 500;
}

/* Team Gallery Section */
.team-gallery {
    background: #fafafa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.gallery-content p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Video Showcase Section */
.video-showcase {
    background: white;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Partners Section */
.partners-section {
    margin-top: 60px;
}

.partners-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

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

.partner-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partner-card i {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.partner-card:hover i {
    transform: scale(1.2);
}

.partner-card span {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}



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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        backdrop-filter: blur(15px);
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        margin: 5px 20px;
        border-radius: 8px;
        min-height: 50px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
        cursor: pointer;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .setas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-features {
        grid-template-columns: 1fr;
    }
    
    .future-vision {
        padding: 40px 25px;
    }
    
    .nav-menu .nav-btn-lms,
    .nav-menu .nav-btn-ict {
        justify-content: center;
        width: calc(100% - 40px);
        margin: 15px 20px;
        border-radius: 25px;
        padding: 16px 20px;
        min-height: 50px;
        pointer-events: auto;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
        touch-action: manipulation;
        position: relative;
        z-index: 10;
    }
    
    .nav-menu .nav-btn-lms:active {
        transform: scale(0.97);
        opacity: 0.9;
    }
    
    .nav-menu .nav-btn-ict:active {
        transform: scale(0.97);
        opacity: 0.9;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .nav-link {
        padding: 12px 20px;
        border-radius: 0;
        width: 100%;
        text-align: center;
    }
    
    /* Ensure buttons in mobile menu are clickable */
    .nav-menu.active .nav-btn-lms,
    .nav-menu.active .nav-btn-ict {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .setas-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        gap: 20px;
    }
    
    .about-card,
    .mission-card,
    .vision-card {
        padding: 25px;
    }
    
    .project-management {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .value-card,
    .program-card,
    .service-item {
        padding: 25px;
    }
    
    .tech-card {
        padding: 30px 20px;
    }
    
    .project-card {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .future-vision {
        padding: 30px 20px;
    }
    
    .future-vision h3 {
        font-size: 1.6rem;
    }
    
    .future-vision p {
        font-size: 1rem;
    }
    
    .vision-icon {
        width: 80px;
        height: 80px;
    }
    
    .vision-icon i {
        font-size: 2rem;
    }
    
    .tech-description {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-container {
        border-radius: 10px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        min-height: auto;
    }
    
    .nav-logo {
        gap: 10px;
    }
    
    .logo-img {
        height: 40px;
    }
}

/* ========================================
   ACADEMY HERO - PROFESSIONAL DESIGN
   ======================================== */

.academy-hero {
    background: linear-gradient(135deg, #001a33 0%, #003366 50%, #004d99 100%);
    position: relative;
    overflow: hidden;
}

.hero-particles-academy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle-academy {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatAcademy linear infinite;
}

@keyframes floatAcademy {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.academy-hero .hero-content {
    position: relative;
    z-index: 2;
    display: block;
    text-align: center;
    padding: 140px 40px 80px;
}

.academy-hero .hero-text {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-badge-academy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.welcome-badge-academy i {
    color: #F4E87C;
}

.hero-main-title-academy {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.typing-container-academy {
    display: block;
    color: #F4E87C;
    min-height: 70px;
}

.typing-text-academy {
    border-right: 3px solid #F4E87C;
    padding-right: 8px;
}

.cursor-academy {
    animation: blinkAcademy 0.7s infinite;
    color: #F4E87C;
}

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

.hero-tagline-academy {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.hero-tagline-academy strong {
    color: #F4E87C;
    font-weight: 600;
}

/* Value Propositions */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2rem;
    color: #F4E87C;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.value-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    margin: 60px 0;
}

.cta-heading {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

.division-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.division-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.skills-card {
    border-color: #0066cc;
}

.skills-card:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(255, 255, 255, 0.95));
}

.ict-card {
    border-color: #00c853;
}

.ict-card:hover {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(255, 255, 255, 0.95));
}

.division-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #003366;
}

.skills-card .division-icon {
    color: #0066cc;
}

.ict-card .division-icon {
    color: #00c853;
}

.division-card h4 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 700;
}

.division-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 51, 102, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: #003366;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 102, 204, 0.2);
    touch-action: manipulation;
    position: relative;
    min-height: 48px;
}

.card-link:hover {
    background: #003366;
    color: #fff;
    transform: translateX(5px);
}

.card-link:active {
    transform: translateX(3px) scale(0.98);
    opacity: 0.9;
}

.skills-card .card-link:hover {
    background: #0066cc;
    border-color: #0066cc;
}

.ict-card .card-link:hover {
    background: #00c853;
    border-color: #00c853;
}

.card-link i {
    font-size: 1.2rem;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #F4E87C 0%, #D4AF37 100%);
    color: #003366;
    box-shadow: 0 10px 30px rgba(244, 232, 124, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 232, 124, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsive Academy Hero */
@media (max-width: 768px) {
    .hero-main-title-academy {
        font-size: 2.2rem;
    }
    
    .typing-container-academy {
        min-height: 50px;
    }
    
    .hero-tagline-academy {
        font-size: 1rem;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .division-cards {
        grid-template-columns: 1fr;
    }
    
    .division-card {
        padding: 30px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .academy-hero .hero-content {
        padding: 120px 20px 60px;
    }
    
    .hero-main-title-academy {
        font-size: 1.8rem;
    }
    
    .cta-heading {
        font-size: 1.5rem;
    }
    
    .division-card h4 {
        font-size: 1.5rem;
    }
}

/* ========================================
   SERVICES MODAL - PROFESSIONAL WINDOW
   ======================================== */

.services-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.services-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    width: 60%;
    max-width: 1400px;
    height: 85vh;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.services-modal.active .modal-container {
    transform: scale(1);
}

/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: #ffffff;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #F4E87C;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.modal-header i {
    font-size: 2rem;
    color: #F4E87C;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Body - Scrollable */
.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
    scroll-behavior: smooth;
}

.modal-body::-webkit-scrollbar {
    width: 12px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0066cc, #003366);
}

/* Services Introduction */
.services-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(244, 232, 124, 0.05));
    border-left: 5px solid #0066cc;
    border-radius: 10px;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.intro-text strong {
    color: #003366;
    font-weight: 600;
}

/* Service Categories */
.services-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-category {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-category:hover {
    border-color: #0066cc;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.category-header {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: #ffffff;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header i {
    font-size: 1.8rem;
    color: #F4E87C;
}

.category-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Service Items */
.service-items {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
}

.service-content h4 {
    color: #003366;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.service-content p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 15px 0;
    font-size: 1.05rem;
}

/* Service Benefits */
.service-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-benefits i {
    color: #00c853;
    font-size: 1rem;
}

/* Modal Footer */
.modal-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);
    padding: 40px;
    border-top: 2px solid #e0e0e0;
}

.footer-cta {
    text-align: center;
}

.footer-cta h3 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.modal-btn-primary,
.modal-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #F4E87C 0%, #D4AF37 100%);
    color: #003366;
    box-shadow: 0 5px 20px rgba(244, 232, 124, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 232, 124, 0.4);
}

.modal-btn-secondary {
    background: linear-gradient(135deg, #003366, #0066cc);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.modal-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

/* Featured Button on Hero */
.btn-hero-featured {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #F4E87C 0%, #D4AF37 100%);
    color: #003366;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244, 232, 124, 0.4);
    position: relative;
    animation: pulse-featured 2s ease-in-out infinite;
}

.btn-hero-featured:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(244, 232, 124, 0.6);
}

.btn-badge {
    background: #ff4444;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    animation: badge-pulse 1.5s ease-in-out infinite;
}

@keyframes pulse-featured {
    0%, 100% { box-shadow: 0 10px 30px rgba(244, 232, 124, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(244, 232, 124, 0.6); }
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Modal */
@media (max-width: 1024px) {
    .modal-container {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .modal-container {
        width: 90%;
        height: 90vh;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .service-benefits {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .footer-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .modal-btn-primary,
    .modal-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 95%;
        height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .modal-header i {
        font-size: 1.5rem;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .services-intro {
        padding: 20px;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .category-header {
        padding: 15px 20px;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
    
    .service-items {
        padding: 20px;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .service-content h4 {
        font-size: 1.1rem;
    }
    
    .modal-footer {
        padding: 25px 20px;
    }
    
    .footer-cta h3 {
        font-size: 1.5rem;
    }
    
    .btn-hero-featured {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   All Device Optimization
   ======================================== */

/* Large Desktop (1920px and up) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .nav-container {
        max-width: 1800px;
    }
    
    .hero-main-title-academy {
        font-size: 4.5rem;
    }
    
    .hero-tagline-academy {
        font-size: 1.4rem;
        max-width: 1200px;
    }
    
    .division-cards {
        grid-template-columns: repeat(2, minmax(500px, 1fr));
        max-width: 1600px;
        margin: 30px auto;
    }
    
    .modal-container {
        max-width: 1600px;
    }
}

/* Desktop (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .hero-main-title-academy {
        font-size: 3.8rem;
    }
    
    .division-cards {
        grid-template-columns: repeat(2, minmax(450px, 1fr));
    }
}

/* Tablet Landscape (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .nav-container {
        padding: 0 25px;
    }
    
    .hero-main-title-academy {
        font-size: 3.2rem;
    }
    
    .hero-tagline-academy {
        font-size: 1.15rem;
    }
    
    .value-props {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .division-cards {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 30px auto;
    }
    
    .division-card {
        padding: 35px;
    }
    
    .modal-container {
        width: 70%;
    }
    
    .service-benefits {
        grid-template-columns: 1fr;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .academy-hero .hero-content {
        padding: 120px 30px 70px;
    }
    
    .hero-main-title-academy {
        font-size: 2.8rem;
    }
    
    .typing-container-academy {
        min-height: 60px;
    }
    
    .hero-tagline-academy {
        font-size: 1.1rem;
        max-width: 700px;
    }
    
    .value-props {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .value-item {
        padding: 18px;
    }
    
    .value-item i {
        font-size: 1.8rem;
    }
    
    .division-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .division-card {
        padding: 32px;
    }
    
    .hero-cta-buttons {
        gap: 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-featured {
        padding: 15px 28px;
        font-size: 0.95rem;
    }
    
    /* Modal adjustments for tablet */
    .modal-container {
        width: 85%;
        height: 88vh;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-body {
        padding: 30px;
    }
    
    .service-items {
        padding: 25px;
    }
    
    .service-item {
        padding: 22px;
    }
    
    .category-header h3 {
        font-size: 1.4rem;
    }
}

/* Mobile Landscape (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .academy-hero .hero-content {
        padding: 110px 25px 60px;
    }
    
    .hero-main-title-academy {
        font-size: 2.4rem;
    }
    
    .typing-container-academy {
        min-height: 55px;
    }
    
    .hero-tagline-academy {
        font-size: 1.05rem;
    }
    
    .value-props {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .value-item {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .value-item i {
        font-size: 1.5rem;
    }
    
    .cta-heading {
        font-size: 1.8rem;
    }
    
    .division-cards {
        grid-template-columns: 1fr;
    }
    
    .division-card {
        padding: 28px;
    }
    
    .division-card h4 {
        font-size: 1.6rem;
    }
    
    .division-card p {
        font-size: 1rem;
    }
}

/* Mobile Portrait (481px - 639px) */
@media (min-width: 481px) and (max-width: 639px) {
    .nav-container {
        height: 65px;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .academy-hero .hero-content {
        padding: 105px 22px 55px;
    }
    
    .hero-main-title-academy {
        font-size: 2rem;
    }
    
    .typing-container-academy {
        min-height: 50px;
    }
    
    .hero-tagline-academy {
        font-size: 1rem;
    }
    
    .welcome-badge-academy {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .division-cards {
        grid-template-columns: 1fr;
    }
    
    .division-card {
        padding: 25px;
    }
    
    .btn-hero-featured {
        padding: 15px 26px;
        font-size: 0.95rem;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    /* Hero adjustments */
    .academy-hero .hero-content {
        padding: 100px 18px 50px;
    }
    
    .welcome-badge-academy {
        font-size: 0.8rem;
        padding: 10px 18px;
        gap: 8px;
    }
    
    .hero-main-title-academy {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    .typing-container-academy {
        min-height: 45px;
        font-size: 1.7rem;
    }
    
    .hero-tagline-academy {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .value-props {
        gap: 12px;
    }
    
    .value-item {
        padding: 16px;
        gap: 12px;
    }
    
    .value-item i {
        font-size: 1.6rem;
    }
    
    .value-item strong {
        font-size: 1rem;
    }
    
    .value-item span {
        font-size: 0.85rem;
    }
    
    .cta-heading {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .division-card {
        padding: 22px;
    }
    
    .division-icon {
        font-size: 2.5rem;
    }
    
    .division-card h4 {
        font-size: 1.4rem;
    }
    
    .division-card p {
        font-size: 0.95rem;
    }
    
    .card-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .card-link i {
        font-size: 1rem;
    }
    
    .hero-cta-buttons {
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .btn-hero-featured {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .btn-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 12px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        display: none;
    }
    
    .academy-hero .hero-content {
        padding: 95px 15px 45px;
    }
    
    .hero-main-title-academy {
        font-size: 1.5rem;
    }
    
    .typing-container-academy {
        font-size: 1.5rem;
        min-height: 40px;
    }
    
    .hero-tagline-academy {
        font-size: 0.9rem;
    }
    
    .welcome-badge-academy {
        font-size: 0.75rem;
        padding: 8px 15px;
    }
    
    .division-card {
        padding: 18px;
    }
    
    .division-card h4 {
        font-size: 1.2rem;
    }
    
    .btn-hero-featured {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Landscape Mode Optimization (all device sizes) */
@media (max-height: 600px) and (orientation: landscape) {
    .academy-hero .hero-content {
        padding: 90px 30px 40px;
    }
    
    .hero-main-title-academy {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .typing-container-academy {
        min-height: 40px;
    }
    
    .hero-tagline-academy {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .welcome-badge-academy {
        margin-bottom: 15px;
    }
    
    .value-props {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin: 25px 0;
    }
    
    .value-item {
        padding: 12px;
    }
    
    .cta-section {
        margin: 30px 0;
    }
    
    .cta-heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .division-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .division-card {
        padding: 20px;
    }
    
    .division-card h4 {
        font-size: 1.3rem;
    }
    
    .hero-cta-buttons {
        margin-top: 25px;
    }
    
    /* Modal in landscape */
    .modal-container {
        height: 95vh;
    }
    
    .modal-header {
        padding: 15px 30px;
    }
    
    .modal-body {
        padding: 25px;
    }
}

/* Tablet Landscape Specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .value-props {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .division-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .division-card {
        padding: 25px;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .hero-particles-academy .particle-academy {
        width: 3px;
        height: 3px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .whatsapp-float,
    .back-to-top,
    .services-modal,
    .hero-particles-academy,
    .btn-badge {
        display: none !important;
    }
    
    .academy-hero {
        background: #ffffff !important;
        color: #000000 !important;
        page-break-after: always;
    }
    
    .hero-main-title-academy,
    .hero-tagline-academy {
        color: #000000 !important;
    }
    
    .division-card {
        page-break-inside: avoid;
        border: 2px solid #000000;
    }
}