/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-form input{
    color: black !important;
}

@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 scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-slide-in-top {
    animation: slideInFromTop 0.8s ease-out forwards;
}

/* Initially hide animated elements */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/chocolate-cake.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start!important;
    width: 100%;
    padding: 60px 0;
}

/* Course Information */
.course-info {
    color: white;
}

.certification-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cert-logo {
    /*height: 40px;*/
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cert-logo:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.main-heading .line-1 {
    display: block;
}

.main-heading .line-2 {
    display: block;
    color: #00167A;
    background: linear-gradient(45deg, #00167A, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 10px #00ff88;
}

.benefit-item i {
    color: #00ff88;
    margin-top: 4px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 1rem;
    font-weight: 600;
}

.metrics-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.metric-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-card:hover .metric-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.metric-const {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.metric-label {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.metric-card:hover .metric-label {
    opacity: 1;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.form-title {
    color: #00167A;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: #666;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus {
    outline: none;
    border-color: #00167A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 22, 122, 0.2);
}

.form-group input::placeholder {
    color: #999;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder {
    color: transparent;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00167A, #001550);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-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;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #001550, #000f3a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 22, 122, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 0.95rem;
}

.contact-item i {
    width: 16px;
    color: #00167A;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .main-heading {
        font-size: 3rem;
    }
    
    .form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
    }
    
    .certification-logos {
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .cert-logo {
        height: 35px;
        max-width: 70px;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .benefit-item {
        text-align: left;
    }
    
    .metrics-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .form-container {
        max-width: 100%;
        padding: 25px;
    }
    
    .contact-info {
        align-items: center;
        display: none;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-content {
        padding: 30px 0;
    }
    
    .certification-logos {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .cert-logo {
        height: 30px;
        max-width: 60px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    .metrics-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .metric-card {
        padding: 15px 10px;
    }
    
    .metric-number {
        font-size: 1.4rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 20px 0;
    }
    
    .certification-logos {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .cert-logo {
        height: 25px;
        max-width: 50px;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .metrics-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .metric-card {
        padding: 12px 8px;
    }
    
    .metric-number {
        font-size: 1.2rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    .form-container {
        padding: 15px;
    }
}

/* Inline CTA Form (after sections) */
.inline-cta-wrapper {
    margin: 50px auto 0;
}

.inline-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto; /* button side-by-side */
    gap: 12px;
    background: #00167A; /* brand blue background */
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.inline-cta input[type="text"],
.inline-cta input[type="tel"],
.inline-cta input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e6e8ef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: #ffffff; /* white inputs */
    color: #111827;
}

.inline-cta input:focus {
    outline: none;
    border-color: #00167A;
    box-shadow: 0 0 0 4px rgba(0,22,122,0.1);
}

.inline-cta .cta-button {
    width: auto; /* not full width on desktop */
    border: 2px solid #ffffff; /* white outline */
    border-radius: 9999px; /* pill */
    padding: 12px 24px;
    font-weight: 700;
    color: #ffffff; /* white text */
    background: transparent; /* outlined style */
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.inline-cta .cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    background: #000000; /* black on hover */
    border-color: #000000;
}

.inline-cta .cta-button:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .inline-cta { gap: 10px; }
}

@media (max-width: 768px) {
    .inline-cta { grid-template-columns: 1fr 1fr; }
    .inline-cta .cta-button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 480px) {
    .inline-cta {
        grid-template-columns: 1fr;
    }
    
    .form-heading{
        font-size: 25px !important;
    }
    
    .metric-const{
        font-size: 1.4rem !important;
    }
}

/* About IBCA Section */
.about-section {
    background: white;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00167A;
    margin-bottom: 15px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #00167A;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* About Text Content */
.about-text {
    color: #333;
}

.about-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00167A;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-paragraphs {
    margin-bottom: 30px;
}

.about-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item:hover i {
    transform: scale(1.3);
    color: #001550;
}

.feature-item i {
    color: #00167A;
    margin-top: 6px;
    flex-shrink: 0;
    font-size: 8px;
    transition: all 0.3s ease;
}

.feature-item span {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    transition: color 0.3s ease;
}

.feature-item:hover span {
    color: #00167A;
}

.certification-box {
    background: #f8f9fa;
    border-left: 4px solid #00167A;
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.certification-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 22, 122, 0.1);
    background: #f1f3f4;
}

.certification-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    transition: color 0.3s ease;
}

.certification-box:hover .certification-content {
    color: #00167A;
}

.certification-content strong {
    color: #00167A;
    transition: all 0.3s ease;
}

.certification-box:hover .certification-content strong {
    color: #001550;
    text-shadow: 0 0 10px rgba(0, 22, 122, 0.3);
}

/* About Metrics */
.about-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.metric-card-about {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.metric-card-about:nth-child(1) .metric-icon {
    background: rgba(0, 22, 122, 0.1);
    color: #00167A;
}

.metric-card-about:nth-child(2) .metric-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.metric-card-about:nth-child(3) .metric-icon {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.metric-card-about:nth-child(4) .metric-icon {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.metric-card-about .metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.metric-card-about .metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .about-heading {
        font-size: 1.6rem;
    }
    
    .metrics-grid {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .about-heading {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .about-paragraph {
        text-align: left;
    }
    
    .feature-item {
        justify-content: flex-start;
    }
    
    .certification-box {
        text-align: left;
    }
    
    .metrics-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .metric-card-about {
        padding: 20px 15px;
    }
    
    .metric-card-about .metric-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-heading {
        font-size: 1.2rem;
    }
    
    .about-paragraph {
        font-size: 0.95rem;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .certification-content {
        font-size: 0.95rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .metric-card-about {
        padding: 15px 10px;
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .metric-card-about .metric-number {
        font-size: 1.3rem;
    }
    
    .metric-card-about .metric-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-heading {
        font-size: 1.1rem;
    }
    
    .metrics-grid {
        gap: 10px;
    }
    
    .metric-card-about {
        padding: 12px 8px;
    }
    
    .metric-card-about .metric-number {
        font-size: 1.2rem;
    }
    
    .metric-card-about     .metric-label {
        font-size: 0.75rem;
    }
}

/* Why Should You Choose IBCA Section */
.why-choose-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.reason-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 22, 122, 0.05), transparent);
    transition: left 0.6s ease;
}

.reason-card:hover::before {
    left: 100%;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 22, 122, 0.15);
    border: 2px solid rgba(0, 22, 122, 0.1);
}

.reason-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
}

.reason-icon i {
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Different colors for each icon */
.reason-card:nth-child(1) .reason-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.reason-card:nth-child(2) .reason-icon { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.reason-card:nth-child(3) .reason-icon { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.reason-card:nth-child(4) .reason-icon { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.reason-card:nth-child(5) .reason-icon { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.reason-card:nth-child(6) .reason-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.reason-card:nth-child(7) .reason-icon { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.reason-card:nth-child(8) .reason-icon { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.reason-card:nth-child(9) .reason-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.reason-card:nth-child(10) .reason-icon { background: rgba(139, 69, 19, 0.1); color: #8b4513; }
.reason-card:nth-child(11) .reason-icon { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.reason-card:nth-child(12) .reason-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.reason-card:nth-child(13) .reason-icon { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.reason-card:nth-child(14) .reason-icon { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.reason-card:nth-child(15) .reason-icon { background: rgba(0, 22, 122, 0.1); color: #00167A; }

.reason-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00167A;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-title {
    color: #001550;
    transform: translateY(-2px);
}

.reason-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-description {
    color: #333;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 1024px) {
    .reasons-grid {
        gap: 25px;
    }
    
    .reason-card {
        padding: 25px 20px;
    }
    
    .reason-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .reason-card {
        padding: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reason-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .reason-title {
        font-size: 1.1rem;
    }
    
    .reason-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .reasons-grid {
        gap: 15px;
        margin-top: 30px;
    }
    
    .reason-card {
        padding: 20px;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .reason-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .reason-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .reason-card {
        padding: 15px;
    }
    
    .reason-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .reason-title {
        font-size: 0.95rem;
    }
    
    .reason-description {
        font-size: 0.8rem;
    }
}

/* Perfect Timing Section */
.perfect-timing-section {
    background: #f8fafb;
    padding: 80px 0;
}

.timing-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 22, 122, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #00167A;
    font-weight: 600;
}

.timing-tag i {
    color: #00167A;
    font-size: 6px;
}

/* Statistics Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(0, 22, 122, 0.05);
    border: 1px solid rgba(0, 22, 122, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 22, 122, 0.08);
    border-color: rgba(0, 22, 122, 0.2);
    box-shadow: 0 10px 25px rgba(0, 22, 122, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #00167A;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 2px 10px rgba(0, 22, 122, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #00167A;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 22, 122, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 22, 122, 0.15);
    border: 2px solid rgba(0, 22, 122, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Different colors for each feature icon */
.feature-card:nth-child(1) .feature-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.feature-card:nth-child(2) .feature-icon { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.feature-card:nth-child(3) .feature-icon { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.feature-card:nth-child(4) .feature-icon { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.feature-card:nth-child(5) .feature-icon { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.feature-card:nth-child(6) .feature-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.feature-card:nth-child(7) .feature-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.feature-card:nth-child(8) .feature-icon { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.feature-card:nth-child(9) .feature-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.feature-card:nth-child(10) .feature-icon { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.feature-card:nth-child(11) .feature-icon { background: rgba(139, 69, 19, 0.1); color: #8b4513; }
.feature-card:nth-child(12) .feature-icon { background: rgba(0, 22, 122, 0.1); color: #00167A; }

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00167A;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.feature-card:hover .feature-title {
    color: #001550;
    transform: translateY(-2px);
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #333;
}

/* Responsive Design for Perfect Timing Section */
@media (max-width: 1024px) {
    .stats-container {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .perfect-timing-section {
        padding: 60px 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 40px 0;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .perfect-timing-section {
        padding: 40px 0;
    }
    
    .timing-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 30px 0;
    }
    
    .stat-card {
        padding: 18px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .features-grid {
        gap: 15px;
        margin-top: 25px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .feature-card {
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-description {
        font-size: 0.75rem;
    }
}

/* Student Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonials-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
    padding: 0 60px; /* Add padding for navigation buttons */
}

.testimonials-carousel {
    display: flex;
    align-items: stretch; /* make all slides same height */
    transition: transform 0.5s ease-in-out;
    width: auto; /* let children define total width */
}

.testimonial-slide {
    width: 33.33%; /* show 3 slides by default (desktop/tablet) */
    padding: 0 15px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex; /* allow card to stretch to equal height */
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 260px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 22, 122, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 22, 122, 0.15);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars i {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.quote-icon {
    margin-bottom: 25px;
}

.quote-icon i {
    font-size: 3rem;
    color: #00167A;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon i {
    opacity: 0.6;
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
    color: #00167A;
}

.student-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.student-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f5ff;
    border: 2px solid #00167A10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover .student-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 22, 122, 0.15);
}

.student-details {
    text-align: left;
}

.student-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00167A;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .student-name {
    color: #001550;
}

.student-title {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

.testimonial-card:hover .student-title {
    color: #333;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #00167A;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 22, 122, 0.2);
}

.carousel-nav:hover {
    background: #00167A;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:hover i {
    color: white;
}

.carousel-nav i {
    color: #00167A;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00167A;
    transform: scale(1.2);
}

.dot:hover {
    background: #001550;
    transform: scale(1.1);
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
    
    .testimonials-carousel {
        width: 300%; /* 3 slides visible */
    }
    
    .testimonial-slide {
        width: 33.33%; /* 100% / 3 slides */
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    .quote-icon i {
        font-size: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-carousel-wrapper {
        margin-top: 40px;
        padding: 0 40px;
    }
    
    .testimonials-carousel { width: auto; }
    .testimonial-slide { width: 33.33%; }
    
    .testimonial-card {
        padding: 30px 20px;
        min-height: 240px;
    }
    
    .stars i {
        font-size: 1.1rem;
    }
    
    .quote-icon i {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .student-avatar {
        font-size: 2rem;
    }
    
    .student-name {
        font-size: 1rem;
    }
    
    .student-title {
        font-size: 0.85rem;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 30px;
    }
    
    .testimonials-carousel { width: auto; }
    .testimonial-slide { width: 100%; }
    
    .testimonial-card {
        padding: 25px 20px;
        min-height: 220px;
    }
    
    .stars i {
        font-size: 1rem;
    }
    
    .quote-icon i {
        font-size: 1.8rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .student-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .student-avatar {
        font-size: 1.8rem;
    }
    
    .student-details {
        text-align: center;
    }
    
    .student-name {
        font-size: 0.95rem;
    }
    
    .student-title {
        font-size: 0.8rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 360px) {
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .quote-icon i {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .student-avatar {
        font-size: 1.5rem;
    }
    
    .student-name {
        font-size: 0.9rem;
    }
    
    .student-title {
        font-size: 0.75rem;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .carousel-nav i {
        font-size: 1rem;
    }
}


.gallery-section {
    background: #f8f9fa; /* Light background similar to other sections */
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    background: white;
    padding: 12px; /* Creates the frame effect */
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 22, 122, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 22, 122, 0.2);
}

.gallery-item img {
    display: block;
    width: 100%;
    /*height: auto;*/
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px; 
}

/* Responsive Design for Gallery Section */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller tablets */
        gap: 20px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-grid {
        gap: 15px;
    }
    
    .gallery-item {
        padding: 8px;
    }
}

/* Lightbox (Image Modal) Styles */
.lightbox-overlay {
    position: fixed; /* Cover the entire screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* UPDATED: Changed to a clean, semi-transparent white */
    background: rgba(248, 249, 250, 0.9); 
    backdrop-filter: blur(8px); /* Frosted glass effect */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    
    /* Initially hidden with a fade effect */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    display: block;
    /* This ensures the full image is visible, scaled to fit the screen */
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    /* Animation */
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 1001;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}


/* Award Winning Academy Section */
.award-winning-section {
    background: #f8f9fa; /* Consistent light background */
    padding: 80px 0;
}

.award-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 25px;
    margin-top: 60px;
}

.award-card {
    background: white;
    border-radius: 16px; /* Matches your other cards */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden; /* Ensures image corners are rounded */
    cursor: pointer;
}

.award-card:hover {
    transform: translateY(-8px); /* Nice lift effect on hover */
    box-shadow: 0 15px 40px rgba(0, 22, 122, 0.15); /* Uses your brand blue for the shadow */
}

.award-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents images from stretching */
}

/* Responsive Design for Award Section */
@media (max-width: 1024px) {
    .award-gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .award-winning-section {
        padding: 60px 0;
    }
    .award-gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller tablets */
        gap: 20px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .award-winning-section {
        padding: 40px 0;
    }
    .award-gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns on mobile */
        gap: 15px;
    }
}

/* Placement Partners Section */
.placement-partners-section {
    background: white;
    padding: 80px 0;
}

/* The main container that creates the fading effect on the sides */
.logo-scroller {
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* The long track that contains all logos and scrolls */
.logo-track {
    display: flex;
    flex-wrap: nowrap; /* This is critical to keep logos in a single line */
    align-items: center;
    /* Correct width: 6 logos per set * 2 sets = 12 logos total */
    width: calc(200px * 12); 
    /* THIS IS THE ANIMATION THAT MAKES IT SCROLL */
    animation: scroll 30s linear infinite;
}

/* The scrolling animation keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* This moves the track to the left by the width of the first set of 6 logos */
        transform: translateX(calc(-200px * 6));
    }
}

/* Styling for the logos themselves */
.logo-scroller img {
    height: 100px; 
    width: 200px;
    padding: 0 40px;
    object-fit: contain;
    /* NO grayscale filter - logos will be in full color */
    transition: transform 0.3s ease;
}

.logo-scroller img:hover {
    transform: scale(1.05); /* A simple, clean hover effect */
}

/* Responsive Design for the Scroller */
@media (max-width: 768px) {
    .logo-scroller img {
        height: 50px;
        width: 160px;
        padding: 0 30px;
    }
    .logo-track {
        width: calc(160px * 12);
        animation: scroll-tablet 25s linear infinite;
    }
    @keyframes scroll-tablet {
        100% { transform: translateX(calc(-160px * 6)); }
    }
}

@media (max-width: 480px) {
    .logo-scroller img {
        height: 40px;
        width: 120px;
        padding: 0 20px;
    }
    .logo-track {
        width: calc(120px * 12);
        animation: scroll-mobile 20s linear infinite;
    }
    @keyframes scroll-mobile {
        100% { transform: translateX(calc(-120px * 6)); }
    }
}




/* Site Footer */
.site-footer {
    background-color: #000a35; /* A dark navy blue that complements your theme */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    font-family: 'Arial', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; /* Middle column is wider for the form */
    gap: 50px;
    padding-bottom: 60px;
}

.footer-column {
    padding: 0 15px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #00aaff; /* A bright blue accent */
}

/* Column 1: Customer Support */
.support-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.support-contact .fa-headset {
    font-size: 3rem;
    color: #ffffff;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #000a35;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #00aaff;
    color: white;
    transform: translateY(-3px);
}

/* Column 2: Form */
.footer-form-container {
    background-color: #00167A; /* Your primary brand blue */
    padding: 30px;
    border-radius: 12px;
}

.footer-heading.form-title {
    text-align: center;
    margin-bottom: 20px;
}

.footer-heading.form-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-form .form-group {
    margin-bottom: 15px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #002db3;
    background-color: #000f5c;
    color: white;
    border-radius: 6px;
    font-size: 0.95rem;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Use your existing button style */
.footer-form .submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Column 3: Address */
.address-column p {
    line-height: 1.8;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #000;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-column {
        padding: 0;
        text-align: center;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .support-contact {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
}




