/* ===== GLOBAL VARIABLES ===== */ 
:root {
  --primary: #FFD700;
  --secondary: #000000;
  --accent: #FFFFFF;
  --gray: #f5f5f5;
  --ash: #e0e0e0;
  --text: #333333;
  --marquee-speed: 60s;
  --testimonial-speed: 40s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

pre, code {
  user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  -webkit-user-select: text;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transform: translateZ(0);
}

.btn:hover {
  background: #FFDF40;
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(246, 190, 0, 0.3);
}

.btn-primary:hover {
  background: #FFDF40;
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-hero-service {
  border: 2px solid #FFDF40;
  color: var(--secondary);
  padding: 10px 20px;
}

.btn-hero-service:hover {
  background: #FFDF40;
}

.service-contact-btn, .enroll-contact-btn {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(246, 190, 0, 0.3);
  background: #FFD700;
  color: #2d3748;
  padding: 7px 15px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
}

.service-contact-btn:hover .enroll-contact-btn {
  background: #FFDF40;
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
} 

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

/* ===== HEADER STYLES ===== */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #111;
  transition: all 0.3s ease;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.site-logo {
  order: 1;
}

.main-menu {
  order: 2;
}

.site-logo img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.main-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin-right: 20px;
  position: relative;
}

.main-menu a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  font-size: 1.1rem;
}

.main-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.main-menu a:hover:after {
  width: 100%;
}

.header-scrolled {
  background: rgba(0, 0, 0, 0.9) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}


/* === Verified Institute Badge === */
.verified-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  font-weight: 600;
  color: #000;
  font-size: 15px;
  z-index: 20;
  backdrop-filter: blur(4px);
}

.verified-badge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.verified-badge span {
  letter-spacing: 0.3px;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .verified-badge {
    top: 0px; 
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for exact center */
    font-size: 14px; 
    padding: 7px 15px; 
    gap: 6px;
    justify-content: center; /* Center the flex items */
    text-align: center;
    width: auto; /* Or set a specific width if needed */
    white-space: nowrap;
  }

  .verified-badge img {
    width: 20px;
    height: 20px;
  }
}



/* ===== HERO SECTION ===== */
#hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFF0 100%);
  min-height: 30vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 90px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary);
  line-height: 1.2;
  margin-top: 45px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--secondary);
  max-width: 600px;
  opacity: 0.9;
  font-weight: 500;
}

.video-container {
  justify-self: end;     /* keeps the video flush to the right */
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 10px;    /* reduced from 12px */
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



/* === Video Gallery Section === */
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  border: 2px solid #FFD700;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
  transition: transform 0.3s ease;
}

.video-frame:hover .video-thumb {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
  animation: pulse 1.5s infinite;
}

.play-btn i,
.play-btn svg {
  position: relative;
  top: 1px; /* fixes slight vertical misalignment */
  left: 1px;
  font-size: 26px;
  line-height: 1;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* === Popup === */
.video-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-popup.active {
  display: flex;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.popup-content {
  position: relative;
  z-index: 10;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  width: 90%;
  max-width: 800px;
}

.popup-content iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 11;
  transition: 0.3s;
}

.close-popup:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

@media (max-width: 768px), (max-width: 1200px) {

  .video-gallery {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px;
  }

  .video-frame {
    max-width: 100%;
    border-radius: 10px;
  }

  .play-btn {
    width: 35px;
    height: 35px;
    font-size: 25px;
  }

  .play-btn i,
  .play-btn svg {
  position: relative;
  line-height: 1;
    font-size: 20px;
    top: 1;
    left: 1;
  }

  .popup-content iframe {
    height: 55vw; /* makes popup height responsive to screen width */
  }

  .close-popup {
    font-size: 24px;
    top: 5px;
    right: 10px;
  }
}




/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Dots */
.bg-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    animation: pulse 3s ease-in-out infinite;
}

.dot-1 {
    width: 12px;
    height: 12px;
    top: 25%;
    right: 20%;
    animation-delay: 0s;
}

.dot-2 {
    width: 8px;
    height: 8px;
    bottom: 15%;
    left: 25%;
    animation-delay: 1s;
}

/* Rings */
.bg-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.1);
    animation: scale 8s ease-in-out infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 3%;
}

.ring-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 3%;
    animation-delay: 4s;
}

.ring-3 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 3%;
    animation-delay: 4s;
}

/* Wave */
.bg-wave {
    position: absolute;
    width: 200px;
    height: 40px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 50%;
    animation: wave 10s ease-in-out infinite;
}

.wave-0 {
    top: 32%;
    left: 3%;
    transform: rotate(-15deg);
}

.wave-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.wave-2 {
    top: 20%;
    right: 10%;
    transform: rotate(-15deg);
}



       .golden-divider {
 	 width: 350px; /* adjust length */
 	 height: 5px; /* adjust thickness */
	 background: #FFD700; /* golden color */
 	 margin: 0; /* space above & below */
 	 margin-left: 6%; /* left side positioning */
 	 border-radius: 4px;
  }

@media (max-width: 768px) {
  .golden-divider {
    width: 100px;
    margin-left: 5%;
    margin: 0;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .golden-divider {
    width: 100px;
    margin: 0; /* center it for better mobile view */
    margin-left: 5%;   /* or use 'auto' to keep it centered */
  }
}


        /* Certificate Offer Section */
        .co-section {
        background: linear-gradient(135deg, #FFFFF0 0%, #FFFFFF 100%);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            max-width: 1600px;
            width: 100%;
        }
        
        .co-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .co-left {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .co-right {
            flex: 1;
        }
        
        .co-image-container {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .co-image-container:hover {
            transform: translateY(-5px);
        }
        
        .co-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .co-image:hover {
            transform: scale(1.03);
        }
        
        .co-heading {
            margin: 0 0 20px 0;
            font-size: 36px;
            line-height: 1.2;
            color: #111;
            font-weight: 700;
            position: relative;
        }
        
        .co-text {
            margin: 0 0 28px 0;
            color: #444;
            font-size: 17px;
            font-weight: 400;
            line-height: 1.7;
        }
        
        .co-text strong {
            color: #111;
            font-weight: 600;
        }
        
        .co-btn {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(246, 190, 0, 0.3);
        }
        
        .co-btn:hover {
  background: #FFDF40;
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }
        
        .co-note {
            margin-top: 20px;
            color: #666;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.5;
        }
        
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .co-container {
                gap: 40px;
            }
            
            .co-heading {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .co-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            
            .co-left {
                order: 1;
            }
            
            .co-right {
                order: 2;
            }
            
            .co-heading {
                font-size: 28px;
            }
            
            .co-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .co-text {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .co-section {
                padding: 40px 20px;
            }
            
            .co-heading {
                font-size: 24px;
            }
            
            .co-btn {
                padding: 14px 28px;
                font-size: 15px;
                width: 50%;
                text-align: center;
            }
        }



/* ===== MARQUEE SECTION ===== */
#marquee {
  background: var(--ash);
  padding: 7px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-container {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  padding: 0 40px;
}

.marquee-item img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.marquee-item img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.service-card {
  background: var(--accent);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  border: 1px solid #f0f0f0;
  text-align: center;
  padding: 25px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:hover:before {
  opacity: 0.1;
}
  
.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover .service-icon {
  color: var(--primary);
  transform: scale(1.15) rotateY(10deg);
}

.service-card:hover h3 {
  color: black;
  letter-spacing: 0.5px;
}

.service-card:hover p {
  color: black;
  transform: translateY(-5px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 30px;
  color: var(--primary);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateZ(20px);
}

.service-card h3 {
  color: var(--secondary);
  margin-bottom: 3px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.4s ease;
}

.service-card p {
  margin-bottom: 5px;
  font-size: 0.8rem;
  color: var(--text);
  transition: all 0.4s ease;
  line-height: 1.5;
  transform: translateZ(10px);
}

.service-card {
  padding: 10px 18px;
  font-size: 0.9rem;
  margin-top: 15px;
  color: var(--secondary);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateZ(15px);
}
  
.service-btn {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(246, 190, 0, 0.3);
  padding: 9px 13px;
  font-size: 0.8rem;
  margin-top: 7px;
  border-radius: 8px;
  margin: 0;
}
  
@media (max-width: 1200px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }  
    
  .service-icon {
    font-size: 40px;
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(20px);
  }

  .service-card h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s ease;
  }

  .service-card p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.4s ease;
    line-height: 1.5;
    transform: translateZ(10px);
  }
  
  .service-btn {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 6px 20px rgba(246, 190, 0, 0.3);
    padding: 9px 13px;
    font-size: 1rem;
    margin-top: 7px;
    border-radius: 8px;
    margin: 0;
  }
}

/* ===== STATS SECTION ===== */
#stats {
  background: var(--primary);
  text-align: center;
  position: relative;
  padding: 20px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}  

.stat-item h3 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: var(--secondary);
  font-weight: 700;
}

.stat-item p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary);
}

/* ===== COURSES SECTION ===== */
#courses {
  background: var(--gray);
  position: relative;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.course-card {
  background: var(--accent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #eee;
  text-align: center;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.course-img {
  height: 200px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.course-content {
  padding: 25px;
}

.course-card h3 {
  margin: 0 0 15px 0;
  font-size: 1.4rem;
  color: var(--secondary);
}

.price {
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0;
}

.rating {
  color: #FFD700;
  margin-bottom: 15px;
}
     
.card-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1rem;
  margin-top: auto;
}

.enroll-btn, .curriculum-btn {
  padding: 0.7rem 1rem;
  width: 40%;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

/* Enrollment Popup Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}  

.modal-content p {
  margin: 0 0 0.10rem 0;
  color: var(--text);
  line-height: 1.6;
}

.close-btn, .close-curriculum-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--Secondary);
  transition: all 0.3s ease;
}
  
.close-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}
  
.close-curriculum-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.course-details {
  margin-bottom: 1.5rem;
}
  
#servicePopup .modal-content h2 {
  margin-bottom: 10px; /* Adjust this value as needed */
}  

.price-duration {
  display: flex;
  gap: 1rem;
  margin-top: 0rem;
  color: #FFD700;
  font-weight: bold;
}

.benefits-section {
  margin: 1.5rem 0;
}

.benefits-section h4 {
  margin-bottom: 0.5rem;
  color: black;
} 
  
.benefits-section ul, .curriculum-section ul {
  list-style: none;
  padding-left: 20px;
}

.benefits-section li, .curriculum-section li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.benefits-section li:before, .curriculum-section li:before {
  content: "✔";
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
} 




/* ===== Student Placement Process Section ===== */
/* Container */
.placement-section {
  text-align: center;
  background: #fff;
  padding: 40px 20px;
}

.placement-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Flow Layout */
.process-flow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 15px;
  width: 100%;
}

/* Phase Card - Smaller */
.phase {
  background: #fff;
  border-radius: 10px;
  width: 140px; /* Reduced from 180px */
  padding: 20px 10px; /* Reduced padding */
  position: relative;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  border-top: 5px solid;
  transition: 0.3s;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.phase:hover {
  transform: translateY(-3px);
}

/* Icon Circle - Smaller */
.icon-wrap {
  width: 45px;
  height: 45px;
  border: 4px dotted currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
}

/* Texts - Smaller */
.phase h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0 6px;
}

.phase p {
  font-size: 12px;
  color: #222;
  line-height: 1.3;
}

/* Top & Bottom Lines - Smaller */
.top-line,
.bottom-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: currentColor;
}

.top-line {
  height: 20px;
  top: -20px;
  border-radius: 4px;
}

.bottom-line {
  height: 30px;
  bottom: -30px;
  border-radius: 4px;
}

/* Colored Phases */
.blue { color: #007bff; border-color: #007bff; }
.red { color: #dc3545; border-color: #dc3545; }
.green { color: #28a745; border-color: #28a745; }
.orange { color: #ff9800; border-color: #ff9800; }
.golden { color: #ffd700; border-color: #ffd700; }

/* Arrow Between Phases - Smaller */
.arrow {
  width: 30px; /* Reduced from 50px */
  height: 4px;
  background: currentColor;
  align-self: center;
  position: relative;
  border-radius: 2px;
  flex-shrink: 0;
}

.arrow::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -4px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid currentColor;
}

/* Responsive - Vertical layout on mobile */
@media (max-width: 768px), (max-width: 1200px) {
  .process-flow {
    flex-direction: column; /* Change to vertical */
    align-items: center;
    gap: 40px; /* More space between vertical items */
  }

.placement-section h2 {
  font-size: 25px;
}
  
  .phase {
    width: 200px; /* Wider for better text display */
    padding: 25px 15px;
    margin-bottom: 15px;
  }
  
  .phase h3 {
    font-size: 16px;
    margin: 25px 0 8px;
  }
  
  .phase p {
    font-size: 14px;
  }
  
  .arrow {
    width: 4px; /* Make arrow vertical */
    height: 30px;
    transform: rotate(90deg); /* Rotate arrow to point downward */
  }
  
  .arrow::after {
    right: -4px; /* Adjust arrow head position */
    top: -8px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid currentColor;
    transform: rotate(90deg); /* Rotate arrow head */
  }
  
  .icon-wrap {
    width: 50px;
    height: 50px;
    top: -35px;
    font-size: 22px;
  }

  /* Adjust top and bottom lines for vertical flow */
  .top-line {
    height: 25px;
    top: -25px;
  }

  .bottom-line {
    height: 40px;
    bottom: -40px;
  }

  /* Adjust background rings for mobile */
  .ring-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 5%;
  }
  
  .ring-3 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 5%;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .process-flow {
    gap: 35px;
  }
  
  .phase {
    width: 180px;
    padding: 20px 12px;
  }
  
  .arrow {
    height: 25px;
  }
  
  .phase h3 {
    font-size: 15px;
  }
  
  .phase p {
    font-size: 13px;
  }
}







        /* Free Course/Seminar Section */
        #free-seminar {
          background: var(--gray);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            max-width: 1600px;
            width: 100%;
        }
        
        .course-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .course-left {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .course-right {
            flex: 1;
        }
        
        .course-heading {
            margin: 0 0 20px 0;
            font-size: 36px;
            line-height: 1.2;
            color: #111;
            font-weight: 700;
            position: relative;
        }
        
        .course-text {
            margin: 0 0 28px 0;
            color: #444;
            font-size: 17px;
            font-weight: 400;
            line-height: 1.7;
        }
        
        .course-text strong {
            color: #111;
            font-weight: 600;
        }
        
        .course-btn {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(246, 190, 0, 0.3);
        }
        
        .course-btn:hover {
  background: #FFDF40;
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }
        
        .course-note {
            margin-top: 20px;
            color: #666;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.5;
        }
        
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .course-container {
                gap: 40px;
            }
            
            .course-heading {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .course-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            
            .course-left {
                order: 1;
            }
            
            .course-right {
                order: 2;
            }
            
            .course-heading {
                font-size: 28px;
            }
            
            .course-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .course-text {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .course-section {
                padding: 40px 20px;
            }
            
            .course-heading {
                font-size: 24px;
            }
            
            .course-btn {
                padding: 14px 30px;
                font-size: 15px;
                width: 50%;
                text-align: center;
            }
        }


 

/* ===== Digital Products Section ===== */
.digital-products {
  background: var(--accent);
}  
  
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--accent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #eee;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-img {
  height: 150px; /* Smaller than course images */
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} 

.product-content {
  padding: 20px;
}

.product-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem; /* Slightly smaller than course titles */
  color: var(--secondary);
}

.product-card p {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: var(--text);
}

.product-price {
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0;
  font-size: 1rem;
}

.product-rating {
  color: #FFD700;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.product-btn, .product-details-btn {
  padding: 0.6rem 1rem;
  width: 60%;
  margin: 0 auto 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--primary);
  color: var(--secondary);
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(246, 190, 0, 0.3);
  white-space: nowrap;
}

.product-btn:hover {
  background: #FFDF40;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .product-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card h3 {
    font-size: 1.1rem;
  }
}

/* Digital Product Popup Styles */
.digital-product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.digital-product-modal-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.digital-product-modal.active .digital-product-modal-content {
  transform: scale(1);
}

.digital-product-modal .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.digital-product-modal .close-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: rotate(90deg) scale(1.1);
}

.digital-product-details {
  text-align: center;
  margin-bottom: 1.5rem;
}

.digital-product-details h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.price-rating-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 1rem 0;
}

.digital-product-price {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.digital-product-rating {
  color: #FFD700;
  font-weight: 500;
}

.digital-product-description {
  margin: 1.5rem 0;
  color: var(--text);
  line-height: 1.6;
  padding: 0 1rem;
}

.digital-product-features {
  margin: 2rem 0;
}

.digital-product-features h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: center;
}
  
.digital-product-features {
  margin: 2rem 0;
  text-align: left;
}

.digital-product-features ul {
  list-style-type: none;
  padding-left: 0;
}

.digital-product-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.digital-product-features li:before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}
  
.product-popup-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transform: translateZ(0);
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(246, 190, 0, 0.3);
  width: auto;
  margin-top: 20px;
}

.product-popup-btn:hover {
  background: #FFDF40;
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive styles */
@media (max-width: 768px) {
  .digital-product-modal-content {
    padding: 1.5rem;
    width: 95%;
  }
  
  .digital-product-details h3 {
    font-size: 1.5rem;
  }
  
  .price-rating-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
}



/* ===== TESTIMONIALS SECTION ===== */
/* Reviews Section */
.reviews {
    background: #f0f0f0;
    overflow: hidden;
    position: relative;
    padding: 5px 0 5px;
}

.reviews-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.reviews-content {
    flex: 1;
    padding-right: 50px;
    text-align: left;
}

.reviews p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #4a5568;
}

.reviews-carousel {
    flex: 1;
    position: relative;
    height: 500px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-card {
    position: absolute;
    width: 320px;
    height: 370px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateX(100px) scale(0.8);
}

.review-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
}

.review-card.prev {
    opacity: 0.6;
    transform: translateX(-80px) scale(0.85);
    z-index: 2;
}

.review-card.next {
    opacity: 0.6;
    transform: translateX(80px) scale(0.85);
    z-index: 2;
}

.review-card.far {
    opacity: 0.3;
    transform: translateX(-160px) scale(0.7);
    z-index: 1;
}

.review-card.far-next {
    opacity: 0.3;
    transform: translateX(160px) scale(0.7);
    z-index: 1;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #FFD700;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: #2d3748;
}

.review-info p {
    color: #FFD700;
    margin: 0;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #4a5568;
}

.review-rating {
    color: #FFD700;
}

.review-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
}

.review-btn a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(246, 190, 0, 0.3);
}

.review-btn a:hover {
    background: #FFDF40;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive - FIXED */
@media (max-width: 768px) {
    .reviews {
        padding: 70px 0 200px;
    }    
    
    .reviews h3 {
        font-size: 2rem;
    }
    
    .reviews-container {
        flex-direction: column;
    }
    
    .reviews-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .review-card {
        width: 280px
        padding: 25px;
    }
    
    /* Fixed the height issue - increased height significantly */
    .reviews-carousel {
        height: 550px; /* Increased from 480px to prevent cutting */
        padding-bottom: 40px; /* Added more padding to ensure full visibility */
        overflow: visible;
        margin-top: 20px; /* Added margin to push cards down */
    }
    
    .review-btn {
        justify-content: center;
        margin-bottom: 150px; /* Added margin to create space above carousel */
    }
    
    /* Added to ensure proper spacing */
    .reviews .container {
        padding-bottom: 150px;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 60px 0 200px;
    }
    
    .reviews h3 {
        font-size: 1.5rem;
    }
    
    /* Further adjustments for very small screens */
    .reviews-carousel {
        height: 580px; /* Further increased for very small screens */
        padding-bottom: 50px;
        margin-top: 25px;
    }
    
    .review-card {
        width: 260px
        padding: 20px;
    }
    
    .review-btn {
        margin-bottom: 150px;
    }
    
    .reviews .container {
        padding-bottom: 140px;
    }
}



/* ===== CONTACT FORM CSS ===== */
.contact-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left Content Section */
.left-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.left-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2d3748;
}

.left-content p {
  margin-bottom: 15px;
  color: #4a5568;
}

.benefits {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  padding: 3px;
  border-radius: 8px;
}

/* Right Form Section - Your provided CSS with modifications */
.contact-form-wrapper {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 13px 25px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.1);
  margin: 0 auto;  
}

.contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-footer p {
  text-align: center;
  font-size: 0.6rem;     
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.form-group label {
  color: #a2a2a2;
  font-weight: 500;
  padding-left: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: 15px;
  left: 20px;
  transition: all 0.3s ease;
  pointer-events: none;
  background-color: transparent;
}

.form-group label i {
  color: #FFD700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #a2a2a2;
  border-radius: 12px;
  font-size: 16px;
  color: black;
  transition: all 0.3s ease;
  outline: none;
}

/* Hide label when input has value or is focused */
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:hover,
.form-group textarea:hover {
  border-color: #FFD700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 14px;
  color: #FFD700;
  background-color: #f8f9fa;
  padding: 0 5px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #FFD700;
  color: #2d3748;
  padding: 13px 30px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  width: 100%;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #FFDF40;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.submit-btn:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  
  .left-content,
  .contact-form-wrapper {
    width: 100%;
  }
}


/* ===== FOOTER SECTION ===== */
#footer {
  background: #111;
  color: White;
  padding-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-column h3 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: White;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.email-verify {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.email-verify input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 70%;
  margin-right: 10px;
}

.email-verify button {
  padding: 10px 10px;
  background: var(--accent);
  color: var(--secondary);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.email-verify button:hover {
  background: var(--primary);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px) scale(1.1);
}

.social-icons img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.copyright {
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid #ddd;
}



/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 0px;
    margin-bottom: 30px;
  }
  
  .video-container {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  #header .container {
    justify-content: space-between;
  }
  
  .menu-toggle {
    display: block;
    order: 2;
    position: relative;
    z-index: 1001;
  }
  
  .main-menu {
    position: fixed;
    text-align: center;
    top: 80px;
    left: 0;
    width: 60%;
    background: rgba(0,0,0,0.70);
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
    z-index: 1000;
    border-radius: 0 0 10px 10px;
  }
  
  .main-menu.active {
    right: 0;
    height: auto;
    max-height: 80vh;
  }
  
  .main-menu ul {
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
  }
  
  .main-menu li {
    margin: 15px 0;
  }

  .video-container iframe {
    max-height: 350px;
  }
  
  #marquee {
    padding: 5px 0;
  }
  
  .marquee-item {
    padding: 0 20px;
  }
      
  .marquee-item img {
    height: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .service-card {
    padding: 18px;
    aspect-ratio: 1/1.1;
  }
  
  .service-icon {
    font-size: 20px;
  }
  
  .service-card h3 {
    font-size: 0.8rem;
    margin-bottom: 2px;
  }
  
  .service-card p {
    font-size: 0.6rem;
    margin-bottom: 5px;
  }
  
  .service-btn {
    padding: 7px 10px;
    font-size: 0.5rem;
    margin-top: 3px;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
  }
  
  .stat-item {
    min-width: auto;
    flex-shrink: 0;
  }
  
  .stat-item h3 {
    font-size: 1.9rem;
  }
  
  .stat-item p {
    font-size: 1rem;
  }
  
  .service-img {
    height: 200px 
  }
  
  .course-img {
    height: 200px
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .footer-column {
    margin-bottom: 0;
  }
  
  .footer-column h3 {
    font-size: 1rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
  
  .footer-column p {
    font-size: 0.85rem;
    gap: 5px;
  }
  
  .copyright p {
    font-size: 0.70em;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
  }
  
  .hero-content {
    padding-right: 0;
  }
  
  .btn {
    padding: auto;
    font-size: 13px;
    min-width: 100px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }
  
  .submit-btn {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}    

body{user-select:none;-moz-user-select:none;-ms-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-webkit-touch-callout:none}/* Enable copy on pre and code tags */ pre, code {user-select:text;-moz-user-select:text;-ms-user-select:text;-khtml-user-select:text;-webkit-user-select:text;-webkit-touch-callout:text}