*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif;}
body{background:#f9fafb;color:#1f2937;}
.container{max-width:1200px;margin:auto;padding:0 20px;}
.section{padding:80px 0;}
.light-bg{background:#f3f4f6;}
.section-title{text-align:center;margin-bottom:40px;font-size:32px;}

.header{background:#fff;position:sticky;top:0;box-shadow:0 2px 10px rgba(0,0,0,0.05);}
.nav{display:flex;justify-content:space-between;align-items:center;height:60px;}
.nav ul{display:flex;gap:25px;list-style:none;}
.nav a{text-decoration:none;}
.logo{font-weight:700;font-size:20px;}

.btn-primary{background:#2563eb;color:#fff;padding:12px 25px;border-radius:6px;text-decoration:none;}
.btn-outline{border:2px solid #2563eb;color:#2563eb;padding:10px 22px;border-radius:6px;text-decoration:none;}
.small-btn{padding:8px 15px;}

.hero{padding:100px 0;background:#fff;}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;}
.hero span{color:#2563eb;}
.cta-group{margin-top:20px;display:flex;gap:15px;}

.lead-box{background:#f3f4f6;padding:7px;border-radius:10px;}
.lead-box input{width:100%;padding:10px;margin:10px 0;}
.lead-box button{width:100%;padding:12px;background:#2563eb;color:white;border:none;}

.trust{background:#eef2ff;padding:20px 0;text-align:center;}
.logos{display:flex;justify-content:center;gap:40px;font-weight:600;color:#6b7280;flex-wrap:wrap;}

.tabs{text-align:center;margin-bottom:30px;}
.tabs button{padding:10px 20px;margin:5px;border:none;background:#e5e7eb;cursor:pointer;}
.tabs .active{background:#2563eb;color:white;}

.course-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;}
.course-card{background:white;padding:20px;border-radius:10px;box-shadow:0 5px 15px rgba(0,0,0,0.05);}

table{width:100%;border-collapse:collapse;}
th,td{border:1px solid #ddd;padding:15px;text-align:center;}

.roadmap{display:flex;flex-wrap:wrap;gap:20px;justify-content:center;}
.step{background:white;padding:15px 25px;border-radius:30px;box-shadow:0 5px 15px rgba(0,0,0,0.05);}

.salary-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;}
.salary-card{background:white;padding:25px;border-radius:10px;text-align:center;box-shadow:0 5px 20px rgba(0,0,0,0.05);}

.testimonial{background:white;padding:30px;border-radius:10px;max-width:600px;margin:auto;text-align:center;}

.faq-question{width:100%;padding:15px;background:#e5e7eb;border:none;text-align:left;cursor:pointer;}
.faq-answer{display:none;padding:15px;background:white;}

.bottom-cta{position:fixed;bottom:0;width:100%;background:#111827;color:white;display:flex;justify-content:space-between;align-items:center;padding:10px 40px;}
.bottom-cta a{background: linear-gradient(135deg, #112CFC, #14ACD8);color:white;padding:10px 20px;text-decoration:none;border-radius:6px;}

.whatsapp{position:fixed;bottom:80px;right:20px;background:#25D366;color:white;padding:15px;border-radius:50%;font-size:20px;}

@media(max-width:768px){
.hero-grid{grid-template-columns:1fr;}
.bottom-cta{flex-direction:column;gap:10px;text-align:center;}
}

.trust-section{
  padding:50px 0;
  background:#ffffff;
  border-top:1px solid #f1f1f1;
  border-bottom:1px solid #f1f1f1;
  text-align:center;
}

.trust-title{
  font-size:16px;
  font-weight:500;
  color:#6b7280;
  margin-bottom:30px;
  letter-spacing:0.5px;
}

.logo-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

.logo-item img{
  height:50px;
  
  transition:all 0.3s ease;
 
}

.logo-item img:hover{
  opacity:1;
  filter:grayscale(0%);
  transform:scale(1.05);
}


body{
  margin:0;
  font-family:'Segoe UI',sans-serif;
  background:#f4f6f9;
  color:#1e293b;
}

/* Match border-bottom color to icon color for each card */
.why-grid .why-card:nth-child(1) {
  border-bottom-color: #2563eb;
}
.why-grid .why-card:nth-child(2) {
  border-bottom-color: #22c55e;
}
.why-grid .why-card:nth-child(3) {
  border-bottom-color: #f59e0b;
}
.why-grid .why-card:nth-child(4) {
  border-bottom-color: #ef4444;
}

.section{
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid transparent; /* default, override below */
}

.program-section-title{
  text-align:center;
  font-size:32px;
  content: none;
  text-align:center;
  margin-bottom:30px;
  color: #000;
}

.program-section-title span, .roadmap-section .section-title span {
  background: linear-gradient(90deg,#2567FB,#8A40FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tabs button{
  padding:12px 24px;
  margin:5px;
  border:none;
  cursor:pointer;
  border-radius:20px;
  background:#e2e8f0;
  font-weight:600;
  transition:.3s;
}

.tabs button.active{
  background:linear-gradient(135deg,#2567FB,#8A40FA);
  color:white;
}

/* Search */
.search-box{
  text-align:center;
  margin-bottom:40px;
}

.search-box input{
  width:350px;
  padding:10px;
  border:1px solid #cbd5e1;
  border-radius:6px;
}

/* Grid */
.course-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.course-card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:.3s;
}

.course-card:hover{
  transform:translateY(-6px);
}

.course-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.course-content{
  padding:20px;
}

.badge{
  display:inline-block;
  padding:4px 10px;
  font-size:12px;
  border-radius:4px;
  color:white;
  margin-bottom:10px;
}

.beginner{background:#22c55e;}
.intermediate{background:#f59e0b;}
.advanced{background:#ef4444;}

.course-meta{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  margin:15px 0;
}

.Course-meta span{
  color:#64748b;
}

.price{
  font-weight:600;
  font-size:16px;
  color: #2563eb;
}

.btn{
  display:block;
  text-align:center;
  padding:10px;
  background:#0f172a;
  color:white;
  text-decoration:none;
  border-radius:6px;
  font-weight:500;
  width: 100%;
}

.category{display:none;}
.category.active{display:block;}


/* SECTION */
.roadmap-section{
  padding:50px 20px;
  background:
  radial-gradient(circle at top left,#f8fbff,#eef4ff 40%,#ffffff 100%);
  overflow:hidden;
  font-family:'Segoe UI',sans-serif;
}

/* TITLE */
.roadmap-section-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
  color:#0f172a;
}

.roadmap-section-title span{
  background:linear-gradient(90deg,#2563eb,#9333ea);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* SUBTITLE */
.roadmap-section-subtitle{
  text-align:center;
  max-width:760px;
  margin:auto;
  margin-bottom:50px;
  color:#555;
  font-size:16px;
  line-height:1.7;
}

/* WRAPPER */
.roadmap-wrapper{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  margin-bottom:50px;
}

/* PROGRESS LINE */
.progress-line{
  position:absolute;
  top:48px;
  height:4px;
  background:linear-gradient(90deg,#2563eb,#9333ea);
  z-index:0;
}

/* STEP */
.roadmap-step{
  position:relative;
}

/* TOP */
.step-top{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* CIRCLE */
.circle{
  width:95px;
  height:95px;
  border-radius:50%;
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:32px;
  font-weight:800;
  border:10px solid rgba(255,255,255,0.8);
  box-shadow:0 10px 30px rgba(37,99,235,0.2);
  transition:.4s;
}

/* COLORS */
.cyan{
  background:linear-gradient(135deg,#06b6d4,#38bdf8);
}

.purple{
  background:linear-gradient(135deg,#6366f1,#7c3aed);
}

.pink{
  background:linear-gradient(135deg,#9333ea,#c026d3);
}

/* CONNECTOR */
.connector{
  width:2px;
  height:30px;
  background:linear-gradient(to bottom,#93c5fd,#c4b5fd);
}

/* CARD */
.step-card{
  background:#fff;
  border-radius:28px;
  padding:10px;
  text-align:center;
  box-shadow:0 15px 40px rgba(15,23,42,0.08);
  transition:.4s ease;
  position:relative;
  overflow:hidden;
  height: 215px;
}

.step-card::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#2563eb,#9333ea);
}

.step-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 50px rgba(15,23,42,0.12);
}

.roadmap-step:hover .circle{
  transform:scale(1.08);
}

/* ICON */
.step-icon{
  width:32px;
  height:32px;
  border-radius:50%;
  margin:auto;
  margin-bottom:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  background:#dbeafe;
  color:#2563eb;
}

.cyan-bg{
  background:#cffafe;
  color:#06b6d4;
}

.purple-bg{
  background:#ede9fe;
  color:#7c3aed;
}

.pink-bg{
  background:#f3e8ff;
  color:#c026d3;
}

/* TITLE */
.step-card h3{
  font-size:16px;
  margin-bottom:6px;
  color:#0f172a;
}

/* MINI LINE */
.mini-line{
  width:70px;
  height:5px;
  border-radius:999px;
  margin:0 auto 10px;
  background:#2563eb;
}

.cyan-line{
  background:#06b6d4;
}

.purple-line{
  background:#7c3aed;
}

.pink-line{
  background:#c026d3;
}

/* TEXT */
.step-card p{
  color:#64748b;
  line-height:1.5;
  font-size:14px;
}

/* TABLET */
@media(max-width:1100px){

  .roadmap-wrapper{
    grid-template-columns:repeat(2,1fr);
  }

  .progress-line{
    display:none;
  }

  .section-title{
    font-size:32px;
  }
}

/* MOBILE */
@media(max-width:700px){

  .roadmap-wrapper{
    grid-template-columns:1fr;
  }

  .section-subtitle{
    font-size:16px;
    margin-bottom:50px;
  }

  .step-card{
    padding:35px 24px;
  }

  .step-card h3{
    font-size:30px;
  }

  .step-card p{
    font-size:17px;
  }
}


.comparison-section{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:white;
  padding:90px 20px;
}

.section-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
}

.section-subtitle{
  text-align:center;
  
  margin-bottom:60px;
}

.comparison-wrapper{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.compare-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(12px);
  padding:40px;
  border-radius:16px;
  width:350px;
  position:relative;
  transition:.4s;
  border:1px solid rgba(255,255,255,0.1);
}

.compare-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.compare-card h3{
  text-align:center;
  margin-bottom:25px;
}

.compare-card ul{
  list-style:none;
  padding:0;
}

.compare-card li{
  display:flex;
  justify-content:space-between;
  margin-bottom:15px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,0.1);
  font-size:14px;
}

/* Recommended Card */
.recommended{
  background:linear-gradient(135deg,#3b82f6,#06b6d4);
  color:white;
  transform:scale(1.05);
}

.badge-top{
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  background:#facc15;
  color:#000;
  padding:6px 15px;
  font-size:12px;
  border-radius:20px;
  font-weight:600;
}

/* Buttons */
.btn-primary{
  display:block;
  text-align:center;
  padding:12px;
  background:#000;
  color:white;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
}

.btn-outline{
  display:block;
  text-align:center;
  margin-top:25px;
  padding:12px;
  border:2px solid #3b82f6;
  color:#3b82f6;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
}

.btn-outline:hover{
  background:#3b82f6;
  color:white;
}

/* Mobile */
@media(max-width:768px){
  .comparison-wrapper{
    flex-direction:column;
    align-items:center;
  }
}


/* HEADER BASE */
.header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  padding:10px 0;
  transition:all .3s ease;

}

.header.scrolled{
  background:white;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* NAV CONTAINER */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:22px;
  font-weight:700;
  color:#0f172a;
}

/* NAV LINKS */
nav ul{
  list-style:none;
  display:flex;
  gap:30px;
  margin:0;
  padding:0;
}

nav ul li a{
  text-decoration:none;
  color:#0f172a;
  font-weight:500;
  position:relative;
  transition:.3s;
}

/* Underline animation */
nav ul li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#3b82f6;
  transition:.3s;
}

nav ul li a:hover::after{
  width:100%;
}

nav ul li a.active{
  color:#3b82f6;
}

/* CTA Button */
.btn-primary{
  background:linear-gradient(135deg,#112CFC,#14ACD8);
  color:white;
  padding:10px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(59,130,246,0.4);
}

.small-btn{
  font-size:14px;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:24px;
  cursor:pointer;
}

.gradient-text {
  background: linear-gradient(135deg, #112CFC, #14ACD8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: bold;
}

/* MOBILE */
@media(max-width:900px){

  nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:white;
    display:none;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
  }

  nav ul{
    flex-direction:column;
    padding:20px;
  }

  nav ul li{
    margin-bottom:15px;
  }

  nav.show{
    display:block;
  }

  .hamburger{
    display:block;
  }

  .btn-primary{
    display:none;
  }
}

body{
  padding-top:80px;
}
.hero{
   /* Full screen height */
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:white;
  padding:120px 20px 80px;
  position:relative;
  overflow:hidden;
}

/* subtle background glow */
.hero::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle,#3b82f6 0%, transparent 70%);
  top:-200px;
  right:-200px;
  opacity:0.2;
  z-index:0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:1;
}

/* Headline */
.hero h1{
  font-size:52px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:20px;
}

.hero h1 span{
  background:linear-gradient(90deg,#3b82f6,#06b6d4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Paragraph */
.hero p{
  font-size:18px;
  color:#cbd5e1;
  margin-bottom:30px;
}

/* CTA buttons */
.cta-group{
  display:flex;
  gap:20px;
}

.btn-outline{
  padding:12px 24px;
  border:2px solid #3b82f6;
  color:#3b82f6;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:.3s;
}

.btn-outline:hover{
  background:#3b82f6;
  color:white;
}

/* Lead Box */
.lead-box{

  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,0.3);
  color:#0f172a;
 
}

.lead-box h3{
  margin-bottom:20px;
  font-size:20px;
}

.lead-box input{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border-radius:8px;
  border:1px solid #cbd5e1;
}

.lead-box button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:8px;
  background:linear-gradient(135deg,#3b82f6,#06b6d4);
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.lead-box button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(59,130,246,0.4);
}
@media(max-width:900px){

  .hero{
    min-height:auto;
    padding:140px 20px 80px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero h1{
    font-size:36px;
  }

  .cta-group{
    justify-content:center;
    flex-wrap:wrap;
  }

  .lead-box{
    margin:30px auto 0;
  }
}

.salary-section{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:white;
  padding:100px 20px;
  text-align:center;
}

.salary-section .section-title{
  font-size:32px;
  margin-bottom:10px;
}

.salary-section .section-subtitle{
  color:#cbd5e1;
  margin-bottom:60px;
}

.salary-grid{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.salary-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  padding:50px 40px;
  border-radius:18px;
  
  transition:.4s;
  border:1px solid rgba(255,255,255,0.1);
}

.salary-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.salary-icon{
  font-size:40px;
  margin-bottom:15px;
}

.salary-card h3{
  font-size:20px;
  margin-bottom:20px;
}

.salary-amount{
  font-size:42px;
  font-weight:800;
  background:linear-gradient(90deg,#3b82f6,#06b6d4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:10px;
}

.per-year{
  display:block;
  font-size:14px;
  color:#cbd5e1;
  margin-bottom:20px;
}

.growth{
  font-size:14px;
  color:#22c55e;
  font-weight:600;
}

/* Highlight Card */
.highlight{
  transform:scale(1.05);

}

.highlight .salary-amount{
 
}

.highlight .per-year{
  color:#e2e8f0;
}

@media(max-width:768px){
  .salary-card{
    width:100%;
  }
}


.faq-section{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:white;
  padding:100px 20px;
}

.section-title{
  text-align:center;
  font-size:32px;
}

.section-subtitle{
  text-align:center;
  margin-bottom:60px;
}

.faq-wrapper{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:start;
}

/* FAQ LEFT */
.faq-item{
  margin-bottom:20px;
  border-radius:10px;
  overflow:hidden;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:18px 20px;
  text-align:left;
  font-size:16px;
  font-weight:600;
  color:white;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}

.faq-question span{
  transition:.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  background:rgba(255,255,255,0.03);
  padding:0 20px;
  transition:max-height .4s ease, padding .3s ease;
  font-size:14px;
  color:#cbd5e1;
}

.faq-item.active .faq-answer{
  max-height:200px;
  padding:15px 20px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

/* RIGHT SIDE FORM */
.enquiry-card{
  background:white;
  color:#0f172a;
  padding:40px;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.3);
  position:sticky;
  top:120px;
}

.enquiry-card h3{
  margin-bottom:10px;
}

.enquiry-card p{
  margin-bottom:25px;
  font-size:14px;
  color:#64748b;
}

.enquiry-card input,
.enquiry-card select{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border-radius:8px;
  border:1px solid #cbd5e1;
}

.enquiry-card button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:8px;
  background:linear-gradient(135deg,#3b82f6,#06b6d4);
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.enquiry-card button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(59,130,246,0.4);
}

/* MOBILE */
@media(max-width:900px){

  .faq-wrapper{
    grid-template-columns:1fr;
  }

  .enquiry-card{
    position:static;
    margin-top:40px;
  }
}


.course-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.course-card:hover{
  transform:translateY(-8px);
}

.course-image img{
  width:100%;
  height:150px;
  object-fit:cover;
}

.course-content{
  padding:20px;
}

.badge{
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
  color: #09440b;
  background-color: #d1f7d3;
}

.badge.beginner{background:#16a34a;}
.badge.intermediate{background:#f59e0b;}
.badge.advanced{background:#ef4444;}

.course-meta{
  display:flex;
  justify-content:space-between;
  margin:15px 0;
}

.btn{
  display:inline-block;
  padding:10px 18px;
  background:#2563eb;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;
}

.btn:hover{
  background:#1e40af;
}

/* ============================= */
/* COMPLETE MOBILE RESPONSIVE FIX */
/* ============================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* COURSE GRID */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* COMPARISON */
.comparison-wrapper {
  display: flex;
  gap: 30px;
}

/* SALARY GRID */
.salary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* FAQ */
.faq-wrapper {
  display: flex;
  gap: 40px;
}

/* BUTTON FIX */
.btn-primary,
.btn-outline {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
}

/* ============================= */
/* MOBILE RESPONSIVE SECTION */
/* ============================= */

@media (max-width: 992px) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-wrapper {
    flex-direction: column;
  }

  .salary-grid {
    grid-template-columns: 1fr;
  }

  .faq-wrapper {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

}

@media (max-width: 600px) {

  .course-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(26px, 6vw, 40px);
  }

  h2 {
    font-size: 24px;
  }

  .section {
    padding: 40px 0;
  }

  .compare-card,
  .salary-card,
  .enquiry-card {
    padding: 20px;
  }

}


.enroll-container{
display:flex;
gap:30px;
flex-wrap:wrap;
}

.course-info{
flex:1;
background:#f7f9fc;
padding:25px;
border-radius:10px;
}

.form-section{
flex:1;
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.course-logo{
width:120px;
margin-bottom:10px;
}

.salary{
font-size:28px;
font-weight:bold;
color:#0070f3;
}

.course-points{
margin-top:15px;
}

.course-points li{
margin-bottom:8px;
}

.form-row{
display:flex;
gap:10px;
margin-bottom:12px;
}

.form-row input{
flex:1;
padding:10px;
border:1px solid #ddd;
border-radius:5px;
}

.submit-btn{
background:#0070f3;
color:white;
padding:12px;
border:none;
border-radius:6px;
cursor:pointer;
width:100%;
}


.servicenow-enroll-section{
padding:60px 20px;
background:linear-gradient(135deg, #071a3d, #0c2a66);
}

.servicenow-enroll-container{
display:flex;
max-width:1100px;
margin:auto;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* LEFT IMAGE */
.servicenow-image{
width:50%;
}

.servicenow-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* RIGHT FORM */
.servicenow-form-box{
width:50%;
padding:40px;
}

.servicenow-form-box h2{
margin-bottom:10px;
}

.servicenow-form-box h2 span{
background: linear-gradient(90deg, #2563eb, #9333ea);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.servicenow-form-box p{
margin-bottom:20px;
color:#555;
}

.servicenow-form-box form{
display:flex;
flex-direction:column;
gap:12px;
}

.servicenow-form-box input{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.servicenow-form-box button{
padding:14px;
background: linear-gradient(135deg, #112CFC, #14ACD8);
color:white;
border:none;
border-radius:6px;
font-size:16px;
cursor:pointer;
}

/* THANK YOU MESSAGE */
#servicenowThankYou{
text-align:center;
padding:30px;
color:#2e7d32;
}

/* MOBILE */
@media(max-width:768px){

.servicenow-enroll-container{
flex-direction:column;
}

.servicenow-image,
.servicenow-form-box{
width:100%;
}

.servicenow-image{
height:250px;
}

}


.logo img {
  height: 40px;   /* adjust based on your design */
  width: auto;
  display: block;
}


/* WHY SECTION */
.why-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #0b1a2f, #08111f); 
  color: #000;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #f1f1f1;
}

.section-header p {
  color: #f1f1f1;
  margin-top: 10px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 20px 10px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid transparent;
}

/* Match border-bottom color to icon color for each card */
.why-grid .why-card:nth-child(1) {
  border-bottom-color: #784bd8;
}
.why-grid .why-card:nth-child(2) {
  border-bottom-color: #2e6ae2;
}
.why-grid .why-card:nth-child(3) {
  border-bottom-color: #26a8a8;
}
.why-grid .why-card:nth-child(4) {
  border-bottom-color: #db72ae;
}

/* ICON */
.why-card i {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Different icon colors for each why-card */
.why-grid .why-card:nth-child(1) i {
  color: #784bd8; /* Purple */
}
.why-grid .why-card:nth-child(2) i {
  color: #2e6ae2; /* Blue */
}
.why-grid .why-card:nth-child(3) i {
  color: #26a8a8; /* Teal */
}
.why-grid .why-card:nth-child(4) i {
  color: #db72ae; /* Pink */
}

/* TITLE */
.why-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* SECTION */
.learn-section {
  padding: 60px 20px;
  text-align: center;
  background: #f5f7fb;
  font-family: 'Poppins', sans-serif;
}

/* TITLE */
.learn-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

/* FLOW LAYOUT */
.learn-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* STEP CARD */
.learn-step {
  background: #ffffff;
  padding: 18px 15px;
  border-radius: 12px;
  min-width: 130px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* ICON */
.learn-step i{
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
}

/* Learn-step icon colors (skip arrows) */
.learn-flow .learn-step:nth-child(1) i {
  color: #784bd8; /* Purple */
}
.learn-flow .learn-step:nth-child(3) i {
  color: #2e6ae2; /* Blue */
}
.learn-flow .learn-step:nth-child(5) i {
  color: #26a8a8; /* Teal */
}
.learn-flow .learn-step:nth-child(7) i {
  color: #db72ae; /* Pink */
}
.learn-flow .learn-step:nth-child(9) i {
  color: #db5656; /* Red */
}

/* TEXT */
.learn-step p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

/* HOVER EFFECT */
.learn-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* ARROW */
.arrow {
  font-size: 22px;
  color: #2f6bff;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .learn-flow {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}


/* SECTION */
.ai-projects{
  background: radial-gradient(circle at top, #0d2f73 0%, #071633 60%);
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  overflow: hidden;
}

/* CONTAINER */
.container{
  max-width: 1280px;
  margin: auto;
}

/* BADGE */
.section-badge{
  width: fit-content;
  margin: auto;
  margin-bottom: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #b792ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* TITLE */
.ai-section-title{
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ai-section-title span{
  background: linear-gradient(90deg,#4da3ff,#d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.section-subtitle{
  text-align: center;
  color: #c7d2fe;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
  font-size: 16px;
}

/* GRID */
.projects-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}

/* CARD */
.project-card{
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 15px;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  overflow: hidden;
}

.project-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      rgba(255,255,255,0.08),
      transparent);
  pointer-events: none;
}

.project-card:hover{
  transform: translateY(-12px);
}

/* CARD BORDER COLORS */
.project-card.purple{
  box-shadow: inset 0 -4px 0 #8b5cf6;
}

.project-card.blue{
  box-shadow: inset 0 -4px 0 #3b82f6;
}

.project-card.teal{
  box-shadow: inset 0 -4px 0 #14b8a6;
}

.project-card.pink{
  box-shadow: inset 0 -4px 0 #ec4899;
}

/* IMAGE */
.project-image{
  background: rgba(0,0,0,0.25);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.project-image img{
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: cover;
  display: block;
}

/* ICON */
.project-icon{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: -35px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.purple .project-icon{
  color: #b084ff;
}

.blue .project-icon{
  color: #60a5fa;
}

.teal .project-icon{
  color: #2dd4bf;
}

.pink .project-icon{
  color: #f472b6;
}

/* HEADING */
.project-card h3{
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

/* TABLET */
@media(max-width: 1100px){

  .projects-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width: 700px){

  .projects-grid{
    grid-template-columns: 1fr;
  }

  .project-card{
    padding: 20px;
  }

  .project-image img{
    height: 150px;
  }
}



/* ===== CTA Banner Section ===== */

.demo-banner {
  width: 100%;
  padding: 30px 20px;
  background: #f4f4f4;
  box-sizing: border-box;
}

.demo-container {
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(90deg, #02142f 0%, #062d66 100%);
  border-radius: 18px;
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ===== Left Content ===== */

.demo-left {
  flex: 1;
  color: #fff;
}

.demo-left h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 22px;
}

.demo-left h2 span {
  color: #ff8a00;
}

.demo-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.demo-features li {
  font-size: 17px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 32px;
  color: #e6e6e6;
}

.demo-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8a00;
  font-weight: bold;
}

/* ===== Center Image ===== */

.demo-center {
  flex: 0.8;
  text-align: center;
}

.demo-center img {
  width: 100%;
  max-width: 260px;
  animation: float 3s ease-in-out infinite;
}

/* Floating animation */

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ===== Right Content ===== */

.demo-right {
  flex: 1;
  text-align: center;
  color: #fff;
}

.demo-right h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
}

.demo-right p {
  font-size: 15px;
  color: #d8d8d8;
  margin-bottom: 25px;
}

.demo-btn,
.whatsapp-btn {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  padding: 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  box-sizing: border-box;
}

/* Orange Button */

.demo-btn {
  background: #0082ff;
  color: #fff;
  margin-bottom: 18px;
}

.demo-btn:hover {
  background: #ff9100;
  transform: translateY(-2px);
}

/* OR Text */

.or-text {
  margin: 12px 0;
  font-size: 14px;
  color: #ccc;
}

/* WhatsApp Button */

.whatsapp-btn {
  border: 2px solid #00c853;
  color: #fff;
  background: transparent;
}

.whatsapp-btn:hover {
  background: #00c853;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */

@media (max-width: 992px) {

  .demo-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }

  .demo-left,
  .demo-right,
  .demo-center {
    width: 100%;
  }

  .demo-left h2 {
    font-size: 34px;
  }

  .demo-right h3 {
    font-size: 26px;
  }

  .demo-features li {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 576px) {

  .demo-banner {
    padding: 15px;
  }

  .demo-container {
    padding: 30px 20px;
    border-radius: 14px;
  }

  .demo-left h2 {
    font-size: 28px;
  }

  .demo-right h3 {
    font-size: 22px;
  }

  .demo-features li {
    font-size: 15px;
  }

  .demo-btn,
  .whatsapp-btn {
    font-size: 15px;
    padding: 14px 16px;
  }

  .demo-center img {
    max-width: 200px;
  }
}
/* ===== UPCOMING BATCHES SECTION ===== */

.upcoming-batches-section {
  padding: 80px 20px;
  background: #f7f6fb;
  font-family: Arial, sans-serif;
}

.upcoming-batches-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.upcoming-batches-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.upcoming-batches-section .batch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.upcoming-batches-section .batch-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  display: flex;
  gap: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  border: 1px solid #ececec;
}

.upcoming-batches-section .batch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.upcoming-batches-section .batch-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: #f1ecff;
  color: #6d4aff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.upcoming-batches-section .fast-track {
  background: #ffe9fb;
  color: #ff2fc3;
}

.upcoming-batches-section .batch-content h3 {
  font-size: 24px;
  color: #111827;
  margin-bottom: 12px;
  font-weight: 700;
}

.upcoming-batches-section .batch-time {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
  font-weight: 500;
}

.upcoming-batches-section .batch-date {
  font-size: 15px;
  color: #666;
  margin-bottom: 28px;
}

.upcoming-batches-section .batch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.upcoming-batches-section .batch-tag {
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.upcoming-batches-section .limited {
  background: #ffe7e4;
  color: #ff5b4d;
}

.upcoming-batches-section .popular {
  background: #e5f9ea;
  color: #1fa34a;
}

.upcoming-batches-section .intensive {
  background: #e4f7fb;
  color: #16a5c9;
}

.upcoming-batches-section .enroll-btn {
  padding: 12px 28px;
  border: 2px solid #6d4aff;
  border-radius: 12px;
  color: #6d4aff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  display: inline-block;
}

.upcoming-batches-section .enroll-btn:hover {
  background: #6d4aff;
  color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
  .upcoming-batches-section .batch-grid {
    grid-template-columns: 1fr;
  }

  .upcoming-batches-section .batch-card {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .upcoming-batches-section .section-title {
    font-size: 26px;
  }

  .upcoming-batches-section .batch-content h3 {
    font-size: 20px;
  }

  .upcoming-batches-section .batch-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .upcoming-batches-section .enroll-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================= */
/* CAREER + TESTIMONIAL SECTION  */
/* ============================= */

.career-success-section {
  width: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: #f7f8fc;
}


/* ============================= */
/* TOP CAREER BANNER */
/* ============================= */

.career-success-section .career-banner {
  background: linear-gradient(90deg, #07004d, #2415c4, #1b4dff);
  padding: 60px 20px;
  position: relative;
}

.career-success-section .career-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.career-success-section .career-left {
  flex: 1;
  min-width: 280px;
}

.career-success-section .career-left h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.career-success-section .career-left p {
  color: #d8dcff;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 420px;
}

.career-success-section .salary-report-btn {
  display: inline-block;
  background: #fff;
  color: #2415c4;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.career-success-section .salary-report-btn:hover {
  background: #2415c4;
  color: #fff;
}


/* ============================= */
/* SALARY CARDS */
/* ============================= */

.career-success-section .salary-cards {
  flex: 1.3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  min-width: 300px;
}

.career-success-section .salary-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 25px 20px;
  transition: 0.3s ease;
}

.career-success-section .salary-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
}

.career-success-section .salary-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.career-success-section .salary-card h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.career-success-section .salary-card p {
  color: #dbe0ff;
  font-size: 15px;
}


/* ============================= */
/* LEARNER SECTION */
/* ============================= */

.career-success-section .learner-section {
  padding: 90px 20px;
  background: #f7f8fc;
}

.career-success-section .section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.career-success-section .section-heading span {
  color: #4f46e5;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.career-success-section .section-heading h2 {
  margin-top: 10px;
  font-size: 46px;
  color: #111827;
  font-weight: 700;
}


/* ============================= */
/* TESTIMONIALS */
/* ============================= */

.career-success-section .testimonial-wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.career-success-section .testimonial-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.career-success-section .testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.career-success-section .testimonial-card:hover {
  transform: translateY(-6px);
}

.career-success-section .user-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.career-success-section .user-info img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.career-success-section .user-info h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: #111827;
}

.career-success-section .user-info span {
  color: #6b7280;
  font-size: 16px;
}

.career-success-section .stars {
  color: #ffb400;
  margin-top: 8px;
  letter-spacing: 3px;
  font-size: 18px;
}

.career-success-section .testimonial-card p {
  color: #374151;
  line-height: 1.8;
  font-size: 17px;
}


/* ============================= */
/* NAV BUTTONS */
/* ============================= */

.career-success-section .nav-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 38px;
  cursor: pointer;
  transition: 0.3s ease;
  color: #111827;
}

.career-success-section .nav-btn:hover {
  background: #4f46e5;
  color: #fff;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1200px) {

  .career-success-section .salary-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-success-section .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .career-success-section .career-left h2 {
    font-size: 34px;
  }

  .career-success-section .section-heading h2 {
    font-size: 34px;
  }

  .career-success-section .salary-card h4 {
    font-size: 34px;
  }

  .career-success-section .salary-cards {
    grid-template-columns: 1fr;
  }

  .career-success-section .testimonial-wrapper {
    flex-direction: column;
  }

  .career-success-section .nav-btn {
    display: none;
  }
}

@media (max-width: 576px) {

  .career-success-section .career-banner {
    padding: 50px 15px;
  }

  .career-success-section .learner-section {
    padding: 70px 15px;
  }

  .career-success-section .testimonial-card {
    padding: 25px;
  }

  .career-success-section .section-heading h2 {
    font-size: 28px;
  }

  .career-success-section .career-left h2 {
    font-size: 28px;
  }
}

/* WhatsApp Floating Button */

.custom-whatsapp-btn{
  position: fixed;
  right: 20px;
  bottom: 65px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s ease;
}

.custom-whatsapp-btn:hover{
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Mobile Responsive */

@media(max-width:576px){

  .custom-whatsapp-btn{
    width: 58px;
    height: 58px;
    font-size: 30px;
    right: 15px;
    bottom: 15px;
  }

}
