/* =====================
   GLOBAL STYLES
===================== */
:root {
    --primary-color: #2ecc71;
    --primary-dark: #1b5e20;
    --accent-color: #00ff88;
    --text-dark: #0b3d20;
    --text-light: #333;
    --bg-light: #f8fff9;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f4f6f9, #e8f5e9);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
}

h1, h2, h5, h6{
    font-weight: 600;
    line-height: 1.2;
}

.btn-success{
    background: linear-gradient(135deg, #1b5e20, #2ecc71);
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-success::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;
}

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

.btn-success:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
}

.btn-success:active {
    transform: translateY(0);
}

/* =====================
   HEADER
===================== */
.header{
    background: linear-gradient(135deg, #000, #111);
    color: #00ff88;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

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

.header-title {
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #caffea;
}

.header-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    color: #00ff88;
}

/* Decorative glow */
.header::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background: radial-gradient(circle at top, rgba(0,255,136,0.2), transparent);
    animation: pulseGlow 3s ease-in-out infinite;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(46,204,113,0.15), transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===============================
   RESPONSIVE NAVBAR – CODAPHICS
================================ */

/* Navbar base */
.codaphics-nav{
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    transition: background 0.3s ease;
    z-index: 999;
}

/* Brand */
.codaphics-nav .navbar-brand{
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff88 !important;
    letter-spacing: 1px;
}

/* Menu items */
.codaphics-nav .nav-link{
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: 0.3s ease;
}

/* Hover underline */
.codaphics-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#00ff88;
    transition:0.3s ease;
}

.codaphics-nav .nav-link:hover::after{
    width:100%;
}

.codaphics-nav .nav-link:hover{
    color:#00ff88 !important;
}

/* Contact button */
.codaphics-nav .nav-btn{
    padding: 6px 20px;
    border-radius: 30px;
    margin-left: 10px;
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 991px){

    .codaphics-nav{
        padding: 10px 0;
    }

    /* Collapse menu */
    .codaphics-nav .navbar-collapse{
        background: rgba(0,0,0,0.95);
        margin-top: 12px;
        border-radius: 14px;
        padding: 15px 10px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .codaphics-nav .nav-link{
        margin: 10px 0;
        text-align: center;
        font-size: 1.05rem;
        padding: 8px 15px;
        border-radius: 8px;
        transition: var(--transition);
    }

    .codaphics-nav .nav-link:hover {
        background: rgba(0, 255, 136, 0.1);
    }

    /* Remove underline animation on mobile */
    .codaphics-nav .nav-link::after{
        display:none;
    }

    /* Contact button full width */
    .codaphics-nav .nav-btn{
        display: block;
        width: 100%;
        margin: 12px 0 0;
    }

    /* Toggler */
    .codaphics-nav .navbar-toggler{
        border: 1px solid #00ff88;
        padding: 6px 10px;
        border-radius: 8px;
        transition: var(--transition);
    }

    .codaphics-nav .navbar-toggler:hover {
        background: rgba(0, 255, 136, 0.1);
    }
    
    .codaphics-nav .navbar-toggler-icon{
        filter: invert(1);
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 255, 136, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .codaphics-nav .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(0, 255, 136, 0.25);
    }
}

/* ===============================
   SMALL MOBILE (EXTRA)
================================ */
@media (max-width: 480px){

    .codaphics-nav .navbar-brand{
        font-size: 1.2rem;
    }

    .codaphics-nav .nav-link{
        font-size: 1rem;
    }
}

/* ===============================
   FIX CONTENT UNDER NAVBAR
================================ */
body{
    padding-top: 90px; /* height of navbar */
}

@media(max-width: 991px){
    body {
        padding-top: 75px;
    }
}

@media(max-width: 576px){
    body {
        padding-top: 70px;
    }
}



/* =====================
   COURSES SECTION
===================== */
.courses-section {
    padding: 80px 20px;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.courses-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.courses-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================
   COURSE CARDS
===================== */
.course-card{
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.98),
        rgba(248,255,249,0.95));
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border-radius: 28px;
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(0,255,136,0.2),
        rgba(100, 200, 255, 0.15),
        rgba(0,255,136,0.2)) 1;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(0, 255, 136, 0.05);
}

.course-card .card-body {
    position: relative;
    z-index: 5;
}

.course-card::before{
    content:'';
    position:absolute;
    top:-100%;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(135deg, 
        transparent, 
        rgba(0,255,136,0.12), 
        rgba(100, 200, 255, 0.08),
        rgba(0,255,136,0.12),
        transparent);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.course-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 0;
}

.course-card:hover::before{
    top:0;
}

.course-card:hover::after {
    opacity: 1;
    animation: cardGlow 2s ease-in-out infinite;
}

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

.course-card:hover{
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(46, 204, 113, 0.3),
        0 0 40px rgba(0, 255, 136, 0.2),
        inset 0 0 30px rgba(0, 255, 136, 0.05);
    border-image: linear-gradient(135deg, 
        rgba(0,255,136,0.5),
        rgba(100, 200, 255, 0.4),
        rgba(0,255,136,0.5)) 1;
}

.course-icon-wrapper {
    margin-bottom: 25px;
    padding: 0;
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.course-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1),
        rgba(46, 204, 113, 0.08),
        rgba(100, 200, 255, 0.1));
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.2),
        inset 0 0 30px rgba(0, 255, 136, 0.05);
    transition: var(--transition);
}

.course-icon-shine {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 3;
}

.course-card:hover .course-icon-shine {
    opacity: 1;
    animation: imageShine 2s ease-in-out infinite;
}

@keyframes imageShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Course Image Styles */
.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    filter: brightness(0.95) contrast(1.05);
}

.course-icon {
    display: none !important;
}

.course-card:hover .course-icon-bg {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.15),
        rgba(46, 204, 113, 0.12),
        rgba(100, 200, 255, 0.15));
    box-shadow: 
        0 15px 50px rgba(0, 255, 136, 0.3),
        inset 0 0 40px rgba(0, 255, 136, 0.1);
}

.course-card:hover .course-image {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
}

.course-name {
    margin: 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.enroll-btn {
    margin-top: auto;
    width: 100%;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.enroll-btn i {
    transition: transform 0.3s ease;
}

.enroll-btn:hover i {
    transform: translateX(5px);
}

/* =====================
   MODAL (POPUP) - COLORFUL & ATTRACTIVE GLASSMORPHISM
===================== */
.modal-backdrop {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(11, 31, 22, 0.85));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-backdrop.show {
    opacity: 0.95;
}

.enroll-modal-content {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%,
        rgba(11, 31, 22, 0.85) 50%,
        rgba(15, 23, 42, 0.9) 100%) !important;
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-radius: 32px;
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.6), 
        rgba(46, 204, 113, 0.4),
        rgba(100, 200, 255, 0.3),
        rgba(0, 255, 136, 0.6)) 1;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 255, 136, 0.2),
        inset 0 0 100px rgba(46, 204, 113, 0.05);
    overflow: hidden;
    position: relative;
    animation: modalFadeIn 0.4s ease-out;
}

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

.enroll-modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 200, 255, 0.1), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.08), transparent 70%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.enroll-modal-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.08) 0%,
        rgba(100, 200, 255, 0.05) 50%,
        rgba(46, 204, 113, 0.08) 100%);
    pointer-events: none;
    z-index: 0;
}

.enroll-modal-content > * {
    position: relative;
    z-index: 1;
}

.modal-header{
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, 
        transparent,
        rgba(0, 255, 136, 0.4),
        rgba(100, 200, 255, 0.3),
        rgba(0, 255, 136, 0.4),
        transparent) 1;
    padding: 25px 30px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.12),
        rgba(46, 204, 113, 0.08),
        rgba(100, 200, 255, 0.05));
    backdrop-filter: blur(15px);
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 255, 136, 0.6),
        rgba(100, 200, 255, 0.4),
        rgba(0, 255, 136, 0.6),
        transparent);
    animation: shimmer 3s infinite;
}

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

.modal-title{
    background: linear-gradient(135deg, #00ff88, #64c8ff, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.6rem;
    text-shadow: none;
    letter-spacing: 0.5px;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { 
        filter: brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.2);
        transform: scale(1.02);
    }
}

.enroll-modal-body {
    padding: 30px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

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

.enroll-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.enroll-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.5), rgba(100, 200, 255, 0.5));
    border-radius: 10px;
}

.enroll-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.7), rgba(100, 200, 255, 0.7));
}

.enroll-modal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Syllabus Section */
.syllabus-section {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1),
        rgba(100, 200, 255, 0.08),
        rgba(46, 204, 113, 0.1));
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border-radius: 24px;
    padding: 25px;
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.4),
        rgba(100, 200, 255, 0.3),
        rgba(0, 255, 136, 0.4)) 1;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(0, 255, 136, 0.05);
    position: relative;
    overflow: hidden;
}

.syllabus-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent 70%);
    animation: rotateSlow 15s linear infinite;
    pointer-events: none;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.syllabus-title {
    background: linear-gradient(135deg, #00ff88, #64c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, 
        transparent,
        rgba(0, 255, 136, 0.5),
        transparent) 1;
    display: flex;
    align-items: center;
    position: relative;
}

.syllabus-title i {
    background: linear-gradient(135deg, #00ff88, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.syllabus-content {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.syllabus-content::-webkit-scrollbar {
    width: 6px;
}

.syllabus-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.syllabus-content::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.3);
    border-radius: 10px;
}

.syllabus-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.5);
}

.syllabus-placeholder {
    color: rgba(0, 255, 136, 0.5);
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.syllabus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.syllabus-list li {
    color: #e0ffe9;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.08),
        rgba(100, 200, 255, 0.05));
    border-radius: 12px;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, 
        rgba(0, 255, 136, 0.6),
        rgba(100, 200, 255, 0.4)) 1;
    transition: var(--transition);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.syllabus-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, 
        rgba(0, 255, 136, 0.2),
        transparent);
    transition: width 0.3s ease;
}

.syllabus-list li:hover::before {
    width: 100%;
}

.syllabus-list li:hover {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.15),
        rgba(100, 200, 255, 0.1));
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
    border-left-width: 5px;
}

.syllabus-list li i {
    background: linear-gradient(135deg, #00ff88, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 12px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 3px rgba(0, 255, 136, 0.5));
}

/* Enrollment Form Section */
.enroll-form-section {
    background: linear-gradient(135deg, 
        rgba(100, 200, 255, 0.1),
        rgba(0, 255, 136, 0.08),
        rgba(46, 204, 113, 0.1));
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border-radius: 24px;
    padding: 25px;
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(100, 200, 255, 0.4),
        rgba(0, 255, 136, 0.3),
        rgba(100, 200, 255, 0.4)) 1;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(100, 200, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.enroll-form-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 200, 255, 0.1), transparent 70%);
    animation: rotateSlow 20s linear infinite reverse;
    pointer-events: none;
}

.form-section-title {
    background: linear-gradient(135deg, #64c8ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, 
        transparent,
        rgba(100, 200, 255, 0.5),
        transparent) 1;
    display: flex;
    align-items: center;
}

.form-section-title i {
    background: linear-gradient(135deg, #64c8ff, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(100, 200, 255, 0.5));
}

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

.form-label {
    color: #caffea;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.enroll-modal-body input {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.05));
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(0,255,136,0.4),
        rgba(100, 200, 255, 0.3)) 1;
    color: #ffffff;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    position: relative;
}

.enroll-modal-body input::placeholder {
    color: rgba(0,255,136,0.5);
}

.enroll-modal-body input:focus {
    outline: none;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.08));
    border-image: linear-gradient(135deg, 
        rgba(0,255,136,0.7),
        rgba(100, 200, 255, 0.6)) 1;
    box-shadow: 
        0 0 0 4px rgba(0,255,136,0.15),
        0 0 20px rgba(0,255,136,0.3),
        inset 0 0 20px rgba(0,255,136,0.05);
    transform: translateY(-2px);
}

/* Duration Boxes */
.duration-section {
    margin-bottom: 25px;
}

.duration-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.duration-box {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05));
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.3),
        rgba(100, 200, 255, 0.2)) 1;
    border-radius: 20px;
    padding: 22px 18px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.duration-box:nth-child(1) {
    border-image: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.4),
        rgba(46, 204, 113, 0.3)) 1;
}

.duration-box:nth-child(2) {
    border-image: linear-gradient(135deg, 
        rgba(100, 200, 255, 0.4),
        rgba(0, 255, 136, 0.3)) 1;
}

.duration-box:nth-child(3) {
    border-image: linear-gradient(135deg, 
        rgba(46, 204, 113, 0.4),
        rgba(100, 200, 255, 0.3)) 1;
}

.duration-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(0, 255, 136, 0.2),
        transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.duration-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1),
        rgba(100, 200, 255, 0.08));
    opacity: 0;
    transition: var(--transition);
}

.duration-box:hover::before,
.duration-box:hover::after {
    opacity: 1;
}

.duration-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(0, 255, 136, 0.3),
        0 0 30px rgba(100, 200, 255, 0.2);
}

.duration-box.active {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2),
        rgba(100, 200, 255, 0.15),
        rgba(46, 204, 113, 0.2));
    border-image: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.8),
        rgba(100, 200, 255, 0.6),
        rgba(0, 255, 136, 0.8)) 1;
    box-shadow: 
        0 0 35px rgba(0, 255, 136, 0.5),
        0 0 50px rgba(100, 200, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 136, 0.15);
    transform: translateY(-8px) scale(1.05);
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 
            0 0 35px rgba(0, 255, 136, 0.5),
            0 0 50px rgba(100, 200, 255, 0.3),
            inset 0 0 30px rgba(0, 255, 136, 0.15);
    }
    50% {
        box-shadow: 
            0 0 45px rgba(0, 255, 136, 0.7),
            0 0 60px rgba(100, 200, 255, 0.5),
            inset 0 0 40px rgba(0, 255, 136, 0.25);
    }
}

.duration-box.active::before,
.duration-box.active::after {
    opacity: 1;
}

.duration-time {
    background: linear-gradient(135deg, #00ff88, #64c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.duration-box.active .duration-time {
    background: linear-gradient(135deg, #00ff88, #2ecc71, #64c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
}

.duration-price {
    background: linear-gradient(135deg, #2ecc71, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}

.duration-box.active .duration-price {
    background: linear-gradient(135deg, #00ff88, #64c8ff, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.duration-badge {
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.3),
        rgba(100, 200, 255, 0.2));
    color: #00ff88;
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.duration-box.active .duration-badge {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.5),
        rgba(100, 200, 255, 0.4));
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 
        0 0 15px rgba(0, 255, 136, 0.5),
        inset 0 0 10px rgba(0, 255, 136, 0.2);
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.8);
}

.fee-display-wrapper {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.15),
        rgba(100, 200, 255, 0.12),
        rgba(46, 204, 113, 0.15));
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.5),
        rgba(100, 200, 255, 0.4),
        rgba(0, 255, 136, 0.5)) 1;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.fee-display-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2), transparent 70%);
    animation: rotateSlow 10s linear infinite;
    pointer-events: none;
}

.fee-label {
    background: linear-gradient(135deg, #caffea, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.fee-amount {
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Fee display */
#fee_display{
    background: linear-gradient(135deg, #2ecc71, #00ff88, #64c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 800;
    filter: drop-shadow(0 0 15px rgba(46, 204, 113, 0.6));
    letter-spacing: 1px;
    animation: feeGlow 2s ease-in-out infinite;
}

@keyframes feeGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(46, 204, 113, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.8));
    }
}

.pay-enroll-btn {
    padding: 16px 28px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 30px;
    margin-top: 10px;
    background: linear-gradient(135deg, #1b5e20, #2ecc71, #00ff88);
    border: none;
    box-shadow: 
        0 10px 30px rgba(46, 204, 113, 0.4),
        0 0 20px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.pay-enroll-btn:hover::before {
    left: 100%;
}

.pay-enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(46, 204, 113, 0.6),
        0 0 30px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, #00ff88, #2ecc71, #1b5e20);
}

.pay-enroll-btn:active {
    transform: translateY(-1px);
}

/* Modal Responsive */
@media (max-width: 992px) {
    .enroll-modal-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .enroll-modal-body {
        max-height: 90vh;
    }
    
    .duration-boxes {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .syllabus-content {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .enroll-modal-content {
        border-radius: 24px;
        margin: 15px;
    }
    
    .enroll-modal-body {
        padding: 20px;
        max-height: 88vh;
    }
    
    .syllabus-section,
    .enroll-form-section {
        padding: 20px;
        border-radius: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .syllabus-title,
    .form-section-title {
        font-size: 1.15rem;
    }
    
    .duration-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .duration-box {
        padding: 20px 15px;
    }
    
    .duration-time {
        font-size: 1.1rem;
    }
    
    .duration-price {
        font-size: 1.4rem;
    }
    
    .syllabus-content {
        max-height: 250px;
    }
}

@media (max-width: 576px) {
    .enroll-modal-content {
        margin: 10px;
        border-radius: 20px;
    }
    
    .enroll-modal-body {
        padding: 15px;
        max-height: 85vh;
    }
    
    .enroll-modal-container {
        gap: 20px;
    }
    
    .syllabus-section,
    .enroll-form-section {
        padding: 18px;
        border-radius: 18px;
    }
    
    .modal-header {
        padding: 18px;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    .syllabus-title,
    .form-section-title {
        font-size: 1.05rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .duration-boxes {
        gap: 12px;
    }
    
    .duration-box {
        padding: 18px 12px;
        border-radius: 16px;
    }
    
    .duration-time {
        font-size: 1rem;
    }
    
    .duration-price {
        font-size: 1.3rem;
    }
    
    .duration-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .enroll-modal-body input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .fee-display-wrapper {
        padding: 20px 15px;
    }
    
    #fee_display {
        font-size: 1.8rem;
    }
    
    .pay-enroll-btn {
        padding: 14px 24px;
        font-size: 1.05rem;
    }
    
    .syllabus-content {
        max-height: 200px;
    }
    
    .syllabus-list li {
        padding: 10px 12px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .enroll-modal-content {
        margin: 5px;
        border-radius: 18px;
    }
    
    .enroll-modal-body {
        padding: 12px;
    }
    
    .syllabus-section,
    .enroll-form-section {
        padding: 15px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-title {
        font-size: 1.15rem;
    }
    
    .duration-box {
        padding: 15px 10px;
    }
    
    #fee_display {
        font-size: 1.6rem;
    }
    
    .syllabus-content {
        max-height: 180px;
    }
}

/* =====================
   RESPONSIVE
===================== */
/* Large Tablets */
@media(max-width: 992px){
    .header-title {
        font-size: 2.5rem;
    }
    .courses-title {
        font-size: 2.4rem;
    }
    .course-icon-wrapper {
        height: 180px;
    }
}

/* Tablets */
@media(max-width: 768px){
    .header {
        padding: 80px 20px 60px;
        min-height: 240px;
    }
    .header-title {
        font-size: 2.2rem;
    }
    .header-subtitle {
        font-size: 1.05rem;
    }
    .courses-section {
        padding: 60px 15px;
    }
    .courses-title {
        font-size: 2rem;
    }
    .course-icon-wrapper {
        height: 160px;
        margin-bottom: 20px;
    }
    .course-name {
        font-size: 1.15rem;
        min-height: 50px;
    }
    .modal-body {
        padding: 25px 20px;
    }
}

/* Mobile Devices */
@media(max-width: 576px){
    .header {
        padding: 60px 15px 50px;
        min-height: 200px;
    }
    .header-title {
        font-size: 1.8rem;
    }
    .header-subtitle {
        font-size: 0.95rem;
    }
    .header-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    .courses-section {
        padding: 50px 10px;
    }
    .courses-title {
        font-size: 1.75rem;
    }
    .courses-subtitle {
        font-size: 0.95rem;
    }
    .course-card {
        border-radius: 20px;
    }
    .course-icon-wrapper {
        height: 150px;
        margin-bottom: 15px;
    }
    .course-name {
        font-size: 1.1rem;
        min-height: 45px;
    }
    .enroll-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .modal-header {
        padding: 20px;
    }
    .modal-title {
        font-size: 1.3rem;
    }
    .modal-body {
        padding: 20px 15px;
    }
    .form-label {
        font-size: 0.9rem;
    }
    #fee_display {
        font-size: 1.6rem;
    }
}

/* Small Mobile Devices */
@media(max-width: 400px){
    .header-title {
        font-size: 1.5rem;
    }
    .header-subtitle {
        font-size: 0.85rem;
    }
    .courses-title {
        font-size: 1.5rem;
    }
    .course-icon-wrapper {
        height: 140px;
    }
    .course-name {
        font-size: 1rem;
    }
}
/* =====================
   SYLLABUS MODAL
===================== */
.syllabus-list{
    padding-left: 20px;
  }
  
  .syllabus-list li{
    margin-bottom: 8px;
    color: #e0ffe9;
  }
  
  #syllabusModal .modal-content{
    background: linear-gradient(135deg, #0b0b0b, #111);
    border-radius: 16px;
    border: 1px solid rgba(0,255,136,0.2);
  }
  
/* ===============================
   FUTURE SYLLABUS – PREMIUM UI
================================ */

/* Section background with depth */
.future-syllabus-section{
    padding: 100px 20px;
    background:
        radial-gradient(circle at top, rgba(46,204,113,0.15), transparent 60%),
        linear-gradient(135deg, #f8fff9, #eafff1);
    position: relative;
    overflow: hidden;
}

/* Decorative floating glow */
.future-syllabus-section::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:280px;
    height:280px;
    background: radial-gradient(circle, rgba(46,204,113,0.35), transparent 70%);
    filter: blur(60px);
}

/* Card – glass + glow */
.future-card{
    position: relative;
    height: 100%;
    padding: 26px 28px;
    border-radius: 22px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.08),
        inset 0 0 0 rgba(46,204,113,0);
    transition: all 0.45s ease;
}

/* Neon edge line */
.future-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:5px;
    background: linear-gradient(180deg, #2ecc71, #00ff88);
    border-radius: 22px 0 0 22px;
}

/* Hover animation */
.future-card:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0,0,0,0.18),
        0 0 30px rgba(46,204,113,0.35);
}

/* Course title */
.future-card h6{
    font-size: 1.1rem;
    font-weight: 600;
    color: #0b3d20;
    margin-bottom: 6px;
}

/* Skill tags */
.future-card span{
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    color: #0f5132;
    background: linear-gradient(135deg, #d4f7e3, #eafff3);
    margin-bottom: 8px;
}

/* Description */
.future-card p{
    font-size: 14px;
    color: #2f4f3f;
    line-height: 1.6;
    margin: 0;
}

/* Subtle animated shine */
.future-card::after{
    content:"";
    position:absolute;
    top:-100%;
    left:-100%;
    width:200%;
    height:200%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.35) 50%,
        transparent 70%
    );
    transform: rotate(25deg);
    transition: 0.8s;
}

.future-card:hover::after{
    top:-30%;
    left:-30%;
}

/* ===============================
   SECTION TITLE STYLE
================================ */
.section-title{
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b3d20;
    letter-spacing: 0.5px;
}

.section-subtitle{
    font-size: 15px;
    color: #3c6e54;
    max-width: 650px;
    margin: 10px auto 0;
}

/* ===============================
   RESPONSIVE POLISH
================================ */
@media(max-width: 992px){
    .future-syllabus-section {
        padding: 80px 20px;
    }
    .section-title {
        font-size: 2.3rem;
    }
}

@media(max-width: 768px){
    .future-syllabus-section {
        padding: 70px 15px;
    }
    .section-title{
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .future-card{
        padding: 22px 20px;
    }
    .future-card h6 {
        font-size: 1.05rem;
    }
}

@media(max-width: 576px){
    .future-syllabus-section{
        padding: 60px 15px;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .section-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }
    .future-card{
        padding: 20px 18px;
        border-radius: 18px;
    }
    .future-card h6{
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .future-card span {
        font-size: 10px;
        padding: 3px 8px;
    }
    .future-card p {
        font-size: 13px;
    }
}

@media(max-width: 400px){
    .section-title {
        font-size: 1.5rem;
    }
    .future-card {
        padding: 18px 15px;
    }
}


/* =====================
   CONTACT SECTION - COLORFUL & ATTRACTIVE
===================== */
.contact-section{
    padding: 100px 20px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(100, 200, 255, 0.15), transparent 50%),
        linear-gradient(135deg, #f8fff9 0%, #eafff1 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent 60%),
        radial-gradient(circle, rgba(100, 200, 255, 0.08), transparent 60%);
    animation: contactRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes contactRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-header-wrapper {
    position: relative;
    z-index: 1;
}

.contact-title{
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0b3d20, #2ecc71, #00ff88, #64c8ff, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    animation: titleGradient 3s ease-in-out infinite;
    position: relative;
}

@keyframes titleGradient {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.contact-title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent,
        #00ff88,
        #64c8ff,
        #00ff88,
        transparent);
    margin: 0 auto 20px;
    border-radius: 10px;
    animation: underlinePulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

@keyframes underlinePulse {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }
    50% {
        width: 150px;
        opacity: 0.8;
    }
}

.contact-subtitle{
    color: #3c6e54;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-card{
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 28px;
    padding: 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(0, 255, 136, 0.1);
    border: 2px solid;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-card-email {
    border-image: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.6),
        rgba(46, 204, 113, 0.5),
        rgba(0, 255, 136, 0.6)) 1;
}

.contact-card-phone {
    border-image: linear-gradient(135deg, 
        rgba(100, 200, 255, 0.6),
        rgba(0, 255, 136, 0.5),
        rgba(100, 200, 255, 0.6)) 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    animation: cardRotate 15s linear infinite;
}

.contact-card-phone::before {
    background: radial-gradient(circle, rgba(100, 200, 255, 0.15), transparent 70%);
}

@keyframes cardRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(0, 255, 136, 0.3);
}

.contact-card-inner {
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.contact-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2),
        rgba(46, 204, 113, 0.15),
        rgba(100, 200, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.3),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
    animation: iconFloat 3s ease-in-out infinite;
}

.contact-card-phone .contact-icon-wrapper {
    background: linear-gradient(135deg, 
        rgba(100, 200, 255, 0.2),
        rgba(0, 255, 136, 0.15),
        rgba(100, 200, 255, 0.2));
    box-shadow: 
        0 10px 30px rgba(100, 200, 255, 0.3),
        inset 0 0 20px rgba(100, 200, 255, 0.1);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-icon-wrapper i{
    font-size: 42px;
    background: linear-gradient(135deg, #00ff88, #2ecc71, #64c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

.contact-card-phone .contact-icon-wrapper i {
    background: linear-gradient(135deg, #64c8ff, #00ff88, #2ecc71);
}

@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
        transform: scale(1.1);
    }
}

.contact-item-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #0b3d20, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card-phone .contact-item-title {
    background: linear-gradient(135deg, #1a4d72, #64c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1),
        rgba(46, 204, 113, 0.08));
    border-radius: 14px;
    color: #0b3d20;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.3),
        rgba(46, 204, 113, 0.2)) 1;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card-phone .contact-link {
    background: linear-gradient(135deg, 
        rgba(100, 200, 255, 0.1),
        rgba(0, 255, 136, 0.08));
    color: #1a4d72;
    border-image: linear-gradient(135deg, 
        rgba(100, 200, 255, 0.3),
        rgba(0, 255, 136, 0.2)) 1;
}

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

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    transform: translateX(5px) scale(1.03);
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2),
        rgba(46, 204, 113, 0.15));
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.contact-card-phone .contact-link:hover {
    background: linear-gradient(135deg, 
        rgba(100, 200, 255, 0.2),
        rgba(0, 255, 136, 0.15));
    box-shadow: 0 8px 25px rgba(100, 200, 255, 0.3);
    color: #64c8ff;
}

.contact-link i {
    font-size: 0.9rem;
    margin-right: 8px;
}

.contact-card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 255, 136, 0.6),
        rgba(100, 200, 255, 0.5),
        rgba(0, 255, 136, 0.6),
        transparent);
    animation: decorationShimmer 3s ease-in-out infinite;
}

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

/* Tablet */
@media(max-width: 992px){
    .contact-section {
        padding: 80px 20px;
    }
    .contact-title {
        font-size: 2.5rem;
    }
}

@media(max-width: 768px){
    .contact-section {
        padding: 70px 20px;
    }
    .contact-title {
        font-size: 2.2rem;
    }
    .contact-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    .contact-icon-wrapper i {
        font-size: 36px;
    }
}

/* Mobile */
@media(max-width: 576px){
    .contact-section {
        padding: 60px 15px;
    }
    .contact-title{
        font-size: 1.9rem;
    }
    .contact-subtitle {
        font-size: 1rem;
    }
    .contact-card-inner {
        padding: 30px 20px;
    }
    .contact-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
    }
    .contact-icon-wrapper i {
        font-size: 32px;
    }
    .contact-item-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .contact-link {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

@media(max-width: 400px){
    .contact-title {
        font-size: 1.7rem;
    }
    .contact-card-inner {
        padding: 25px 18px;
    }
    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    .contact-icon-wrapper i {
        font-size: 28px;
    }
    .contact-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
/* =====================
   FOOTER
===================== */
.site-footer{
    background: linear-gradient(135deg, #000, #0b1f16);
    color:#aaa;
    padding:30px 10px;
    border-top: 1px solid rgba(0,255,136,0.1);
}

.site-footer p{
    margin:0;
    font-size:14px;
    line-height: 1.8;
}

.site-footer a{
    color:#00ff88;
    text-decoration:none;
    transition: var(--transition);
    font-weight: 500;
}

.site-footer a:hover{
    color: #2ecc71;
    text-decoration: underline;
}

@media(max-width: 576px){
    .site-footer {
        padding: 25px 10px;
    }
    .site-footer p {
        font-size: 13px;
    }
}

/* =====================
   TERMS MODAL
===================== */
#termsModal .modal-content{
    background:#111;
    color:#00ff88;
    border-radius:16px;
    border:1px solid rgba(0,255,136,0.2);
}

#termsModal .modal-header{
    border-bottom:1px solid rgba(0,255,136,0.2);
}




/* =====================
   ABOUT PAGE STYLES
===================== */

.about-hero{
    padding: 120px 20px 80px;
    background:
        radial-gradient(circle at top, rgba(46,204,113,0.25), transparent 60%),
        linear-gradient(135deg, #000, #111);
    color: #00ff88;
}

.about-hero h1{
    font-size: 3rem;
    font-weight: 700;
}

.about-hero p{
    color: #caffea;
    font-size: 1.1rem;
}

/* Content section */
.about-section{
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fff9, #eafff1);
}

/* Glass cards */
.about-card{
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.about-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-card h3{
    color: #1b5e20;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Lists */
.about-list{
    list-style: none;
    padding: 0;
}

.about-list li{
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

.about-list i{
    color: #2ecc71;
    margin-right: 8px;
}

/* CTA */
.about-cta{
    padding: 70px 20px;
    background: #000;
    color: #00ff88;
}

.about-cta p{
    color: #caffea;
}

/* Responsive */
@media(max-width:768px){
    .about-hero h1{
        font-size: 2.2rem;
    }
}


/* ===============================
   SERVICES PAGE – FIXED
================================ */

.services-hero{
    padding: 130px 20px 80px;
    background: linear-gradient(135deg, #000, #111);
    color: #00ff88;
    text-align: center;
}

.services-hero h1{
    font-size: 2.8rem;
    font-weight: 700;
}

.services-hero p{
    color: #caffea;
    max-width: 700px;
    margin: auto;
}

/* Section */
.services-section{
    padding: 80px 20px;
    background: #f8fff9;
}

/* Cards */
.service-card{
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-card i{
    font-size: 40px;
    color: #2ecc71;
    margin-bottom: 15px;
}

.service-card h5{
    color: #1b5e20;
    font-weight: 600;
}

.service-card p{
    font-size: 14px;
    color: #444;
}

/* CTA */
.services-cta{
    padding: 70px 20px;
    background: #000;
    color: #00ff88;
    text-align: center;
}


/* =====================
   CLIENTS PAGE
===================== */

.clients-hero{
    padding: 120px 20px 80px;
    background:
        radial-gradient(circle at top, rgba(46,204,113,0.25), transparent 60%),
        linear-gradient(135deg, #000, #111);
    color: #00ff88;
    text-align: center;
}

.clients-hero h1{
    font-size: 3rem;
    font-weight: 700;
}

.clients-hero p{
    color: #caffea;
}

/* Stats */
.clients-stats{
    padding: 60px 20px;
    background: #f8fff9;
}

.stat-card{
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.stat-card h3{
    color: #2ecc71;
    font-weight: 700;
}

/* Client cards */
.clients-section{
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fff9, #eafff1);
}

.client-card{
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.client-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.client-card i{
    font-size: 42px;
    color: #2ecc71;
    margin-bottom: 15px;
}

.client-card h5{
    font-weight: 600;
    color: #1b5e20;
}

/* Testimonials */
.testimonial-section{
    padding: 80px 20px;
    background: #ffffff;
}

.testimonial-card{
    background: #f9fff9;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    font-size: 14px;
}

.testimonial-card h6{
    margin-top: 12px;
    color: #1b5e20;
}

/* CTA */
.clients-cta{
    padding: 70px 20px;
    background: #000;
    color: #00ff88;
}
/* ===============================
   CLIENT LOGO SIZE – PERFECT FIX
================================ */

/* Card container */
.client-logo-card{
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* LOGO SIZE CONTROL (KEY PART) */
.client-logo-card img{
    width: 120px;          /* fixed visual width */
    height: 60px;          /* fixed visual height */
    object-fit: contain;   /* keeps aspect ratio */
    display: block;
    margin-bottom: 12px;

    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Hover effect (desktop only) */
.client-logo-card:hover img{
    filter: grayscale(0%);
    opacity: 1;
}

/* Caption */
.client-logo-card p{
    font-size: 13px;
    color: #444;
    margin: 0;
    text-align: center;
}

/* ===============================
   TABLET VIEW
================================ */
@media (max-width: 991px){
    .client-logo-card img{
        width: 110px;
        height: 55px;
    }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 576px){
    .client-logo-card{
        padding: 18px 14px;
    }

    .client-logo-card img{
        width: 95px;
        height: 48px;
    }

    .client-logo-card p{
        font-size: 12px;
    }
}

/* ===============================
   EXTRA SMALL DEVICES
================================ */
@media (max-width: 360px){
    .client-logo-card img{
        width: 85px;
        height: 42px;
    }
}





/* ===============================
   CONTACT – EYE CATCHING UI
================================ */

/* HERO */
.contact-hero{
    padding: 140px 20px 100px;
    background:
        radial-gradient(circle at top, rgba(0,255,136,0.35), transparent 60%),
        linear-gradient(135deg, #000000, #0b1f16);
    color: #00ff88;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero h1{
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-hero p{
    color: #caffea;
    font-size: 1.15rem;
    margin-top: 10px;
}

/* ================= CONTACT INFO ================= */

.contact-section{
    padding: 90px 20px;
    background: linear-gradient(135deg, #f7fff9, #eafff1);
}

.contact-card{
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 45px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: 0.4s ease;
    position: relative;
}

.contact-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    background: linear-gradient(135deg, #00ff88, transparent);
    opacity:0.08;
}

.contact-card:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.contact-card i{
    font-size: 48px;
    color: #00ff88;
    margin-bottom: 18px;
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow{
    0%{ text-shadow: 0 0 0 rgba(0,255,136,0.6); }
    50%{ text-shadow: 0 0 18px rgba(0,255,136,0.9); }
    100%{ text-shadow: 0 0 0 rgba(0,255,136,0.6); }
}

.contact-card h5{
    font-weight: 600;
    color: #0b3d20;
    margin-bottom: 10px;
}

.contact-card p{
    margin: 4px 0;
    color: #333;
}

/* ================= FORM ================= */

.contact-form-section{
    padding: 90px 20px;
    background: #ffffff;
}

.contact-form-card{
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.contact-form-card h2{
    font-weight: 700;
    color: #0b3d20;
}

/* Inputs */
.contact-form-card .form-control{
    border-radius: 14px;
    padding: 12px 16px;
    border: 1px solid #d7f5e5;
}

.contact-form-card .form-control:focus{
    border-color: #00ff88;
    box-shadow: 0 0 0 0.2rem rgba(0,255,136,0.2);
}

/* Button */
.contact-form-card button{
    padding: 12px 40px;
    border-radius: 40px;
    font-weight: 600;
}

/* ================= CTA ================= */

.contact-cta{
    padding: 80px 20px;
    background:
        linear-gradient(135deg, #000, #0b1f16);
    color: #00ff88;
}

.contact-cta h4{
    font-weight: 700;
}

.contact-cta p{
    color: #caffea;
}

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

@media(max-width:768px){
    .contact-hero h1{
        font-size: 2.4rem;
    }
    .contact-form-card{
        padding: 35px 25px;
    }
}

@media(max-width:576px){
    .contact-card{
        padding: 35px 20px;
    }
}

/* ===============================
   CONTACT MAP SECTION
================================ */

.contact-map-section{
    padding: 90px 20px;
    background: linear-gradient(135deg, #f8fff9, #eafff1);
}

.map-card{
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width:768px){
    .map-card iframe{
        height: 320px;
    }
}

@media(max-width:576px){
    .map-card iframe{
        height: 280px;
    }
}






/* =====================
   NAVBAR LOGO – CODAPHICS
===================== */

.nav-logo{
    height: 40px;
    width: auto;
    margin-right: 10px;
    transition: 0.3s ease;
}

.brand-text{
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff88;
    letter-spacing: 1px;
}

/* Shrink logo slightly on scroll-ready design */
.codaphics-nav .navbar-brand:hover .nav-logo{
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px){
    .nav-logo{
        height: 36px;
    }
}

/* Mobile */
@media (max-width: 576px){
    .nav-logo{
        height: 32px;
    }
    .brand-text{
        font-size: 1.2rem;
    }
}
