body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f8ff;
}

/* Banner container - centered, not full screen */
.banner-container {
    display: flex;
    justify-content: center;
    padding: 20px 15px;
}

.top-banner {
    background-color:rgb(0,48,99);
    color: white;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 8px;
    text-align: center;
}

/* Full Screen Section */
.full-screen-section {
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Heading Section */
.hero-section {
    text-align: center;
    padding: 20px;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-section h1 span {
    color: #1666f0;
}

.hero-section p {
    font-size: 1.3rem;
    color: #333;
    max-width: 700px;
    margin: auto;
}

/* Gradient Blue Box */
.quote-box {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #ff9914, #002e6d,#002e6d,#002e6d);
    color: white;
    padding: 40px;
    margin: 30px auto;
    border-radius: 20px;
    max-width: 1000px;
    flex-wrap: wrap;
    overflow: visible;
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.quote-image {
    width: 200px;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
    position: relative;
    top: 53px; 
    margin-right: 35px;
}

.quote-text {
    max-width: 650px;
}

.quote-text p {
    font-size: 1.1rem;
    margin: 0 0 10px;
    line-height: 1.6;
}

.quote-highlight {
    color: #ff9914;
    font-weight: 500;
}

/* Buttons Below Box */
.quote-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: -10px; 
}

.quote-btn {
    background-color: #ff9914;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.quote-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .quote-box {
        flex-direction: column;
        text-align: center;
    }
    .quote-image {
        margin: 0 0 20px 0;
    }
    .quote-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
}

.stat-box {
    text-align: center;
}

.stat-box h2 {
    font-size: 3.5rem; 
    color:#0d2c4f;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.divider {
    width: 1px;
    background-color: #ccc;
    height: 70px;
}

.google-review {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-logo {
    height: 35px;
    margin-bottom: 8px;
}

.stars {
    font-size: 2rem;
    color: #ffbf00;
    margin-bottom: 5px;
}

.reviews-link {
    color: black;
    font-weight: bold;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 25px;
    }
    .divider {
        display: none;
    }
}


/* General Section Styling */
.certificate-section {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ff9914;
    margin: 8px auto 0;
}

/* Certificate Card */
.certificate-card {
    display: inline-block;
    text-align: center;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 20px;
}

.certificate-img {
    width: 150px; 
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
}

/* Buttons Container */
.certificate-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Curriculum Button */
.curriculum-btn {
    background: #ffcc00;
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

/* Callback Button */
.callback-btn {
    display: inline-block;
    background: linear-gradient(to right,#ff9914,#ffcc00);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
}
.callback-btn:hover {
    opacity: 0.9;
}


.tools-section {
  background: linear-gradient(to bottom, #eaf6ff, #ffffff);
  padding: 50px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ff9914;
  margin: 10px auto 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
}

.tool-card {
  background: white;
  border-radius: 8px;
  padding: 30px 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tool-card img {
  width: 100px;
  height: 50px;
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.mentor-section {
  background: white;
  padding: 50px 20px;
}

.mentor-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.mentor-info {
  margin-left: 100px;
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.mentor-name {
  font-size: 1.8rem;
  color: #ff9914;;
}
.mentor-name span {
  color:  #003063;
}

.followers {
  margin: 10px 0 20px;
  font-size: 1rem;
}
.followers a {
  margin-left: 8px;
  color: #003063;
  font-size: 1.2rem;
}

.mentor-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight {
  background: linear-gradient(90deg, #ff9914, #002b80);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.highlight span {
  margin-right: 10px;
}

.mentor-image {
  flex: 1;
  min-width: 300px;
  text-align:left;
}
.mentor-image img {
  background-color: #ff9914;
  width: 250px;
  height: auto;
  border-radius: 50%;
  border: 4px solid black;
}

.featured-title {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1rem;
}

.featured-logos {
    text-align: center;
    margin-top: 15px;
}

.featured-logos p {
    font-weight: bold;
    margin-bottom: 10px;
}

.featured-logos .logo-row {
    height: 20px;
    margin-bottom: 10px;
}

.featured-logos img {
    border: none;
    background: none;
    padding: 0;
    box-shadow: none;
    max-width: 150px; 
    height: 20px;
}


/* Responsive */
@media (max-width: 768px) {
  .mentor-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mentor-info {
    order: 1;
  }
  .mentor-image {
    order: 2;
  }
}


.certificate-section {
  background: linear-gradient(to right, #f3f4ff, #e6f0ff);
  padding: 50px 0;
}

.certificate-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 20px;
}

.certificate-text {
  flex: 1;
}

.certificate-text h2 {
  font-weight: bold;
  font-size: 35px;
}

.certificate-text hr {
  width: 50px;
  height: 3px;
  background: #001f54;
  border: none;
  margin: 10px 0;
}

.certificate-text p {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
}

    .companies-section {
        text-align: center;
        padding: 40px 20px;
        background: linear-gradient(to bottom, #dfeefc, #f4f8ff, #ffffff);
    }

    .companies-section h2 {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .companies-section p {
        font-size: 16px;
        color: #555;
        margin-bottom: 30px;
    }

    .company-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1000px;
        margin: auto;
    }

    .company-card {
        background-color: white;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .company-card img {
        max-height: 50px;
        max-width: 100%;
    }

    /* Responsive for smaller devices */
    @media (max-width: 768px) {
        .company-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .company-grid {
            grid-template-columns: 1fr;
        }
    }


.testimonials-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.testimonials-section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonials-section .subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3,400px);
    gap: 20px;
    justify-content: center;
    margin-left: 100px;
}

.testimonial-card {
    width: 320px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-top {
    height: 80px;
    position: relative;
}

.student-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ccc; 
}

.card-bottom {
    padding: 50px 20px 20px;
    position: relative;
}

.company-logo {
    width: 70px;
    height: auto;
    position: absolute;
    top: 20px;
    right: 20px;
}

.card-bottom h3 {
    font-size: 18px;
    margin-top: 0;
}

.role {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
}

.stars {
    font-size: 16px;
    color: #003063;
    margin-bottom: 15px;
}

.linkedin-link {
    display: inline-block;
    color: #003063;
    text-decoration: none;
    font-weight: bold;
}

.linkedin-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
}



.course-fee-section {
  text-align: center;
  padding: 4% 2%;
  font-family: Arial, sans-serif;
}

.course-title {
  font-size: 3rem;
  font-weight: bold;
}

.course-subtitle {
  color:#ff9914;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.course-fee-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 15px;
}

.course-card {
  flex: 1 1 300px;
  max-width: 600px;
  height: 300px;
  padding: 20px;
  border-radius: 12px;
  color: white;
  text-align: left;
}

.course-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.course-card p {
  font-size: 1.2rem;
  margin: 6px 0;
}

.offer-price {
  background: yellow;
  border-radius: 6px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  padding: 8px;
  margin: 10px 0;
  display: inline-block;
}

.pay-btn {
  background: #ff9914;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 12px;
  cursor: pointer;
  border-radius: 4px;
}

.emi-info {
  margin-top: 10px;
  border: 1px dashed yellow;
  padding: 5px;
  font-size: 0.85rem;
}

.course-card.india {
  background: #613a07;
}

.course-card.outside-india {
  background: #0d2c4f;
}


.faq-section {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #531267, #cde8ff);
}

.faq-section h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
}

.faq-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #242424;
  margin: 8px auto 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #003063;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 1.1rem;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background-color: #ff9914;
}

.faq-icon {
  font-weight: bold;
  background-color: white;
  color: #2980b9;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.faq-text {
  flex: 1;
  text-align: left;
}

.faq-arrow {
  font-size: 1.5rem;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  align-items: flex-start;
}

/* Left Form */
.callback-form {
  flex: 0 0 40%;
  background:  #003063;
  padding: 25px;
  border-radius: 15px;
  color: white;
}

.callback-form h2 {
  font-size: 26px;
  color: #ff9d00;
  margin: 0;
}

.callback-form p {
  font-size: 14px;
}

.callback-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.callback-form .required {
  color: red;
}

.callback-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: none;
}

.phone-input {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 5px;
}

.phone-input .flag {
  padding: 0 10px;
}

.phone-input input {
  border: none;
  flex: 1;
  margin-left: -35px;
}

.disclaimer {
  font-size: 10px;
  margin-top: 10px;
}

.send-btn {
  background: #ffb400;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}

.send-btn i {
  margin-left: 5px;
}

/* Right Side Info */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-top {
  display: flex;
  gap: 20px;
}

.info-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  flex: 1;
}

.info-card i {
  font-size: 28px;
  color: #2b84ac;
}

.info-card h4 {
  margin: 10px 0 5px;
}

.info-card p {
  font-size: 14px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #2b84ac;
}

.social-icons a:hover {
  color: #ff9d00;
}

.address-card {
  flex: 1 1 100%;
}

hr {
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
  }
  .callback-form {
    flex: 1 1 100%;
  }
  .info-top {
    flex-direction: column;
  }
}

/* Custom Colors */
.bg-dark-blue {
  background-color: #062b44;
}

.bg-orange {
  background-color: #f37021;
}

.text-orange {
  color: #ff9914  ;
}

/* Footer General Styling */
.footer {
  padding-top: 60px;
  padding-bottom: 40px;
  font-size: 1rem; 
}

.footer h6 {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.footer .footer-link {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: lighter;
}

.footer-link{
  font-weight: lighter;
}

.footer .footer-link:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-logo {
  max-height: 80px;
  margin-bottom: 20px;
}

.footer-bottom {
  font-size: 1rem;
  padding: 20px 0;
}

/*Toggle Button */
html { scroll-behavior: smooth; }
.to-top-btn{
  position: fixed;
  right: 16px;
  bottom: 75px;
  width: 60px; height: 60px;
  border: 0; border-radius: 100%;
  background: #FF9914;; color: #ffffff;
  font-size: 20px; line-height: 44px; text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  opacity: 0; transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 2147483647; /* sit above everything */
}
.to-top-btn.show{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top-btn:focus{ outline: 2px solid #fff; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  .to-top-btn{ transition: none; }
}


/* course pop up */
.coursecontent:hover {transform:translateY(-2px);cursor: pointer;}
.overlay {display:none; position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:9999; overflow:auto;}
.popup {background:#fff; max-width:980px; margin:48px auto; padding:22px 22px 28px; border-radius:14px; box-shadow:0 12px 28px rgba(2,6,23,.24); position:relative;}
.popup h1 {margin:0 0 6px; text-align:center; font-size:26px; color:#111827;}
.sub {text-align:center; margin:0 0 16px; font-size:14px; color:#64748b;}
.popup section {background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:16px; margin:12px 0;}
.popup section h2 {margin:0 0 8px; font-size:20px; padding-left:10px; border-left:4px solid #0b5ed7;}
.popup ul {margin:0; padding-left:20px;}
.close {position:absolute; top:12px; right:14px; font-size:22px; color:#dc2626; border:0; background:transparent; cursor:pointer;}
@media (max-width:480px){ .popup {margin:24px 12px;} }
.bg-dark-blue {
  background-color: #003063;
}
.bg-orange {
  background-color: #ff9914 ;
}
.text-orange {
  color: #ff9914 ;
}
.text-dark-dark {
  color: #003063;
}

.pay:hover{
  background-color: #003063;
  color: white;
}
