


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');

body {

    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(rgba(4, 20, 33, 1), rgba(4, 20, 33, 1));  
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 0;
    position: relative; 
    overflow-x: hidden;
}

#Ravi{
    margin-top: 10px;
}


/* Main Card */
.achievement-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #112040;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #1C2A3A;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 70%;
    height: 4%;
  }
  
  /* Trophy Icon Box */
  .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #112040;
    border-radius: 8px;
    border: 1px solid #1C2A3A;
  }
  
  .icon-box img {
    width: 25px;
    height: 25px;
  }
  
  /* Text */
  .achievement-text {
    font-size: 16px;
    color: white;
    font-weight: 500;
  }
  
  /* Five Star Badge */
  .badge {
    position: absolute;
    top: -25px;
    right: -10px;
    background: white;
    color: black;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
  }

  
  .badge .star {
    color: gold;
    margin-right: 5px;
  }

/* Background Image Layer */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/fall.png') no-repeat center center;
    background-size: cover;
    opacity: 0.2; /* Adjust transparency level */
    z-index: -1;
}



/* Top Banner */
/* Top Banner */
.top-banner {
    
    background: linear-gradient(90deg, #FFD700, #FFEA00, #FFC400, #FFEA00, #FFD700);
    background-size: 300% 100%;
    color: black;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    animation: metallic-shine 3s infinite linear;
}

/* Metallic Gradient Animation */
@keyframes metallic-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    margin-top: 60px;
    padding: 50px 20px;
    gap: 30px;
}


.cta-button {
    background: linear-gradient(90deg, #ff4d4d, #ff1a1a, #e60000, #cc0000, #ff0000);
    background-size: 300% 100%;
    color: white;
    text-decoration: none;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;

    width: 100%;  /* Full width */
    animation: metallic-shine 3s infinite linear;
    position: fixed;
    z-index: 100;
    bottom: 0px;
}

/* Left Section */
.left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    font-size: 14px;
}

.rating {
    background: white;
    color: black;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
    margin-left: 10px;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
}

.highlight {
    background: linear-gradient(90deg, #FFD700, #FFEA00, #FFC400, #FFEA00, #FFD700);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: metallic-text 3s infinite linear;
}

/* Smooth Shining Animation */
@keyframes metallic-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}


.coupon {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
}






.cta-button .small-text {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.9;
    color: white;
}

/* Right Section */
.right {
    flex: 1;
}

.video-box {
    position: relative;
    background: #1a1a2e;
    padding: 15px;
    border-radius: 10px;
}

.video-box iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.video-details {
    margin-top: 10px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 5px;
}

/* Trainer Info */
.trainer {
    display: flex;
    background: #002D56;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    gap: 15px;
    align-items: center;
}

.trainer img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
}

.trainer-info {
    flex: 1;
}





.video-container {
    position: relative;
    width: 640px; /* Adjust as needed */
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    width: 100%;
    height: 360px; /* Adjust height if needed */
    border: none;
}


#video-thumbnail {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

#video-thumbnail img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.play-button i {
    font-size: 32px;
    color: white;
}

.video-container:hover .play-button {
    background: rgba(0, 0, 0, 0.8);
}

#youtubeVideo {
    display: none;
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.video-details {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    background: #232b4e;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}

.video-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2e2545, #402b5b);
    padding: 12px 20px;
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px;
    color: white;
    font-weight: 500;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    gap: 20px;
    max-width: 600px;
    margin: auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.info-item i {
    color: #f7b500;
    font-size: 18px;
}


/* General Styling */
.custom-container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
    background-color: #0b1229;
    color: white;
    font-family: Arial, sans-serif;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.custom-col {
    flex: 1;
    padding: 10px;
}

.custom-text-center {
    text-align: center;
}

/* Profile Image */
.custom-profile-img {
    width: 100%;
    border-radius: 10px;
}

/* Headings & Text */
.custom-highlight {
    color: #ffcc00;
    font-weight: bold;
}

/* Card Styling */
.custom-card {
    background-color: #131a35;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin: 10px;
}

.custom-card-title {
    font-size: 18px;
    font-weight: bold;
}

/* Logos Section */
.custom-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.custom-logo-card {
    background-color: #191f3d;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    width: 30%;
}

.custom-logo-card img {
    width: 100%;
}

/* Button */
.custom-btn-yellow {
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
}












/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');







.second-container {
    display: flex;
    gap: 100px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}


.second-box {
    background: linear-gradient(135deg, #1c2431, #283347);
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
}

h2 {
    font-size: 24px;
    font-weight: 700;
}

h2 span {
    color: #f4a261;
}

p {
    font-size: 14px;
    margin: 10px 0;
}

.second-videos {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.second-video {
    flex: 1;
    text-align: center;
}

.second-video img {
    width: 100%;
    border-radius: 8px;
}

.second-video p {
    margin-top: 5px;
    font-size: 12px;
    font-weight: bold;
}

.second-video span {
    color: #f4a261;
}

.second-media-logos {
    display: flex;
    justify-content: space-evenly;
    margin: 15px 0;
}

.second-media-logos img {
    width: 80px;
}

.second-checklist {
    list-style: none;
    text-align: left;
    margin: 15px 0;
}

.second-checklist li {
    font-size: 14px;
    padding: 5px 0;
}

.second-extra {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

button.second-cta {
    background: linear-gradient(90deg, #FFD700, #FFEA00, #FFC400, #FFEA00, #FFD700);
    animation: metallic-text 3s infinite linear;
    background-size: 300% 100%;
    font-size: 16px;
    color: black;
    padding: 30px;
    border: none;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
}

@keyframes metallic-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}







.second-checklist {
    list-style: none;
    text-align: left;
    margin: 15px 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2-column layout */
    gap: 10px;
}

.second-checklist li {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

/* ✅ Custom Checkbox Icon */
.second-checklist li::before {
    content: "✔"; /* Checkmark */
    display: inline-block;
    background: #FFC107; /* Yellow background */
    color: black; /* Checkmark color */
    font-weight: bold;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 4px; /* Rounded box */
}

#other108
{
    font-size: 20px;
}



.third-container {
    display: flex;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: -13%;
}
.third-card {
    width: 35%;
    max-width: 100%;
    padding: 20px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}
.third-without-guidance {
    background-color: #ff4d4d43;
    border: 2px solid red;
    margin-left: auto;
    margin-right: 100px;
    margin-bottom: 280px;
    margin-top: 150px;

}
.third-with-guidance {
    background-color: #66ff6638;
    border: 2px solid rgb(0, 250, 0);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 280px;
    margin-top: 150px;

}
.third-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
}
.third-list {
    list-style: none;
    padding: 0;
}
.third-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 18px;
}
.third-list li .third-icon {
    font-size: 24px;
    margin-right: 12px;
}
.third-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/black-linen.png');
    opacity: 0.1;
    border-radius: 15px;
}

#card-head1{
    text-align: center;
    font-size: 130%;
    color: white;
    font-weight: bold;
    padding-top: 5%;
    padding-bottom: 5%;
    width: 110%;
    max-width: 150%;
    height: 5%;
    margin-left: -5%;
    margin-top: -5%;
    background-color: red;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#card-head2{
    text-align: center;
    font-size: 130%;
    color: white;
    font-weight: bold;
    padding-top: 5%;
    padding-bottom: 5%;
    width: 110%;
    max-width: 150%;
    height: 5%;
    margin-left: -5%;
    margin-top: -5%;
    background-color: rgb(0, 250, 0);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}







.webinar-section {
    width: 90%;
    max-width: 900px;
    position: relative;
    padding: 40px 0;
    margin-left: auto;
    margin-right: auto;
  }
  h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
  }
  .timeline {
    position: relative;
    width: 100%;
    padding: 20px 0;
  }
  /* Vertical center line */
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 955px;
    left: 50%;
    width: 20px;
    border-radius: 10px;
    background: linear-gradient(180deg, #9333ea, #4f46e5);
    transform: translateX(-50%);
    z-index: 0;
  }
  .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
  }
  .timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Left items positioned to the left */
  .timeline-item.left {
    left: 0;
    text-align: right;
  }
  /* Right items positioned to the right */
  .timeline-item.right {
    left: 50%;
    text-align: left;
  }
  .timeline-item .content {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  }
  .timeline-item h3 {
    margin: 0;
    font-size: 18px;
  }
  .timeline-item p {
    margin: 10px 0 0;
    font-size: 14px;
  }
  /* Dot element positioned so that it appears exactly on the vertical line */
  .timeline-item .dot {
    position: absolute;
    top: 55px; /* adjust vertical alignment as needed */
    width: 40px;
    height: 40px;
    background: #9333ea;
    border-radius: 50%;
  }
  /* For left items, dot at container's right edge (vertical line) */
  .timeline-item.left .dot {
    right: -20px;
  }
  /* For right items, dot at container's left edge (vertical line) */
  .timeline-item.right .dot {
    left: -20px;
  }







  .containerfifth {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
}
.sectionfifth {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.left-boxfifth, .right-boxfifth {
    flex: 1;
}
.flowchartfifth, .frameworkfifth {
    width: 100%;
    border-radius: 10px;
}
h2 {
    font-size: 50px;
    font-weight: bold;
}
.highlightfifth {
    color: #f89c3c;
}
.iconfifth {
    font-size: 26px;
}
.redfifth {
    color: red;
    font-size: 30px;
}
.greenfifth {
    color: green;
    font-size: 30px;
}
p{
    font-size: 36px;
}



.sixthwebinar h2 {
    font-size: 60px;
    margin-bottom: 50px;
    margin-top: 200px;


    background: linear-gradient(90deg, #FFD700, #FFEA00, #FFC400, #FFEA00, #FFD700);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: metallic-text 3s infinite linear;
    
}
.sixthgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.sixthcard {
    background-color: #161B22;
    padding: 50px;
    border-radius: 10px;
}
.sixthimage {
    width: 100%;
    height: 150px;
    border-radius: 10px;
}
.sixthh3 {
    color: #FFC107;
    margin-top: 15px;
    font-size: 18px;
    

}



p {
    font-size: 14px;
    color: #B3B3B3;
}



.sixthcard-marketers
{
    background-color: #161B22;
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 100px;
}






.faq-container {
    width: 95%;
    margin: auto;
    padding-top: 50px;
    margin-bottom: 100px;
}
.faq-header {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.faq-header span {
    color: #f4b43a;
}
.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 10px 0;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}
.faq-item .question {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    align-items: center;
}
.faq-item .answer {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}
.faq-item.active .answer {
    opacity: 1;
    max-height: 200px;
    padding-top: 10px;
}








#fourth-container {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

#fourth-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/fourth.jpg') no-repeat center center/cover;
    opacity: 0.7; /* Adjust opacity here */
    z-index: -1;
}

#fourth-content {
    max-width: 600px;
    z-index: 1;
}

#fourth-h2 {
    font-size: 30px;
}

#fourth-h3 {
    background-color: #0D1B22;
    padding: 10px;
    display: inline-block;
}

#fourth-h3 span {
    background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

#fourth-p {
    font-size: 20px;
    margin: 10px 0;
    color: white;
}





/* ---------------- Responsive Styles ---------------- */

/* Large devices (desktops & large tablets) */
@media only screen and (max-width: 1200px) {
    .container {
      width: 90%;
      margin: auto;
      padding: 20px;
    }
    /* Adjust headings if required */
    h1 {
      font-size: 2.5rem;
    }
  }
  
  /* Medium devices (tablets & small desktops) */
  @media only screen and (max-width: 992px) {
    .container {
      width: 95%;
      padding: 20px;
    }
    .header, .nav {
      flex-direction: column;
      text-align: center;
    }
    .nav ul {
      flex-direction: column;
      gap: 10px;
    }
    h1 {
      font-size: 2.2rem;
    }
  }
  
  /* Small devices (landscape tablets & large phones) */
  @media only screen and (max-width: 768px) {
    .container {
      width: 100%;
      padding: 15px;
    }
    h1 {
      font-size: 2rem;
    }
    .cta-button {
      font-size: 1rem;
      padding: 10px 15px;
    }
    /* Example: make grid or flex layouts stack */
    .custom-flex, .second-container, .third-container {
      flex-direction: column;
      gap: 15px;
    }
  }
  
  /* Extra small devices (most mobile phones, up to 576px) */
  @media only screen and (max-width: 576px) {
    .container {
      padding: 10px;
    }
    h1 {
      font-size: 1.8rem;
    }
    .video-box iframe,
    .video-container iframe {
      height: auto; /* use aspect ratio for responsiveness */
      max-height: 180px;
    }
    .trainer img {
      width: 60px;
      height: 60px;
    }
    .cta-button {
      font-size: 0.9rem;
      padding: 8px 10px;
    }
    /* Adjust text blocks for readability */
    p, .achievement-text {
      font-size: 0.9rem;
      text-align: center;
    }
  }
  
  /* Very small devices (e.g., older iPhones, up to 400px) */
  @media only screen and (max-width: 400px) {
    body {
      font-size: 14px;
    }
    h1 {
      font-size: 1.6rem;
    }
    .container {
      padding: 8px;
    }
    .cta-button {
      font-size: 0.85rem;
      padding: 6px 8px;
    }
    .trainer img {
      width: 55px;
      height: 55px;
    }
  }
  