/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #003366;
    --bright-blue: #007BFF;
    --orange: #FFA500;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --dark-navy: #001A33;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

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

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar span {
    color: var(--text-light);
}

.top-bar i {
    color: var(--navy-blue);
    margin-right: 5px;
}

.top-social {
    display: flex;
    gap: 10px;
}

.top-social a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.top-social a:hover {
    color: var(--bright-blue);
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--bright-blue);
}

.btn-nav {
    background: var(--navy-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: var(--bright-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy-blue);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 80px 20px;
    background: var(--white);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-link {
    color: var(--navy-blue);
    text-decoration: underline;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-bg) 0%, #E0E0E0 100%);
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0.3),
                0 0 0 30px rgba(0, 123, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder i {
    font-size: 8rem;
    color: var(--text-light);
    opacity: 0.5;
}
.hero-placeholder img {
    /* 1. Ensure the image fills the circular container */
    width: 100%; 
    height: 100%;
    
    /* 2. Crop the image to maintain its aspect ratio and fill the container */
    /* This is CRUCIAL for avoiding stretching and fitting into the circle */
    object-fit: cover; 
    
    /* 3. Make the image itself circular */
    border-radius: 50%;
    
    /* 4. Remove any unwanted whitespace */
    display: block; 
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--navy-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--bright-blue);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.btn-service {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--navy-blue);
    color: var(--white);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ==================== CLIENTS SECTION ==================== */
.clients {
    padding: 40px 20px;
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.clients-scroll {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logo {
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo p {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==================== STATS SECTION ==================== */
.stats {
    padding: 80px 20px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-description {
    max-width: 900px;
    margin: 1.5rem auto 0;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-card {
    background: var(--navy-blue);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
}

.stat-card.stat-accent {
    background: var(--orange);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: 80px 20px;
    background: var(--white);
}

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

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--bright-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: var(--navy-blue);
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

.pricing-duration {
    display: inline-block;
    background: var(--light-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-price {
    margin: 30px 0;
    text-align: center;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-light);
}
/* style.css */

/* In your style.css file (Modify this rule) */
.pricing-price .old-price {
    /* Set the color to a striking red to highlight the deal */
    color: #E74C3C; /* A professional, clear red */
    opacity: 1.0; /* Make it fully opaque so the red stands out */
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
}

.pricing-price .old-price del {
    font-weight: 400; 
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy-blue);
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-bg);
}

.pricing-features i {
    color: var(--bright-blue);
    margin-right: 10px;
}

/* ==================== TRAINING SECTION ==================== */
.training {
    padding: 80px 20px;
    background: var(--light-bg);
}

.training-form-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.training-info h3 {
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.training-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.training-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.training-benefits i {
    color: var(--bright-blue);
    font-size: 1.3rem;
}

.training-contact {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
}

.training-contact h4 {
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.training-contact p {
    padding: 8px 0;
    color: var(--text-dark);
}

.training-contact i {
    color: var(--bright-blue);
    margin-right: 10px;
}

.enrollment-form h3 {
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-note {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-blue);
}

/* ==================== PROCESS SECTION ==================== */
.process {
    padding: 80px 20px;
    background: var(--white);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.process-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0.3);
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bright-blue);
    opacity: 0.3;
}

.step-content h3 {
    color: var(--navy-blue);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 300px;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95), rgba(0, 123, 255, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

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

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

.portfolio-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    margin-bottom: 20px;
}

/* ==================== TECH STACK SECTION ==================== */
.tech-stack {
    padding: 80px 20px;
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tech-item i {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.tech-item span {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-col ul li {
    padding: 8px 0;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--bright-blue);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--bright-blue);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--bright-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

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

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

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 968px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-left, .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        width: 100%;
    }

    .nav-menu.active {
        left: 0;
    }

    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .training-form-container {
        grid-template-columns: 1fr;
    }
    
    .process-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .services-grid,
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .training-form-container {
        padding: 30px 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
}
/* Booking button style */
.booking.button,
.booking-button {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #084298);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Hover effect */
.booking.button:hover,
.booking-button:hover {
  background: linear-gradient(135deg, #084298, #0d6efd);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Click effect */
.booking.button:active,
.booking-button:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Focus (keyboard users) */
.booking.button:focus,
.booking-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.4);
}

/* Disabled */
.booking.button:disabled,
.booking-button:disabled {
  background: #aaa;
  cursor: not-allowed;
  box-shadow: none;
}


.booking.button,
.booking-button {
  display: block;
  margin: 20px auto;
}

position: fixed;
bottom: 20px;
