:root {
 
  --primary: #ff3d00;         
  --primary-dark: #cc3100;  
  --primary-light: #FCA5A5;   

  --secondary: #FBBF24;      
  --secondary-dark: #F59E0B;   

  --bg-light: #FFFBEB;        
  --bg-dark: #1F2937;          
  --text-dark: #1F2937;       
  --text-muted: #6B7280;     
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow: rgba(0, 0, 0, 0.1); 
   --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
   --red-soft: rgba(229, 9, 20, 0.25);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

 
  --radius: 12px;             
  --transition: all 0.3s ease;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 64px;


}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body) !important;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }

p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

section {
  padding: var(--spacing-xl) 0;
}
ul li{
  list-style: none;
}



.primarybtn {
 background-image: linear-gradient(to right, #fe8c00 0%, #f83600  51%, #fe8c00  100%);
  color: var(--white) !important;
  border-radius: 40px 34px 40px 20px !important;

}

.primarybtn:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
}

.secondarybtn{
 background-image: linear-gradient(to right, #FF8008 0%, #FFC837  51%, #FF8008  100%);
  color: var(--text-dark) !important;
   border-radius: 34px 40px 40px 14px !important;

}

.secondarybtn:hover {
  background-color: var(--secondary-dark) !important;
}



/* Topbar start */

    .topbar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 0.9rem;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
   
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.topbar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.topbar-item:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.topbar-item i {
    font-size: 0.95rem;
    color: var(--secondary);
}

.topbar-right a {
    color: var(--white);
    font-size: 1.1rem;
    margin-left: 16px;
    transition: var(--transition);
    opacity: 0.85;
}

.topbar-right a:hover {
    background-color: var(--border);
    border-radius: var(--radius);
    padding: 5px ;
    color: var(--bg-dark);
    opacity: 1;
    transform: scale(1.2);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .topbar-left {
        gap: 20px;
        justify-content: center;
    }
    
    .topbar-right a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .topbar-item span {
        font-size: 0.85rem;
    }
    
    .topbar-item i {
        font-size: 0.9rem;
    }
}
.menu-link li{

    margin: 0 10px;
}

.menu-link li a{
    font-size: 15px;
    color: var(--bg-light);
    font-weight: 600;
    font-family: var(--font-heading);
    margin: 10px 0;
}
.menu-link li a:hover{
   color: var(--secondary) !important;
}
.menu_brand{
    background-color:  #b62a00;
    border-radius: var(--radius);
}

.menu_btn{
    gap: 12px;
}

.cpabg-item {
    background: url("../images/bg_header_bottom.jpg") center / cover no-repeat;
    margin-top: -150px;
    padding-top: 150px;  

}


.cpabgItemTxt h2{
    font-size: 76px;
    color: var(--white);
    font-weight: 600;
    line-height: 1;
    display: inline-block;
   
}
.cpabgItemTxt span{
    font-size: 165px;
    color: var(--primary);

}
.cpabgItemTxt p{
     color: var(--bg-light);
     font-weight: 400;  
}


/* Topbar finish */

.section-header h2 {
    color: var(--primary);
    position: relative;

  
}

.section-header h2::after {     
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.video-caption {
    padding: var(--spacing-md);
    text-align: center;
    background: var(--white);
}

.video-caption h5 {
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.video-caption p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* Navigation Arrows */
.video-owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background-color: var(--white) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px var(--shadow);
    color: var(--primary) !important;
    font-size: 1.8rem !important;
    position: absolute;
    top:-10%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.video-owl-carousel .owl-nav button:hover {
    background-color: var(--secondary) !important;
    color: var(--text-dark) !important;
}

.video-owl-carousel .owl-prev {
    right: 30px;
}

.video-owl-carousel .owl-next {
    right: -25px;
}

/* Dots */
.video-owl-carousel .owl-dots {
    margin-top: 30px;
}

.video-owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: var(--text-muted);
    opacity: 0.5;
}

.video-owl-carousel .owl-dot.active span {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .video-owl-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}

/* Pricing Container */
/* ===== PRICING CONTAINER ===== */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 40px;
}

/* ===== CARD BASE ===== */
.pricing-card {
  position: relative;
  flex: 1 1 320px;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  overflow: hidden;
}

/* glow border */
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent, var(--red-soft), transparent);
  opacity: 0;
  transition: 0.4s;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
}

/* ===== PREMIUM HIGHLIGHT ===== */
.premium-card {
  border: 2px solid var(--primary-light);
  box-shadow: 0 0 40px var(--red-soft);
}

/* ===== BADGE ===== */
.plan-badge {
  position: absolute;
  top: 12px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-dark), #ff4d4d);
  color: #fff;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 0 15px var(--red-soft);
}

.plan-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1.3rem;
}

.plan-description {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card-body {
  margin-top: 1.5rem;
}

.facilities-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.facilities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facilities-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  padding: 6px 0;
  color: var(--text-muted);
}

.facilities-list i {
  margin-top: 3px;
  color: #38ef7d;
}

.facilities-list .fa-times-circle {
  color: #ff4d4d;
}

.comparison-note {
  margin: 2.5rem auto 0;
  max-width: 900px;
  padding: 1.2rem 1.5rem;
  background: radial-gradient(var(--primary), transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}

/* subtle red glow line */
.comparison-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #e50914, #ff4d4d);
  border-radius: 10px;
}

.comparison-note p {
  margin: 0;
  padding-left: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
}

.comparison-note strong {
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 576px) {
  .comparison-note {
    padding: 1rem;
  }
  .comparison-note p {
    font-size: 0.9rem;
  }
}


/* Pricing Cards */
.why_chooseCpa{
  
 background-image:
  linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.45),
    rgba(30, 64, 175, 0.1)
  ),
  url("../images/gradient-1767943229941.png");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.benefit-card {

        backdrop-filter: blur(12px);
        transition: all 0.4s ease;
 box-shadow:
  0 12px 30px rgba(0, 0, 0, 0.18),
  inset 0 1px 1px rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

/* Hover Effect */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.25),
    0 10px 20px rgba(255, 140, 0, 0.35);
}
  
.single_our_course {
    background: #f8f8f8;
    border: 1px solid #ececec;
    margin-top: 30px;
    border-radius: 12px;
}
.sing_course_thumb{
  width: 100%;
  height: 100%;
}
.sing_course_thumb img{
 aspect-ratio: 2/1.5;
 object-fit: cover;
 object-position: top;
}

.sing_course_txt {
    margin: 20px 29px 30px;
    position: relative;
    z-index: 0;
}
.sing_course_txt i {
    position: absolute;
    right: 0;
    bottom: 144px;
    z-index: -1;
    color: var(--primary);
}
.sing_course_txt h2
 {
    font-size: 18px;
  
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sing_course_txt p {
    margin-bottom: 10px;
    line-height: 25px;
}
.sing_course_txt a {
    text-transform: uppercase;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
}

.post-thumb {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.post-thumb img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    
}

/* Video Overlay */
.about-video {
    position: absolute;
    right: -15%;
    top: 10%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    padding: 6px 15px;
    border-radius: 30px;
    box-shadow: 0px 20px 50px rgba(0,0,0,0.3);
}

/* Text */
.about-video span {
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
    color: #403663;
}

/* Play Button */
.av-icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3d00, #ffb703);
    color: #fff;
    position: relative;
    display: inline-block;
    box-shadow: 0 12px 30px rgba(255, 61, 0, 0.6);
    transition: transform 0.3s ease;
}

.av-icon:hover {
    transform: scale(1.1);
}

/* Content */
.post-content h5 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.post-content h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 18px;
}

.post-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.aluminiitem img{
  width: 100px !important;
  height: 100px;
  object-fit: contain;

}
.mastercpa {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, #dfe9f3 0%, #ffffff 100%);
}

/* GRID LAYER */
.mastercpa::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220, 38, 38, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 30s linear infinite;
  pointer-events: none;
}

/* SOFT FADE OVERLAY */
.mastercpa::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.8), transparent 65%);
  pointer-events: none;
}

@keyframes moveGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: -300px 300px, 300px -300px;
  }
}

.comprehensive-cpa-course {
  position: relative;
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(220, 38, 38, 0.12);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: all 0.45s ease;
  overflow: hidden;
}

/* RED GLOW BORDER */
.comprehensive-cpa-course::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(220, 38, 38, 0.6),
    transparent
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* IMAGE */
.comprehensive-cpa-course img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

/* TITLE */
.comprehensive-cpa-course h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--primary);
   font-family: var(--font-heading);
}

/* TEXT */
.comprehensive-cpa-course p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* HOVER EFFECTS */
.comprehensive-cpa-course:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow:
    0 40px 80px rgba(220, 38, 38, 0.25),
    inset 0 0 0 1px rgba(220, 38, 38, 0.25);
}

.comprehensive-cpa-course:hover::before {
  opacity: 1;
}

.comprehensive-cpa-course:hover img {
  transform: scale(1.08);
}
/* FAQ wrapper */
.faq-accordian {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Card look */
.faq-accordian .accordion-item {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin: 15px 0;
}

/* Hover lift */
.faq-accordian .accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(220,38,38,0.18);
}

/* Question button */
.faq-accordian .accordion-button {
  font-weight: 600;
  font-size: 16px;
  padding: 18px 22px;
  background: #ffffff;
  color: #020617;
  transition: all 0.35s ease;
}

/* Remove default focus shadow */
.faq-accordian .accordion-button:focus {
  box-shadow: none;
}

/* Active / Open state */
.faq-accordian .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
}

/* Arrow icon color */
.faq-accordian .accordion-button::after {
  filter: brightness(0.2);
}

/* Arrow color when open */
.faq-accordian .accordion-button:not(.collapsed)::after {
  filter: brightness(10);
}

/* Answer body */
.faq-accordian .accordion-body {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
  padding: 18px 22px;
  background: #f9fafb;
}

/* Optional subtle divider */
.faq-accordian .accordion-collapse {
  border-top: 1px solid rgba(0,0,0,0.05);
}


.footer_top {
    background: #222222;
    background-image: url(../images/bg_footer_top.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.newslatter p {
    margin-top: 10px;
}
.newslatter input[type="email"], .newslatter input[type="text"] {
    background: url(../images/icon_newslatter.png);
    background-position: right center;
    background-repeat: no-repeat;
    border: 0px;
    border-bottom: 2px solid #555555;
    width: 100%;
    font-size: 53px;
    color: #555555;
    font-family: 'Libre Baskerville', serif;
    line-height: 65px;
    height: 65px;
}
.newslatter input[type="submit"] {
    display: none;
}

.widget_title {
    font-size: 15px;
    font-family: 'Libre Baskerville', serif;
    color: #fff;
    background: url(../images/bg_widget_title.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    display: inline-block;
    padding: 0 30px 15px 0;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.single_footer_widget p {
    color: #efefef;
    line-height: 22px;
    font-size: 14px;
    text-align: justify;
}
.footer_social {
    padding-top: 15px;
}
.footer_social li {
    display: inline-block;
    margin-right: 5px;
}
.footer_social li a {
    display: block;
    line-height: 35px;
    height: 35px;
    width: 35px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    border: 1px solid;
}
.latest_post li img {
    float: left;
    margin-right: 18px;
}
.latest_post li:first-child {
    padding-top: 0;
}
.latest_post li {
    border-bottom: 1px solid #373737;
    padding: 20px 0;
    overflow: hidden;
}
.latest_post_txt {
    float: left;
    width: 182px;
}
.latest_post li .latest_post_txt h4 {
    margin: 0;
    line-height: 18px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.latest_post li .latest_post_txt p {
    color: #ff3d00;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}
.latest_tweet li {
    line-height: 24px;
    color: #efefef;
    font-weight: 600;
    margin-bottom: 25px;
    padding-left: 30px;
    background: url(../images/instagram.png);
    background-position: left 10px;
    background-repeat: no-repeat;
}
.latest_tweet li a {
    color: #00aced;
    display: block;
}
.latest_tweet li span {
    font-size: 10px;
    text-transform: uppercase;
}
.footer_contact li:nth-child(1) {
    background-image: url(../images/icon_footer_contact_1.png);

}
.footer_contact li:nth-child(2) {
    background-image: url(../images/icon_footer_contact_2.png);
}
.footer_contact li:nth-child(3) {
    background-image: url(../images/icon_footer_contact_3.png);
}
.footer_contact li:nth-child(4) {
    background-image: url(../images/icon_footer_contact_4.png);
}
.footer_contact li {
    color: #efefef;
    font-size: 13px;
    margin-bottom: 15px;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 35px;
    line-height: 25px;
}
.footer_bottom {
    background: #101010;
    padding: 15px 0;
}
.footer_menu ul {
    margin: 0;
    text-align: right;
    list-style: none;
}
.footer_menu ul li {
    display: inline-block;
    border-right: 1px solid #f2f0f0;
    line-height: 10px;
}
.footer_menu ul li a
 {
    display: block;
    text-transform: uppercase;
    color: #f2f0f0;
    font-size: 11px;
    margin: 0 15px;
    text-decoration: none;
}
.footer_menu ul li:last-child {
    border-right: 0px;
}


/* help me pass css start */
.cpa_shammi-txt h2{
  font-size: 58px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--secondary);

}
.difference-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.difference-card img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}
.difference-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
   font-family: var(--font-heading);
  color: var(--secondary);
}
.how-it-works-timeline {
    background: radial-gradient(var(--red-soft), transparent);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--text-muted); 
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary-dark);
    transition: height 0.2s ease-out;
}
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background:var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 25px 40px;
    position: relative;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item .content {
    background: var(--white);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.4s ease;
}

.timeline-item .content:hover {
    transform: translateY(-8px);
}

.timeline-item .step {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

.timeline-item h4 {
    margin: 10px 0;
    font-weight: 700;
}

.timeline-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.timeline-item::after {
    content: "";
    position: absolute;
    top: 45px;
    width: 18px;
    height: 18px;
    background: var(--primary-dark);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left::after {
    right: -9px;
}

.timeline-item.right::after {
    left: -9px;
}

.timeline-item.highlight .content {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.timeline-item.highlight h4,
.timeline-item.highlight p {
    color: #fff;
}

.course_highlight {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4)), 
        url('../images/DSC00038.jpg');
    background-size: cover;
    background-position: center;
}

/* Mobile */
@media (max-width: 768px) {
    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 0;
        text-align: left;
        left: 0;
    }

    .timeline-item::after {
        left: 2px;
    }
}

/* help me pass css finish */


.edu-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  text-align: center;
  border: 1px solid #eef1f6;
  transition: all 0.3s ease;
}

.edu-card i {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.edu-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  color: var(--primary);
}

.edu-card p {

  font-size: 17px;
}

.edu-card:hover {
  transform: translateY(-6px);
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}


.step-card {
    min-width: 220px;
    max-width: 280px;
    transition: all 0.4s ease;
}
.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.25) !important;
}
.step-num {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Hover Lift */
.hover-lift {
    transition: all 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
}
.event-info-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.event-info-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.event-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
}

.event-text {
  display: flex;
  flex-direction: column;
}

.event-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.event-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
  background: #ffffff;
  padding: 30px 25px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  height: 100%;
}

.testimonial-img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 3px solid #0d6efd;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

/* Floating Social Sidebar */
.social-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Icon Colors */
.social-icon.phone {
    background: #0d6efd;
    text-decoration: none ;
}

.social-icon.whatsapp {
    background: #25D366;
    text-decoration: none;
}
.social-icon.linkedin {
    background: #0A66C2;
    text-decoration: none;
}
.social-icon.youtube {
    background: #ff3d00;
    text-decoration: none;
}
.social-icon.form-btn {
    background: #111;

}
/* Premium Modal Design */
.premium-modal {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.modal-backdrop.show {
    backdrop-filter: blur(6px);
    background-color: rgba(0,0,0,0.6);
}

.premium-modal .form-control,
.premium-modal .form-select {
    border-radius: 12px;
    padding: 12px 14px;
}

.premium-modal button {
    border-radius: 14px;
}

.Aboutenroll-agent {
    background: linear-gradient(135deg, #f8f9fa, #e9f5ff);
}
.aboutenrool-txt {
    background: white;
    padding: 10px 5px;
    border-radius: 1rem;
    border-left: 5px solid #4a90e2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.aboutenrool-txt h2 {
    font-size:22px;
    font-weight: 700;
    color:var(--primary);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}
.aboutenrool-txt h4 {
    font-size: 19px;
    color: var(--secondary);
    margin-bottom: 1.8rem;
   
}

.aboutenrool-txt ul {
    list-style: none;
    padding-left: 0;
}

.aboutenrool-txt ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
}

.aboutenrool-txt ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}
/* Why EA with Shammi Saluja Sir - Attractive & Unique */

.icon-circle {
  display:flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--secondary-dark);

}
.icon-circle i {
  font-size: 24px;
  color: var(--white);
}

.ea_structure_new {

       background: radial-gradient(circle at top, #ff3d00b8, #7a642399);
    color: #fff;
  
}

.ea-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    position: relative;
}

.ea-layout::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, #ff3d00b8, #0000001a);
    transform: translateX(-50%);
    border-radius: 10px;
}



.ea-post.left {
    text-align: right;
}

.ea-post.right {
    text-align: left;
}

.ea-step {
    position: absolute;
    top: -20px;
    font-size: 40px;
    font-weight: 800;
    color: rgb(255, 255, 255);
}

.ea-post.left .ea-step {
    right: 20px;
}

.ea-post.right .ea-step {
    left: 20px;
}

.ea-post.center .ea-step {
    position: static;
    text-align: center;
    display: block;
    margin-bottom: 10px;
    font-size: 72px;
}

.ea-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.4s ease;
}

.ea-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.25);
}

.ea-content.featured {
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    color: #020617;
    box-shadow: 0 30px 60px rgba(56, 189, 248, 0.4);
}

.ea-content h3,
.ea-content h4 {
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
    color: var(--white);
}

.ea-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
    text-align: center;
}

.ea-bottom-text {
    max-width: 780px;
    margin: auto;
    font-size: 18px;
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .ea-layout {
        grid-template-columns: 1fr;
    }

    .ea-layout::before {
        display: none;
    }

    .ea-post.left,
    .ea-post.right {
        text-align: center;
    }

    .ea-step {
        position: static;
        display: block;
        margin-bottom: 10px;
    }
}
