@charset "utf-8";
/* ================= GLOBAL STYLES ================= */

* {
  box-sizing: border-box;
}

body {
 /* padding-left: 20px;
  padding-right: 20px; */
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



a {
  text-decoration: none;
  color: inherit;
}


/* ================= BOOK CONSULTATION ================= */

.golden-text {
  color: goldenrod;
  font-weight: bold;
}

.golden-button {
  display: inline-block;
  width: 150px;
  background-color: goldenrod;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-align: center;
  margin-right: 10px;
}

.golden-button:hover {
  background-color: darkgoldenrod;
}

.book-consultation {
  text-align: center;
  margin: 30px 0;
}

.consultation-title {
  margin-bottom: 10px;
}

.consultation-title span {
  display: inline-block;
  background-color: goldenrod;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}

/* Default Button Style */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6200;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease;
}

.button:hover {
  background-color: #daa520;
}


/* ================= TOPBAR ================= */

.topbar-container {
  display: flex;
  background-color: #808000;
  height: 24px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 100%;
}

.topbar {
  display: flex;
  width: 100%;
  max width: 1200px; 
  flex: 1;
  justify-content: space-between;
  padding: 0 10%;
  color: #fff;
}


/* ================= SCROLLING TICKER ================= */

.ticker-container {
  width: 100%;
  background-color: #6B8E23; /* golden green */
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin: 10px 0;   /* equal gap top & bottom */
}

.ticker {
  width: 1200px;              /* same width as header/topbar */
  padding: 6px 0;
  white-space: nowrap;
  display: inline-block;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}












/* ================= HEADER ================= 

.header-container {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  height: 70px;
  justify-content: space-between;
  padding: 0 10px;
  width: 100%;
}

.header {
  display: flex;
  width: 1200px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

.logo-container {
  font-size: 30px;
  font-weight: bold;
}

.menu-container {
  display: flex;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
  margin-right: 10px;
}

.menu-item a {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background: linear-gradient(to right, #ff6200 50%, #daa520 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.3s ease;
}

.menu-item a:hover {
  background-position: left bottom;
}

======End of old header css */


/* ================= New HEADER ================= */

.header-container {
  display: flex;
  
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  height: 70px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  
}

/* INNER HEADER */

.header {
  display: flex;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px 15px 10px;    /* top right bottom left */
}

/* LOGO 

.logo-container {
  font-size: 28px;
  font-weight: bold;
  color: #ff6200;
  padding: 15px 10px 15px 10px;    /* top right bottom left  
} */

/* MENU */

.menu-container {
  display: flex;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

/* MENU ITEM */

.menu-item {
  position: relative;
  margin-right: 10px;
}

/* MENU LINKS */

.menu-item a {
  display: inline-block;
  padding: 10px 18px;
  color: #0000FF;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;

  background: linear-gradient(to right, #ff6200 50%, #daa520 50%);
  background-size: 200% 100%;
  background-position: right bottom;

  transition: background-position 0.3s ease;
}

/* HOVER EFFECT */

.menu-item a:hover {
  background-position: left bottom;
}

/* RESPONSIVE */

@media(max-width:900px){

.header{
flex-direction:column;
height:auto;
padding:10px;
}

.menu{
flex-wrap:wrap;
justify-content:center;
}

.menu-item{
margin:5px;
}

}


/* DROPDOWN MENU */

.menu-item{
position:relative;
}

.submenu{
display:none;
position:absolute;
top:40px;
left:0;
background:white;
list-style:none;
padding:0;
margin:0;
min-width:200px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.submenu li a{
display:block;
padding:10px;
color:#333;
background:white;
}

.submenu li a:hover{
background:#f4f4f4;
}

.menu-item:hover .submenu{
display:block;
}













/* ================= SLIDESHOW ================= */

.slideshow-container {
  display: flex;
  max-width: 1200px;
  margin: 20px auto;
}

.slideshow {
  flex: 1;
  border: 1px solid #ddd;
  margin-right: 10px;
  position: relative;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  height: auto;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 3px;
  user-select: none;
}

.next {
  right: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

.fade {
  animation: fade 1.5s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}


/* ================= MIDDLE SECTION ================= */

.title {
  font-weight: bold;
  font-size: 20px;
  color: #ff6200;
  margin: 0;
}




/* ================= PREMIUM FOOTER ================= */

.footer {
  background: #1f1f1f;
  color: #ccc;
  padding-top: 50px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px 40px;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 16px;
  position: relative;
}

.footer-column h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #6B8E23;
  display: block;
  margin-top: 8px;
}

.footer-column p {
  margin-bottom: 8px;
  line-height: 1.6;
}


.footer-column ul {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}




.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff6200;
  padding-left: 5px;
}

/* Bottom Bar */

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #141414;
  color: #aaa;
  font-size: 13px;
}

/* Responsive */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h4::after {
    margin: 8px auto 0;
  }
}










/* ================= DIRECTOR DESK ================= */

.column {
  flex-basis: 30%;
}

.director-desk {
  text-align: justify;
}

.director-desk img {
  width: 3.5cm;
  height: 3.5cm;
  float: left;
  margin-right: 10px;
}

.director-desk h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.director-desk p {
  font-size: 16px;
  line-height: 1.5;
}

.director-desk a {
  color: #007bff;
}

.director-desk a:hover {
  text-decoration: underline;
}



section,
.slideshow-container,
.book-consultation,
.footer-container {
  max-width: 1200px;
  margin: auto;
  
  text-align: justify;
  
}




/* ================= STUDENT CORNER ================= */

.student-corner {
  padding: 25px 0 20px 0;   /* top right bottom left */
  max-width: 1200px;
  margin: auto;
  margin-top: 0;
}

.section-title {
  text-align: center;
  font-size: 28px;
  color: #ff6200;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.student-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.student-card {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border-top: 4px solid #6B8E23;
  transition: 0.3s;
}

.student-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.student-card h3 {
  margin-bottom: 15px;
  color: #6B8E23;
}

.student-card ul {
  list-style: none;
  padding: 0;
}

.student-card ul li {
  margin-bottom: 8px;
}

.student-card ul li a {
  color: #333;
  font-size: 14px;
}

.student-card ul li a:hover {
  color: #ff6200;
}




/* ================= CONSULTATION STRIP ================= */

.consultation-strip {
  width: 100%;
  background: linear-gradient(90deg, #ff6200, #6B8E23);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.consultation-content {
  width: 100%;
  max-width: 1200px;   /* same as header */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.consult-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.consult-text strong {
  font-size: 20px;
}

.consult-buttons {
  display: flex;
  gap: 15px;
}

.consult-btn {
  padding: 8px 18px;
  background-color: #ffffff;
  color: #333;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s ease;
}

.consult-btn:hover {
  background-color: #000;
  color: #fff;
}




/* ================= PREMIUM DONATE ================= */

.premium-donate {
  background: linear-gradient(135deg, #ff6200, #6B8E23);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 10px 20px 20px 10px;   /* top right bottom left */
}

/* Layout */
.donate-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Content */
.donate-content {
  flex: 1;
  min-width: 260px;
}

.premium-donate h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

.premium-donate p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Buttons */
.initiative-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.initiative-btn:hover {
  transform: translateY(-3px);
}

.donate-btn {
  background: #000;
  color: #fff;
}

.donate-btn:hover {
  background: #fff;
  color: #000;
}

/* UPI Info */
.upi-info {
  margin-top: 15px;
  font-size: 13px;
  background: rgba(255,255,255,0.15);
  padding: 8px 12px;
  display: inline-block;
  border-radius: 4px;
}

/* QR CARD */
.donate-qr-card {
  position: relative;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.donate-qr-card:hover {
  transform: scale(1.05);
}

/* Glow effect */
.qr-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,98,0,0.4) 0%, rgba(0,0,0,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.donate-qr-card img {
  width: 130px;
  height: 130px;
  position: relative;
  z-index: 1;
}

.scan-text {
  margin-top: 10px;
  font-size: 13px;
  color: #333;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .donate-wrapper {
    flex-direction: column;
    text-align: center;
  }
}






/* ================= REFINED ABOUT SECTION ================= */

.about-strip {
  width: 100%;
  padding: 25px 0 40px 0;              /* smaller gap */
  background: #f4f7f6;          /* light soft background */
  display: flex;
  justify-content: center;
}

.about-strip-container {
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

/* Heading */

.about-strip h2 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
  position: relative;
}

/* Subtle underline */

.about-strip h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #6B8E23;
  display: block;
  margin: 10px auto 0;
}

/* Text Lines */

.about-line {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* Highlight Effect */

.highlight-line {
  background: #e6efe9;          /* very soft green highlight */
  font-weight: 500;
}

/* Responsive */

@media (max-width: 768px) {
  .about-strip {
    padding: 30px 0;
  }

  .about-strip h2 {
    font-size: 20px;
  }

  .about-line {
    font-size: 14px;
  }
}







/* ================= THREE COLUMN ABOUT ================= */

.about-three-section {
  width: 100%;
  padding: 60px 0;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
}

.about-three-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}


/* =========================================
   ABOUT CARDS - CLEAN UNIFIED STYLES
   ========================================= */

/* 1. Base Card Layout (No background color here) */
.about-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
}

/* 2. Force All Text Inside to be White */
.about-card h2,
.about-card p {
    color: #ffffff ; 
}

.about-card h2 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 3. The 3 Distinct Colors (Using 'background' instead of 'background-color' to override any old gradients) */
.card-vision {
    background: #0d1b2a ; /* Deep Navy */
}

.card-mission {
    background: #004a99 ; /* Instructor Blue */
}

.highlight-card {
    background: #208b5e ; /* Accent Orange */
}




/* Green CTA Button Styles */
  .student-cta-container {
    text-align: center;
    margin-top: 40px;
  }
  .btn-student-green {
    display: inline-block;
    background-color: #208b5e; /* Emerald Green */
    color: #ffffff !important;
    padding: 14px 35px;
    border-radius: 30px; /* Rounded pill shape */
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(32, 139, 94, 0.3);
    transition: all 0.3s ease;
  }
  .btn-student-green:hover {
    background-color: #156644; /* Darker green on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(32, 139, 94, 0.4);
  }
  
  
  
/* =========================================
   OUR OBJECTIVES SECTION STYLES
   ========================================= */

.objectives-section {
    padding: 60px 20px;
    background-color: #f9fbfd; /* A very soft, professional off-white/blue background */
}

.objectives-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title Styling */
.objectives-container h2 {
    text-align: center;
    color: #0d1b2a; /* Deep Navy */
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    margin-top: 0;
}

/* Beautiful custom underline for the title */
.objectives-container h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background-color: #208b5e; /* Emerald Green accent */
    margin: 15px auto 0;
    border-radius: 2px;
}

/* The Responsive Grid */
.objectives-grid {
    display: grid;
    /* This automatically creates columns that fit the screen size! */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Individual Objective Cards */
.objective-item {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft drop shadow */
    color: #444444;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    border-left: 5px solid #004a99; /* Instructor Blue accent on the left edge */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Hover Effect: Lifts up and changes the border color to Green */
.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left-color: #208b5e; /* Emerald Green */
}



/* Container to perfectly align and space the buttons */
.student-cta-container {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    flex-wrap: wrap; /* Allows them to stack neatly on mobile screens */
}





/* BASE BUTTON STYLE: Handles the shape, padding, and text */
.btn-action {
    display: inline-block;
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: 30px; /* Rounded pill shape */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* BUTTON 1: BHARAT EXAM (Accent Orange) */
.btn-bharat {
    background-color: #ff6200;
    box-shadow: 0 6px 15px rgba(255, 98, 0, 0.25);
}
.btn-bharat:hover {
    background-color: #cc4e00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 98, 0, 0.4);
}

/* BUTTON 2: Register for Mock Test (Instructor Blue) */
.btn-mock {
    background-color: #004a99;
    box-shadow: 0 6px 15px rgba(0, 74, 153, 0.25);
}
.btn-mock:hover {
    background-color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 74, 153, 0.4);
}

/* BUTTON 3: Explore Dashboard (Emerald Green) */
.btn-dashboard {
    background-color: #208b5e;
    box-shadow: 0 6px 15px rgba(32, 139, 94, 0.25);
}
.btn-dashboard:hover {
    background-color: #156644;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(32, 139, 94, 0.4);
}







/* Container to center the button */
.about-btn-container {
    margin-top: 25px;
    text-align: center;
}

/* Base button style (Instructor Blue) */
.btn-about-readmore {
    display: inline-block;
    background-color: #004a99; 
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 30px; /* Pill shape */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 74, 153, 0.3);
    transition: all 0.3s ease;
}

/* Hover effect (Accent Orange) */
.btn-about-readmore:hover {
    background-color: #ff6200; 
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 6px 15px rgba(255, 98, 0, 0.4);
}














/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .about-three-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-three-container {
    grid-template-columns: 1fr;
  }
}


/* ================= OBJECTIVES SECTION ================

.objectives-section {
  width: 100%;
  padding: 60px 0;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
}

.objectives-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
}

.objectives-container h2 {
  font-size: 26px;
  color: #ff6200;
  margin-bottom: 40px;
}

/* Grid Layout 

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Individual Objective Card 

.objective-item {
  background: #ffffff;
  padding: 20px 25px;
  border-left: 5px solid #6B8E23;
  border-radius: 6px;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.objective-item:hover {
  transform: translateY(-5px);
  border-left: 5px solid #ff6200;
}

*/

/* Responsive */

@media (max-width: 768px) {
  .objectives-grid {
    grid-template-columns: 1fr;
  }
}


.institution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
}

.institution-tabs .tab-link {
  display: inline-block;
  padding: 10px 18px;
  background-color: #f2f2f2;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.institution-tabs .tab-link:hover {
  background-color: #0056b3;
  color: #fff;
}


/* Light contrast CTO  section above */

.cto-showcase {
        padding: 60px 20px;
        background-color: #f9fbfd; /* Light contrast to the section above */
    }

    .cto-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    /* CTO Profile Styling */
    .cto-profile-card {
        flex: 1;
        min-width: 320px;
        background: #ffffff;
        border-radius: 12px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border-top: 5px solid #004a99; /* Instructor Blue */
    }

    .cto-image-wrapper img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%; /* Circular for a professional academic look */
        margin-bottom: 20px;
        border: 4px solid #f0f4f8;
    }

    .cto-bio h3 { margin: 0; color: #0d1b2a; font-size: 22px; }
    .cto-bio h3 small { color: #ff6200; }
    
    .cto-designation { 
        font-weight: bold; 
        color: #004a99; 
        font-size: 14px; 
        margin: 10px 0; 
        text-transform: uppercase; 
    }

    .cto-degrees { font-size: 13px; line-height: 1.6; color: #444; }

    .cto-memberships {
        margin-top: 15px;
        font-size: 12px;
        color: #777;
        text-align: left;
        background: #f8f9fa;
        padding: 10px;
        border-radius: 6px;
    }

    /* Objectives Grid */
    .cto-objectives-grid {
        flex: 2;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .objective-pillar {
        background: #ffffff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border-left: 5px solid #208b5e; /* Emerald Green */
    }

    .objective-pillar h4 {
        margin-top: 0;
        color: #0d1b2a;
        font-size: 18px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .objective-pillar ul { list-style: none; padding: 0; margin: 15px 0 0 0; }
    
    .objective-pillar li {
        font-size: 14px;
        color: #555;
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .objective-pillar li::before {
        content: "✔";
        color: #208b5e;
        font-weight: bold;
    }

    /* Responsiveness */
    @media (max-width: 768px) {
        .cto-container { flex-direction: column; }
    }
	
	
	/* Nested Grid for Credentials */
.cto-credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split into two equal columns */
    gap: 20px;
    margin-top: 20px;
    text-align: left; /* Align text to left for readability */
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.cred-col {
    display: flex;
    flex-direction: column;
}

.cred-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dash-orange); /* Using your accent color for titles */
    margin-bottom: 10px;
    font-weight: 800;
}

.cto-degrees {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.cto-memberships {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cto-memberships span {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Ensure it stacks on mobile devices */
@media (max-width: 600px) {
    .cto-credentials-grid {
        grid-template-columns: 1fr;
    }
}


.cto-executive-suite {
    padding: 60px 20px;
    background: #f4f7f9;
}

.cto-flex-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Base Card Style */
.sober-card {
    flex: 1;
    min-width: 320px;
    border-radius: 15px;
    padding: 35px 25px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sober-card:hover {
    transform: translateY(-8px);
}

/* Individual Color Contrasts */
.card-navy { background: #0d1b2a; border-bottom: 6px solid #ff6200; } /* Navy + Orange */
.card-slate { background: #1e3a5f; border-bottom: 6px solid #fbc02d; } /* Slate + Gold */
.card-teal { background: #0a4d4d; border-bottom: 6px solid #208b5e; } /* Teal + Emerald */

/* Card 1: Identity Styles */
.cto-img-frame { text-align: center; margin-bottom: 20px; }
.cto-photo { 
    width: 130px; 
    height: 160px; 
    border-radius: 10px; 
    border: 3px solid rgba(255,255,255,0.2);
    object-fit: cover;
}
.cto-header-text h3 { font-size: 22px; margin: 0; color: #fff; }
.cto-header-text h3 small { color: #fbc02d; }
.cto-title { color: #bde0fe; font-size: 14px; font-weight: bold; margin: 10px 0; }
.nobel-badge { 
    display: inline-block; 
    background: rgba(255,255,255,0.1); 
    padding: 5px 12px; 
    font-size: 11px; 
    border-radius: 20px; 
    text-transform: uppercase; 
}

/* Card 2 & 3: Labels and Lists */
.suite-label { 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin: 0 0 25px 0; 
    color: rgba(255,255,255,0.6); 
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.degree-item { margin-bottom: 18px; line-height: 1.4; }
.degree-item strong { display: block; color: #fbc02d; font-size: 16px; }
.degree-item span { font-size: 13px; color: #e0e0e0; }
.gold-medal { color: #fff !important; font-weight: 600; }

.affiliation-list { list-style: none; padding: 0; margin: 0; }
.affiliation-list li { margin-bottom: 20px; position: relative; padding-left: 20px; }
.bullet { position: absolute; left: 0; top: 2px; color: #208b5e; font-size: 12px; }
.affiliation-list strong { font-size: 15px; display: block; color: #fff; }
.affiliation-list p { margin: 2px 0 0 0; font-size: 12px; color: #bde0fe; line-height: 1.4; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cto-flex-container { flex-direction: column; align-items: center; }
    .sober-card { width: 100%; }
}




/* ================= 3D RESOURCE CARDS ================= */
.resources-section {
	margin-top: 100px; /* Adjust this value to increase the gap */
    padding: 80px 20px;
    background-color: #0d1b2a; /* Dark background to make cards pop */
    perspective: 1000px; /* Required for 3D effects */
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 40px auto 0;
}

.resource-card {
    position: relative;
    text-decoration: none;
    border-radius: 20px;
    padding: 3px; /* Creates a border effect */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.card-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Glass effect */
    padding: 40px 25px;
    border-radius: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- STRONG CONTRAST BACKGROUNDS --- */
.card-green { background: linear-gradient(135deg, #728c30 0%, #a2c14a 100%); }
.card-orange { background: linear-gradient(135deg, #ff6200 0%, #ff9e00 100%); }
.card-blue { background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%); }
.card-purple { background: linear-gradient(135deg, #6200ea 0%, #b388ff 100%); }
.card-teal { background: linear-gradient(135deg, #00897b 0%, #4db6ac 100%); }

/* --- 3D HOVER ANIMATION --- */
.resource-card:hover {
    transform: rotateX(10deg) rotateY(-10deg) scale(1.05);
    z-index: 10;
}

.resource-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transform: translateZ(50px); /* Makes icon float higher in 3D */
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.resource-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-btn {
    margin-top: auto;
    background: white;
    color: #333;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.resource-card:hover .card-btn {
    background: #333;
    color: white;
}


/* --- NEW HIGH-CONTRAST GRADIENTS --- */
.card-rose { 
    background: linear-gradient(135deg, #e91e63 0%, #ff6090 100%); 
}

.card-gold { 
    background: linear-gradient(135deg, #ff9800 0%, #ffeb3b 100%); 
}

.card-indigo { 
    background: linear-gradient(135deg, #3f51b5 0%, #7986cb 100%); 
}

/* Ensure the text is readable on the brighter Gold card */
.card-gold .card-inner {
    color: #222; /* Darker text for the yellow background */
}
.card-gold .resource-icon {
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.7s;
}

.resource-card:hover .card-inner::before {
    left: 150%;
}




/* ================= MAGAZINE SECTION STYLES ================= */
.magazine-section {
    padding: 80px 20px;
    background-color: #0d1b2a; /* Deep Navy Background */
    perspective: 1500px;
}

.magazine-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mag-card {
    text-decoration: none;
    border-radius: 25px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.mag-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 50px 30px;
    border-radius: 22px;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
}

.mag-card:hover {
    transform: rotateY(-15deg) rotateX(5deg) scale(1.02);
}

/* --- ICONS & BADGES --- */
.mag-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.mag-icon {
    font-size: 55px;
    margin-bottom: 20px;
    transform: translateZ(80px);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
}

/* --- TITLES --- */
.mag-card h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: #fff;
    transform: translateZ(50px);
}

.bengali-title {
    font-family: 'Hind Siliguri', 'Kalpurush', sans-serif;
    font-weight: 700;
}

.mag-card h4 {
    font-size: 16px;
    color: #ffb100; /* Goldish contrast */
    margin-bottom: 20px;
    transform: translateZ(40px);
}

.mag-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    transform: translateZ(30px);
}

/* --- BUTTONS --- */
.mag-btn {
    margin-top: auto;
    background: #ff6200;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transform: translateZ(40px);
    transition: 0.3s;
}

.mag-card:hover .mag-btn {
    background: #fff;
    color: #0d1b2a;
    transform: translateZ(60px) scale(1.1);
}

/* --- GRADIENTS --- */
.mag-science {
    background: linear-gradient(135deg, #004d40 0%, #00796b 100%); /* Deep Teal/Green */
}

.mag-arts {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 100%); /* Deep Purple */
}






/* Container to handle the left/right split */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* The 3D Clock Box */
.clock-3d {
    perspective: 1000px;
}

.clock-inner {
    background: #728c30; /* Nobel Green */
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 14px;
    
    /* 3D Tilt and Shadow */
    transform: rotateX(10deg) rotateY(-10deg);
    box-shadow: 
        5px 5px 0px #4d5f20,   /* Darker Green depth */
        10px 10px 15px rgba(0,0,0,0.3); /* Soft floor shadow */
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.clock-inner:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.05);
}

#clock-time {
    font-size: 18px;
    color: #ffb100; /* Gold/Orange for time visibility */
}

#clock-date {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}