/* Main Styles */
:root {
  /* Color System */
  --primary: #0a2463;
  --primary-light: #1e3a7b;
  --secondary: #e6a817;
  --secondary-light: #f8c146;
  --accent: #3e92cc;
  --success: #2ecc71;
  --warning: #f39c12;
  --error: #e74c3c;
  --background: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  
  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Spacing System (8px) */
  --space-1: 0.5rem;  /* 8px */
  --space-2: 1rem;    /* 16px */
  --space-3: 1.5rem;  /* 24px */
  --space-4: 2rem;    /* 32px */
  --space-5: 2.5rem;  /* 40px */
  --space-6: 3rem;    /* 48px */
  
  /* Other Variables */
  --border-radius: 0.25rem;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-2);
}


.arrow {
  text-align: center;
  margin: 8% 0;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}

#EnrollNow{
    box-shadow: 2px 4px 8px yellow;
    border: solid 3px red;
    margin-top: 45px;
}

.stat-item-glow {
  position: relative;
  display: inline-block;
  padding: 30px 40px;
  color: #32e932;
  background: black;
  border: 2px solid #03e9f4;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  overflow: hidden;
  font-weight: 700;
  text-align: center;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.5s;
}

.stat-item-glow:hover {
  background: rgb(28, 224, 28);
  color: #050801;
  box-shadow:
    0 0 5px rgb(28, 224, 28),
    0 0 25px rgb(28, 224, 28),
    0 0 50px rgb(28, 224, 28),
    0 0 200px rgb(28, 224, 28);
}

/* Border Spans */
.stat-item-glow span:nth-child(1),
.stat-item-glow span:nth-child(2),
.stat-item-glow span:nth-child(3),
.stat-item-glow span:nth-child(4) {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgb(28, 224, 28));
}

/* Top Border */
.stat-item-glow span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  animation: animate1 1s linear infinite;
}

/* Right Border */
.stat-item-glow span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

/* Bottom Border */
.stat-item-glow span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}

/* Left Border */
.stat-item-glow span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}

/* Text Content Styles */
.stat-item-glow .stat-number,
.stat-item-glow .stat-text {
  display: block;
  position: relative;
  z-index: 2;
  color: inherit;
  font-family: 'Raleway', sans-serif;
}

/* Keyframes */
@keyframes animate1 {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}
@keyframes animate2 {
  0% { top: -100%; }
  50%, 100% { top: 100%; }
}
@keyframes animate3 {
  0% { right: -100%; }
  50%, 100% { right: 100%; }
}
@keyframes animate4 {
  0% { bottom: -100%; }
  50%, 100% { bottom: 100%; }
}



.prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  left: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #ddd;
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
}

.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  right: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #ddd;
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
}

.hero{
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.hero-content{
  min-width: 100vw;
  background-color:transparent;
}

.hero-inner{
  transition: transform 0.5s ease-in-out;
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  align-items: center;
  width: 300vw;

  /* animation: slide 15s infinite;
    animation-name: hero-content;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-delay: 5s;
    animation-timing-function: ease-in-out;
    position: relative; */
}

#hero-vid {
  position: relative;
  top: 10px;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  background-image: url('assets/bscs/bscsBG2.jpg');
  background-size: 95% 90%;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20%;
}



/* General Container Styling */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: rgb(255,255,255,0.3);
    border-radius: 20px;
    border: 4px solid white;
}


/* Main Content */
.container1 {
    text-align: center;
    width: 90%;
    max-width: 800px;
}

/* Title */
.section-title2 {
    font-size: 28px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 20px;
}

/* Video Wrapper */
.video-wrapper {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
    border: 4px solid rgb(236, 202, 6);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.video-wrapper:hover {
    transform: scale(1.02);
}

/* Video Element */
video {
    width: 100%;
    height: auto;
    border-radius: 14px;
}








#vidOC{
  min-width: 20%;
  min-height: 20%;
  position: relative;
  object-fit:contain;
  border-radius: 5%;
  left: 35%;
  top: 20%;
  bottom: 10%;
  width: 600px;
}

#Others {
  position: relative;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  background-image: url('Flyers.jpg');
  background-size: 95% 90%;
  background-repeat: no-repeat;
  background-position: center;
}

#Others11 {
  position: relative;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  background-image: url('NewPage.jpg');
  background-size: 95% 90%;
  background-repeat: no-repeat;
  background-position: center;
}

#Others12 {
  position: relative;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  background-image: url('Newpage2.jpg');
  background-size: 95% 90%;
  background-repeat: no-repeat;
  background-position: center;
}



@keyframes hero-content {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100vw); }
    66% { transform: translateX(-200vw); }
    100% { transform: translateX(0); }
}

.hero:hover .hero-inner {
    animation-play-state: paused;
}


#arrow {
  position: relative;
  left: 190px;
  top: 10px;
}



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

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
} 



.container{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2) 0;
}

section {
  padding: var(--space-5) 0;
}

.section-title {
  font-size: 2.5rem;
  color: #c10202;
  text-align: center;
  margin-bottom: var(--space-4);
  position: relative;
  padding-bottom: var(--space-2);
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.primary-btn {
  background-color: #5d1409;
  color: var(--text-white);
    box-shadow: 5px 5px 4px white;
  border: solid 2px black;
}

.primary-btn:hover {
  background-color: #a91e09;
  color: var(--text-white);
}

.secondary-btn {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.secondary-btn:hover {
  background-color: var(--secondary-light);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgb(255 255 255 / 80%), rgb(5 5 6 / 80%)), url(acaciaHall.jpg);
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.info-item p{
  color: black;
  font-family: 'Times New Roman', Times, serif;
}

.hero-content {
  padding: var(--space-3);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-2);
  animation: fadeInDown 1s ease;
  color: black;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: var(--space-3);
  color: #ffd062;;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-4);
  animation: fadeIn 1.5s ease;
}

.hero .btn {
  animation: fadeIn 2s ease;
}

/* About Section */
.about {
  background-color: var(--gray-100);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
}

.about-text p {
  margin-bottom: var(--space-2);
  font-family: 'Times New Roman', Times, serif;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.stat-item {
  padding: var(--space-2);
  margin: var(--space-1);
  background-color: var(--primary);
  background-color: #76220a;
  border-radius: var(--border-radius);
  min-width: 150px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat-text {
  font-size: 1rem;
  color: white;
}

/* Contact Section */
.contact {
  background-color: var(--gray-100);
}

.contact-content {
  width: 100%;
    display: flex;
    justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-3);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: var(--space-2);
  width: 40px;
  height: 40px;
  background-color: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item p {
  position: relative;
  top: 12px;
}

.contact-content

.social-media {
  display: flex;
  margin-top: var(--space-3);
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #941503;
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-2);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: black;
  transform: translateY(-3px);
}

#oc_logo{
  height: 250px;
  width: 250px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: fixed;
  top: 80px;
  right: 30px;
}

.form-group {
  margin-bottom: var(--space-2);
}

input, select, textarea {
  width: 100%;
  padding: var(--space-2);
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}




.courses {
  padding: 40px 0;
  text-align: center;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.course-nav-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  height: 600px;
}

.card-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.card-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), transparent);
}

.card-icon {
  position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    width: 20%;
    height: 33%;
}

.carousel-controls {
  margin-top: 15px;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 24px;
  margin: 0 5px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 15%;
  color: #111;
  box-shadow: 2px 5px 8px black;
}
.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
  box-shadow: 0px 0px 2px black;
}



.card-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(45deg, black, white, black);
    filter: drop-shadow(2px 4px 6px maroon);
}

.card-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
}

.course-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
}

.card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 7rem;
    filter: drop-shadow(2px 4px 6px black);
    border: solid 2px gold;
}

.card-content {
    padding: 24px;
    text-align: left;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.5;
}














/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1300px) {
  #arrow{
    left: 7%;
  }
  #vidOC {
    max-width: 100px;
  }
}

@media screen and (max-width: 992px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .about-stats {
    margin-top: var(--space-3);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }

  #oc_logo{
    height: 50px;
    width: 50px;
    right: 6px;
    top: 60px;
  }
  #vidOC{
    max-width: 120px;
    position: relative;
    top: 9%;
    left: 29%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
  #hero-vid {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #arrow{
    font-size: 8px;
    margin-left: -28%;
    top: 6px;
    position: relative;
    text-shadow: 5px 5px 6px black;
  }
  #ClickHere{
    font-size: 12px;
  }
  #Others {
    position: relative;
    top: -10px;
    left: 0px;
    width: 100%;
    height: 50vh;
    object-fit: cover;
    z-index: -1;
    background-image: url(Flyers.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #Others11 {
    position: relative;
    top: 10px;
    left: 0;
    width: 100%;
    height: 45vh;
    object-fit: cover;
    z-index: -1;
    background-image: url(NewPage.jpg);
    background-size: 95% 90%;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0px 0px 20px black;
    border-radius: 20px;
  }
  #Others12 {
    position: relative;
    top: 10px;
    left: 0;
    width: 100%;
    height: 45vh;
    object-fit: cover;
    z-index: -1;
    background-image: url(Newpage2.jpg);
    background-size: 95% 90%;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0px 0px 20px black;
    border-radius: 20px;
  }
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .stat-item {
    min-width: 120px;
  }

  #Others {
    opacity: 1;
  }
  #Others {
    position: relative;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    background-image: url('assets/3rdSlide.jpg');
    background-size: 95% 90%;
    background-repeat: no-repeat;
    background-position: center;
  }
   #Others11 {
    position: relative;
    top: 10px;
    left: 0;
    width: 100%;
    height: 85vh;
    object-fit: cover;
    z-index: -1;
    background-image: url('assets/Flyers2.jpg');
    background-size: 95% 90%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0px 0px 20px black;
  }
   #Others12 {
    position: relative;
    top: 10px;
    left: 0;
    width: 100%;
    height: 85vh;
    object-fit: cover;
    z-index: -1;
    background-image: url('assets/Flyers3.jpg');
    background-size: 95% 90%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0px 0px 20px black;
  }
  #hero-vid {
    position: relative;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    background-image: url('assets/bscs/3.jpg');
    background-size: 95% 90%;
    background-repeat: no-repeat;
    background-position: center;
  }
  #vidOC {
    display: none;
  }
  .section-title{
    font-size: 22px;
    font-family: auto;
  }
  .stat-text{
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .card-image {
    height: 100%;
    bottom: 0;
    width: 100%;
    border: solid 3px maroon;
  }

  .card-icon {
    top: 10px;
    right: 10px;
    padding: 8px;
    font-size: 1.25rem;
    border-radius: 10px;
  }

  .card-content {
    padding: 16px;
    text-align: center;
  }

  .card-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .card-content p {
    font-size: 0.75rem;
  }
  .course-nav-btn {
    height: 200px;
  }

  .carousel-container{
    min-height: auto;
  }
  .card-icon {
      font-size: 1.5rem;
  }
}
