

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* VARIABLES */

:root{
--primary:#3abbf6;
--primary-dark:#28a5de;
--dark:#0f172a;
--secondary:#0f172a;
--text-main:#1e293b;
--text-muted:#64748b;
--bg-light:#f8fafc;
--transition: all .35s ease;
--card-bg:#ffffff;
--text-sub:#334155;
}

/* BODY */

body{
font-family:'Poppins',sans-serif;
background:#050a30;
color:#f5f5f5;
line-height:1.6;
}

html{
scroll-behavior:smooth;
}

/* CONTAINER */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}   

@media(max-width:768px){

.container{
padding:0 16px;
}

}

/* NAVBAR */

.navlink{
position:relative;

}

.navlink::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:var(--primary);
transition:0.3s;
}

.navlink:hover::after{
width:100%;
}

/* HERO SECTION */

.hero{
margin-top:80px;
min-height:100vh;
display:flex;
align-items:center;
background:linear-gradient(135deg,#eef7ff,#ffffff);
padding:100px 0;
}

.hero-title{
font-size:3.2rem;
font-weight:700;
line-height:1.2;
}

.accent{
color:var(--primary);
}

.accent2{
color:#050a30;
}

/* BUTTONS */

.primary-btn{
background:var(--primary);
color:white;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.primary-btn:hover{
background:var(--primary-dark);
}

.secondary-btn{
border:2px solid var(--primary);
padding:14px 30px;
border-radius:40px;
color:var(--primary);
text-decoration:none;
font-weight:500;
}

.secondary-btn:hover{
background:var(--primary);
color:white;
}

/* STATS */

.stats{
display:flex;
gap:20px;
margin-top:30px;
flex-wrap:wrap;
}

.stat-box{
background:white;
padding:15px 25px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.stat-number{
font-weight:700;
font-size:22px;
color:var(--primary);
}

/* HERO IMAGE */

.hero-img{
max-width:480px;
width:100%;
}

.float{
animation:float 6s ease-in-out infinite;
}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}

}

/* RESPONSIVE HERO */

@media(max-width:992px){

.hero{
text-align:center;
}

.hero-title{
font-size:2.3rem;
}

.stats{
justify-content:center;
}

}

@media(max-width:576px){

.hero-title{
font-size:1.8rem;
}

.primary-btn,
.secondary-btn{
display:block;
width:100%;
text-align:center;
margin-bottom:10px;
}

}

@media(max-width:480px){

.hero{
padding:60px 0;
}

.hero-title{
font-size:1.6rem;
}

.stats{
gap:10px;
}

.stat-box{
padding:10px 14px;
}

}
/* TECH STACK */

.tech-stack{
background:#050a30;
padding:80px 0;
text-align:center;
overflow:hidden;
}

.tech-title{
color:#fff;
font-size:36px;
margin-bottom:50px;
}

.logo-marquee{
position:relative;
overflow:hidden;
}

.logo-marquee::before,
.logo-marquee::after{
content:"";
position:absolute;
top:0;
width:120px;
height:100%;
z-index:2;
}

.logo-marquee::before{
left:0;
background:linear-gradient(to right,#050a30,transparent);
}

.logo-marquee::after{
right:0;
background:linear-gradient(to left,#050a30,transparent);
}

.logo-track{
display:flex;
gap:70px;
width:max-content;
animation:scroll 30s linear infinite;
}

.logo-marquee:hover .logo-track{
animation-play-state:paused;
}

.logo i{
font-size:60px;
}

.logo img{
width:60px;
}

.logo:hover{
transform:scale(1.3);
filter:drop-shadow(0 0 10px var(--primary));
transition:0.4s;
}

@keyframes scroll{

0%{transform:translateX(0);}
100%{transform:translateX(-50%);}

}

@media(max-width:768px){

.logo i{
font-size:45px;
}

.logo img{
width:45px;
}

.logo-track{
gap:40px;
}

}

/* COURSE SECTION */

.course-section{
padding:80px 0;
background:#f8fafc;
}

.section-header{
text-align:center;
margin-bottom:50px;
}

.section-header span{
color:var(--primary);
font-weight:700;
text-transform:uppercase;
letter-spacing:2px;
font-size:13px;
}

.section-header h2{
font-size:clamp(28px,4vw,40px);
font-weight:800;
color:var(--dark);
margin-top:10px;
}

/* COURSE CARD */

.course-card{
background:#fff;
border:1px solid rgba(0,0,0,0.05);
border-radius:22px;
padding:30px 22px;
text-align:center;
transition:all .35s ease;
height:100%;
display:flex;
flex-direction:column;
justify-content:space-between;
position:relative;
overflow:hidden;
}

/* Hover Effect */

.course-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
border-color:var(--primary);
}

/* COURSE IMAGE */

.course-image{
margin:0 auto 18px;
width:70px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
}

.course-image img{
width:60px;
height:60px;
object-fit:contain;
transition:0.3s;
}

.course-card:hover .course-image img{
transform:scale(1.1);
}

/* BADGE */

.badge-tag{
font-size:11px;
font-weight:700;
background:rgba(58,187,246,0.12);
color:var(--primary);
padding:5px 12px;
border-radius:50px;
display:inline-block;
margin-bottom:12px;
}

/* TITLE */

.course-title{
font-size:20px;
font-weight:700;
margin-bottom:8px;
color:var(--dark);
}

/* DESCRIPTION */

.course-desc{
font-size:14px;
color:var(--text-muted);
line-height:1.6;
margin-bottom:22px;
}

/* BUTTON */

.btn-course{
padding:11px 22px;
background:var(--dark);
color:white;
border-radius:12px;
text-decoration:none;
font-size:14px;
font-weight:600;
transition:all .3s ease;
}

.course-card:hover .btn-course{
background:var(--primary);
box-shadow:0 10px 20px rgba(58,187,246,0.35);
}

/* SWIPER */

.swiper{
padding:40px 10px 70px !important;
}

.swiper-pagination-bullet-active{
background:var(--primary)!important;
width:24px!important;
border-radius:6px!important;
}

/* TABLET */

@media (max-width:1024px){

.course-card{
padding:26px 18px;
}

.course-title{
font-size:18px;
}

.course-desc{
font-size:13px;
}

}

/* MOBILE */

@media (max-width:768px){

.section-header{
margin-bottom:35px;
}

.course-card{
padding:22px 16px;
border-radius:18px;
}

.course-image{
width:60px;
height:60px;
}

.course-image img{
width:50px;
height:50px;
}

.course-title{
font-size:16px;
}

.course-desc{
font-size:12px;
line-height:1.5;
}

.btn-course{
font-size:13px;
padding:10px 18px;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.course-card{
padding:18px 14px;
}

.course-image img{
width:45px;
height:45px;
}

.course-title{
font-size:15px;
}

.course-desc{
font-size:11px;
}

}

/* Our key services */
 
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-section);
            line-height: 1.6;
        }

        /* SECTION CONTAINER */
        .highlights-section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: auto;
            text-align: center;
        }

        /* HEADER */
        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 50px;
            color: var(--text-main);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* GRID SYSTEM */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        /* CARD STYLING */
        .highlight-box {
            background: var(--card-bg);
            padding: 35px 20px;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            /* Smooth entrance animation */
            animation: fadeIn 0.6s ease forwards;
            opacity: 0;
        }

        /* Delay each card for a staggered effect */
        .highlight-box:nth-child(1) { animation-delay: 0.1s; }
        .highlight-box:nth-child(2) { animation-delay: 0.2s; }
        .highlight-box:nth-child(3) { animation-delay: 0.3s; }
        .highlight-box:nth-child(4) { animation-delay: 0.4s; }
        .highlight-box:nth-child(5) { animation-delay: 0.5s; }
        .highlight-box:nth-child(6) { animation-delay: 0.6s; }
        .highlight-box:nth-child(7) { animation-delay: 0.7s; }
        .highlight-box:nth-child(8) { animation-delay: 0.8s; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .highlight-box i {
            font-size: 30px;
            color: var(--primary);
            margin-bottom: 18px;
            transition: var(--transition);
        }

        .highlight-box p {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-sub);
            margin: 0;
        }

        /* HOVER EFFECTS */
        .highlight-box:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
            border-color: var(--primary);
        }

        .highlight-box:hover i {
            color: var(--primary-dark);
            transform: scale(1.1);
        }

        /* RESPONSIVE BREAKPOINTS */

        /* Tablet (2 columns) */
        @media (max-width: 1024px) {
            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .section-title { font-size: 30px; }
        }

        /* Mobile (1 column) */
        @media (max-width: 600px) {
            .highlights-section { padding: 60px 15px; }
            
            .highlights-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .highlight-box {
                padding: 25px;
                flex-direction: row; /* Horizontal layout for mobile thumb-scrolling */
                justify-content: flex-start;
                text-align: left;
            }

            .highlight-box i {
                margin-bottom: 0;
                margin-right: 20px;
                font-size: 24px;
            }

            .section-title { font-size: 26px; }
        }
  

/* WHY CHOOSE US */

.why-section{
background:var(--bg-light);
padding:10px 0;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.why-card{
background:#050a30;
padding:35px 25px;
border-radius:22px;
border:1px solid rgba(15,23,42,0.05);
transition:all .35s ease;
color:#fff;
}

.icon-box{
width:60px;
height:60px;
background:var(--bg-light);
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:18px;
}

.icon-box i{
font-size:26px;
color:var(--primary);
}

.why-card h3{
font-size:20px;
margin-bottom:10px;
}

.why-card p{
font-size:14px;
line-height:1.6;
color:#cbd5e1;
}

/* HOVER */

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(15,23,42,0.08);
border-color:var(--primary);
}

.why-card:hover .icon-box{
background:var(--primary);
}

.why-card:hover .icon-box i{
color:#fff;
}

/* TABLET */

@media (max-width:1024px){

.why-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

}

/* MOBILE */

@media (max-width:768px){

.why-grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
padding:0 0px;
}

.why-card{
padding:14px 10px;
border-radius:16px;
text-align:center;
}

/* ICON */

.icon-box{
width:40px;
height:40px;
margin:0 auto 10px;
}

.icon-box i{
font-size:20px;
}

/* TEXT */

.why-card h3{
font-size:15px;
margin-bottom:6px;
}

.why-card p{
font-size:12px;
line-height:1.4;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.why-grid{
grid-template-columns:repeat(2,1fr);
gap:6px;
}

.why-card{
padding:12px 8px;
}

.icon-box{
width:30px;
height:30px;
}

.icon-box i{
font-size:10px;
}

.why-card h3{
font-size:12px;margin-bottom:4px;

}

.why-card p{
font-size:10px;
text-align: left;
word-wrap:inherit;
}

}/* SMALL MOBILE */


/* ENQUIRY SECTION */

            
.enquiry-section { padding: 100px 0; }
        .enquiry-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }

        /* INFO SECTION */
        .enquiry-info h2 { font-weight: 300; font-size: 40px; color:#030c18; margin-bottom: 20px; }
        .enquiry-info p { color: var(--text-muted); font-size: 17px; margin-bottom: 35px; line-height: 1.6; }
        .info-item { display: flex; 
          align-items: center; 
          gap: 15px; 
          margin-bottom: 20px; 
          font-weight: 500; 
          background: rgba(9, 11, 12, 0.05); 
          padding: 12px 18px; 
          border-radius: 12px; width: fit-content; 
        color: #030c18;}
        .info-item i { color:#030c18; font-size: 20px; }
        

        /* FORM BOX */
        .form-container { 
            background: #fff; 
            padding: 40px; 
            border-radius: 22px; 
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08); 
            min-height: 450px; /* Keeps height consistent during swap */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .enquiry-form { display: flex; flex-direction: column; gap: 18px; }
        .enquiry-form input, .enquiry-form select, .enquiry-form textarea {
            width: 100%; padding: 14px; border-radius: 10px; border: 1.5px solid #3182ec; outline: none; transition: 0.3s;
            color: var(--text-main);
        }
        .enquiry-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(58, 187, 246, 0.1); }
        .enquiry-form textarea { height: 100px; resize: none; }

        .enquiry-btn {
            background: var(--primary); color: white; border: none; padding: 16px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: 0.3s;
        }
        .enquiry-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

        /* SUCCESS MESSAGE (Hidden by default) */
        #success-message {
            display: none;
            text-align: center;
            animation: scaleIn 0.5s ease forwards;
        }
        #success-message i { font-size: 60px; color: var(--success); margin-bottom: 20px; }
        #success-message h3 { font-family: 'Poppins', sans-serif; font-size: 24px; color: var(--text-dark); margin-bottom: 10px; }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        /* RESPONSIVE */
        @media(max-width: 950px) {
            .enquiry-grid { grid-template-columns: 1fr; text-align: center; }
            .enquiry-info { display: flex; flex-direction: column; align-items: center; }
        }
    


          /* WhatsApp Button */
    .whatsapp-btn {
      position: fixed;
      right: 20px;
      bottom: 90px;
      width: 60px;
      height: 60px;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      text-decoration: none;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      z-index: 999;
      transition: 0.3s ease;
    }

    .whatsapp-btn:hover {
      transform: translateY(-4px) scale(1.05);
      background: #1ebe5d;
    }

    /* Top Button */
    #topBtn {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 55px;
      height: 55px;
      border: none;
      outline: none;
      background: #38b6ff;
      color: #04152f;
      border-radius: 50%;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      z-index: 999;
      display: none;
      transition: 0.3s ease;
    }

    #topBtn:hover {
      transform: translateY(-4px);
      background: #5cc5ff;
    }

    @media (max-width: 768px) {
      .whatsapp-btn {
        width: 54px;
        height: 54px;
        font-size: 26px;
        right: 15px;
        bottom: 80px;
      }

      #topBtn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        right: 15px;
        bottom: 15px;
      }
    }


  .footer {
    background: linear-gradient(135deg, #071731, #0A1F44);
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col h3,
.footer-logo {
    color: #38B6FF;
    margin-bottom: 18px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-col p {
    color: #d9e6ff;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col p a {
    color: #d9e6ff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col ul li a:hover,
.footer-col p a:hover {
    color: #38B6FF;
    padding-left: 4px;
}

.footer-social {
    margin-top: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #38B6FF;
    transform: translateY(-3px);
}

.footer-buttons {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-whatsapp,
.btn-map {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-map {
    background: #38B6FF;
    color: white;
}

.btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 182, 255, 0.3);
}

.footer-newsletter {
    max-width: 1200px;
    margin: 35px auto 0;
    text-align: center;
    padding: 20px 0;
}

.footer-newsletter h3 {
    color: #38B6FF;
    margin-bottom: 10px;
    font-size: 24px;
}

.footer-newsletter p {
    color: #d9e6ff;
    margin-bottom: 18px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form input {
    width: 320px;
    max-width: 90%;
    padding: 12px 14px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    background: #38B6FF;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: #1fa3f3;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 18px;
    font-size: 14px;
    color: #b7c8e6;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }

    .footer-buttons,
    .footer-social {
        justify-content: center;
    }

    .footer-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
