* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #fff;
    padding-top: 100px;   
}

/* Container */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
}



.top-right {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 10px 0;
    color: #003b5c;
}

.top-right i {
    margin-right: 6px;
    color: #0077a3;
}

/* Header */
.main-header {
    position: fixed;
    top: 40px; /* height of top-bar */
    left: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;   /* reduced height */
}



/* Logo container */
.logo {
    display: flex;
    align-items: center;   /* vertical centering */
}

/* Logo image size & clarity */
.logo img {
    height: 52px;     /* balanced & compact */
    width: auto;
    object-fit: contain;
}


/* Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #003b5c;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #d42603;
    font-size: large;
    text-decoration: underline;
}

/* Contact Button */
.contact-btn {
    background: linear-gradient(135deg, #004c75, #0077a3);
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    opacity: 0.9;
    background-image: linear-gradient(to right, #ff6e7f 0%, #bfe9ff  51%, #ff6e7f  100%);

}
/* Floating Social Container */
.floating-social {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Social Icon Style */
.floating-social .social {
     width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

/* Individual Colors */
.facebook {
    background: #1877f2;
}

.linkedin {
    background: #0077b5;
}
.social.twitter {
     background: #000000; 
    }

.whatsapp {
    background: #25d366;
}

.instagram {
    background: linear-gradient(
        45deg,
        #f58529,
        #feda77,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}
.social.youtube {
  background-color: #ff0000;
}

/* Hover Effect */
.floating-social .social:hover {
    padding-right: 12px;
    width: 60px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 90vh;
    background: url("../documents/taximg1.png") no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

/* White Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 45%,
        rgba(255, 255, 255, 0.6) 65%,
        rgba(255, 255, 255, 0.2) 100%
    );
    filter: blur(20px);
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: #1f2d3d;
}
.hero-title-1 {
    font-size: 35px;
    font-weight: bolder;
    font-family: 'OpenSans', 'Arial', sans-serif;
}
.hero-title-2{
    font-size: 35px;
    font-weight: normal;
    font-family: 'OpenSans', 'Arial', sans-serif;
}

.hero h1 {
    font-size: 20;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #FFD700; /* Gold */
    color: #001f3f; /* Dark Navy */
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #E6C300;
}
/* Main Content Sections */
.section {
    padding: 60px 5%;
    text-align: center;
}

.section h2 {
    font-size: 2em;
    color: #001f3f;
    margin-bottom: 40px;
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #FFD700;
    margin: 10px auto 0;
}
.section p {
      text-align: justify;        /* fits text cleanly within margins */
  text-justify: inter-word;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-top: 4px solid #003366;
    transition: transform 0.3s;
}
.card a{
    margin-top: 180px;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #003366;
    margin-top: 0;
}
.card p{
    margin-bottom: 10px;
}



/* Footer */
.footer {
    background-color: #001f3f;
    color: #ccc;
    padding: 40px 5%;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px 10px 15px;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #FFD700;
}

.social-media a {
    color: #FFD700;
    font-size: 1.5em;
    margin: 0 10px;
    text-decoration: none;
}
/* Footer CTA */
.footer-cta {
background: #eeeeee;
padding: 20px 0;
}

.cta-flex {
display: flex;
align-items: center;
justify-content: space-between;
}

.footer-cta p {
font-size: 18px;
color: #1f3a52;
font-weight: 600;
}

.cta-btn {
background: #4a90e2;
color: #fff;
padding: 12px 25px;
border-radius: 25px;
text-decoration: none;
font-size: 14px;
}

.cta-btn:hover {
background: #357abd;
}

/* Main Footer */
.footer-main {
background: #2f4357;
padding: 60px 0;
color: #d5e2ee;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}

.footer-col h3 {
color: #fff;
margin-bottom: 20px;
font-size: 18px;
}

.footer-col p {
font-size: 14px;
line-height: 1.7;
margin-bottom: 10px;
}
/* Links */
.footer-col ul {
    list-style: none;
    }
    
    .footer-col ul li {
    margin-bottom: 12px;
    }
    
    .footer-col ul li a {
    color: #d5e2ee;
    text-decoration: none;
    font-size: 14px;
    }
    
    .footer-col ul li a:hover {
    color: #4a90e2;
    }
    
    /* Social Icons */
    .social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    }
    
    .social-icons a {
    width: 35px;
    height: 35px;
    background: #3b536a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    }
    
    .social-icons a:hover {
    background: #4a90e2;
    }
    
/* WRAPPER */
.contact-wrapper {
    padding: 80px 8%;
    background: #ffffff;
}

/* HEADER */
.contact-header {
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 15px;
    color: #666;
}

/* CONTENT */
.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 22px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.contact-form textarea {
    height: 160px;
    resize: none;
}

/* BUTTON */
.contact-form button {
    background: #1bb15e;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: #169b51;
}

/* IMAGE */
.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-image {
        margin-top: 30px;
    }
}
/* PAGE TITLE SECTION */
.page-title {
    position: relative;
    height: 320px;
    background: url("../documents/course_img.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 8%;
    margin: top 20px;; /* adjust if header is fixed */
}

/* DARK OVERLAY */
.page-title-overlay {
     content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("../documents/course_img.png") center/cover;
  filter: blur(5px);
  transform: scale(1.1);
}

/* CONTENT */
.page-title-content {
    position: relative;
    color: #fff;
}

/* GREEN LINE */
.title-line {
    display: inline-block;
    width: 150px;
    height: 4px;
    background: #6dbb45;
    margin-bottom: 15px;
}

/* TITLE */
.page-title-content h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-title {
        height: 240px;
        padding-left: 5%;
    }

    .page-title-content h1 {
        font-size: 32px;
    }
}
    


/*couse details*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

.course-hero {
  padding: 80px 20px;
  background: #ffffff;
}
.course-container,
.advanced-container,
.basic-container,
.info-container,
.section {
  max-width: 1200px;
  padding: 32px 24px;    /* ⬅ reduced from large spacing */
  margin: 0;
}
.course-advanced,
.basic-tier {
  border-top: 1px solid #eee;
}



.course-content h1,
.advanced-content h2,
.basic-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
}




.course-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.course-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.duration {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

/* PRICE BOX */
.price-box {
  margin: 20px 0;
}

.old-price {
  font-size: 18px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.offer-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.new-price {
  font-size: 34px;
  font-weight: 700;
  color: #000;
}

.discount-badge {
  background-color: #d1fae5;
  color: #047857;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
/* LIMITED TIME OFFER BADGE */
.limited-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  animation: pulseGlow 2s infinite;
  box-shadow: 0 0 0 rgba(245, 158, 11, 0.6);
}

/* PULSE ANIMATION */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}



.emi {
  font-size: 14px;
  color: #444;
  margin-bottom: 25px;
}

.emi a {
  color: #7a5cff;
  text-decoration: none;
}

.cta {
  display: flex;
  align-items: center;
  gap: 20px;
 margin: 20px 0 12px;
}

.btn-primary {
  background: #8b6cff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  color: #5c6b8a;
  text-decoration: none;
  font-weight: 500;
}

.gst-note {
  font-size: 13px;
  color: #666;
}

/* RIGHT VISUAL */
.course-visual {
  position: relative;
  text-align: center;
}

.circle-bg {
  width: 360px;
  height: 360px;
  background: #f3baf4;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.student-img {
  position: relative;
  max-width: 300px;
  z-index: 2;
}

/* third course */
.basic-tier {
  padding: 90px 20px;
  background: #ffffff;
}

.basic-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* LEFT CONTENT */
.basic-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 20px;
}

.basic-content .description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 520px;
  margin-bottom: 25px;
}

.basic-content .duration {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.basic-content .price {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

/* BUTTON 
.btn-enroll {
  display: inline-block;
  background: #8b6cff;
  color: #fff;
  padding: 14px 38px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
}
  */

.gst-note {
  font-size: 13px;
  color: #666;
}

/* RIGHT IMAGE */
.basic-visual {
  position: relative;
  text-align: center;
}

.circle-bg.pink {
  width: 380px;
  height: 380px;
  background: #f5b6ff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.basic-visual img {
  position: relative;
  max-width: 280px;
  border-radius: 6px;
  z-index: 2;
}
.course-visual,
.advanced-visual,
.basic-visual {
  flex: 0 0 45%;
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .basic-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .basic-visual {
    order: -1;
  }

  .circle-bg.pink {
    width: 300px;
    height: 300px;
  }
}





/* RESPONSIVE */
@media (max-width: 992px) {
  .course-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .course-visual {
    margin-top: 40px;
  }
}



/*adva course*/

.course-advanced {
  padding: 90px 20px;
  background: #ffffff;
}

.advanced-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT IMAGE AREA */
.advanced-visual {
  position: relative;
  text-align: center;
}

.circle-bg.green {
  width: 360px;
  height: 360px;
  background: #9bf0b5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.student-img {
  position: relative;
  max-width: 280px;
  z-index: 2;
}



/* RIGHT CONTENT */
.advanced-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.advanced-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}





/* RESPONSIVE */
@media (max-width: 992px) {
  .advanced-container {
    grid-template-columns: 1fr;
  }

  .advanced-visual {
    margin-bottom: 40px;
  }
}


/* early bird section*/

/* HIGHLIGHT BANNER SECTION */
.info-section {
  background: linear-gradient(135deg, #6f5cff, #8b78ff);
  margin: 60px 0;
}

.info-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Headings */
.info-container h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* List */
.topics-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.topics-list li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  position: relative;
  padding-left: 28px;
}

/* Check icon bullets */
.topics-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd86b;
  font-weight: bold;
}

.info-container {
  text-align: center;
}

.topics-list {
  display: inline-block;
  text-align: left;
}

/* Topics list */
.info-container {
  text-align: center;
}

.topics-list {
  display: inline-block;
  text-align: left;
}

@media (max-width: 992px) {

  .course-container,
  .advanced-container,
  .basic-container {
    flex-direction: column;
    text-align: center;
  }

  .course-content,
  .advanced-content,
  .basic-content {
    max-width: 100%;
  }

  .cta {
    justify-content: center;
  }

  .offer-row {
    justify-content: center;
  }
}
@media (max-width: 576px) {

  .course-hero,
  .course-advanced,
  .basic-tier {
    padding: 50px 20px;
  }

  h1, h2 {
    font-size: 24px;
  }

  .description {
    font-size: 15px;
    line-height: 1.6;
  }

  .new-price {
    font-size: 22px;
  }

  .discount-badge {
    font-size: 12px;
    padding: 6px 10px;
  }

  .limited-offer {
    font-size: 12px;
    padding: 6px 10px;
  }

  .student-img {
    max-width: 280px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .circle-bg {
    display: none;
  }
}


/* Enroll Button */
.btn-enroll {
  display: inline-block;
  padding: 12px 24px;
  background: #f4b400;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Modal Box */
.modal-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-box h2 {
  margin-bottom: 10px;
}

.modal-box p {
  color: #555;
  margin-bottom: 20px;
}

/* Buttons */
.enroll-actions a {
  display: block;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.call-btn {
  background: #007bff;
  color: #fff;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.career-hero {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.career-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 20, 40, 0.65);
    display: flex;
    align-items: center;
}
.career-hero-content {
    position: relative;
    color: #fff;
    padding-left: 8%;
}

.career-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.career-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}
.courses-hero {
    background-image: url("../documents/course_img.png"); /* choose a course-related image */
}

