:root{
  --primary:#025159;
  --secondary:#3E848C;
  --accent:#7AB8BF;
  --lightbg:#C4EEF2;
  --brown:#A67458;
  --white:#ffffff;
  --dark:#012f34;
  --shadow: 0px 10px 30px rgba(0,0,0,0.10);
}

/* GLOBAL */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body{
  background: linear-gradient(180deg, var(--lightbg), #ffffff);
  overflow-x:hidden;
  color: var(--dark);
}

/* TOP STRIP */
.top-strip{
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color:#fff;
  padding:7px 20px;
  font-size:14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.top-strip a{
  color:#fff;
  text-decoration:none;
  margin-left:15px;
  font-weight:600;
  transition:0.3s;
}

.top-strip a:hover{
  color: var(--brown);
}

/* HEADER */
.main-header{
  background: rgba(2, 81, 89, 0.90);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.logo-img{
  width:55px;
  height:55px;
  border-radius:50%;
}


.navbar-brand h5{
  font-size:18px;
  color:#fff;
  font-weight:800;
}

.navbar-brand small{
  color: var(--accent);
  font-weight:600;
}

.nav-link{
  font-weight:700;
  color:white !important;
  padding:8px 14px !important;
  border-radius:30px;
  transition:0.3s;
}

.nav-link:hover{
  background: var(--brown);
  color:white !important;
}

.nav-link.active{
  background: var(--accent);
  color: var(--primary) !important;
}

/* LOGIN BUTTON DROPDOWN */
.login-btn{
  background: linear-gradient(135deg, var(--brown), var(--accent));
  color: white !important;
  font-weight: 900;
  padding: 10px 18px !important;
  border-radius: 50px;
  transition: 0.4s;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.20);
}

.login-btn:hover{
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: translateY(-3px);
  color: white !important;
}

.login-dropdown{
  border-radius: 16px;
  border: 1px solid rgba(62,132,140,0.25);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  padding: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}

.login-dropdown .dropdown-item{
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.3s;
  color: var(--primary);
}

.login-dropdown .dropdown-item i{
  margin-right: 8px;
  color: var(--brown);
}

.login-dropdown .dropdown-item:hover{
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
}

.login-dropdown .dropdown-item:hover i{
  color: white;
}

/* HERO SECTION */
.hero-section{
  position:relative;
  height:90vh;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(135deg, rgba(2,81,89,0.90), rgba(62,132,140,0.55));
  z-index:-1;
}

.hero-content{
  color:white;
}

.hero-content h1{
  font-size:55px;
  font-weight:900;
  text-shadow: 0px 5px 15px rgba(0,0,0,0.4);
}

.hero-content p{
  font-size:18px;
  margin-top:12px;
  color:#eaeaea;
  max-width: 850px;
  margin-left:auto;
  margin-right:auto;
}

.btn-hero{
  background: linear-gradient(135deg, var(--brown), var(--accent));
  color:white;
  font-weight:800;
  padding:13px 35px;
  border-radius:50px;
  border:none;
  transition:0.4s;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.25);
}

.btn-hero:hover{
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color:white;
  transform: translateY(-4px);
}

/* HERO SHAPES */
.hero-shape{
  position:absolute;
  width:350px;
  height:350px;
  background: rgba(122,184,191,0.25);
  border-radius:50%;
  filter: blur(70px);
  animation: float 6s infinite alternate;
}

.hero-shape.shape1{
  top:10%;
  left:-120px;
}

.hero-shape.shape2{
  bottom:10%;
  right:-120px;
  background: rgba(166,116,88,0.22);
}

@keyframes float{
  from{ transform: translateY(0px); }
  to{ transform: translateY(-40px); }
}

/* SECTION */
.section-padding{
  padding:80px 0;
  position:relative;
  overflow:hidden;
}

.section-padding::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background: rgba(62,132,140,0.18);
  border-radius:50%;
  top:-150px;
  left:-150px;
  filter: blur(80px);
  z-index:0;
}

.section-padding::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background: rgba(166,116,88,0.15);
  border-radius:50%;
  bottom:-150px;
  right:-150px;
  filter: blur(80px);
  z-index:0;
}

.section-padding .container{
  position:relative;
  z-index:2;
}

/* TITLES */
.section-title{
  font-weight:900;
  font-size:34px;
  color: var(--primary);
}

.section-text{
  line-height:1.9;
  font-size:16px;
  color:#2a2a2a;
}

/* HIGHLIGHT STRIP */
.highlight-strip{
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 22px 0;
}

.highlight-strip i{
  font-size: 32px;
  color: var(--accent);
}

.highlight-strip h6{
  margin-top: 10px;
  font-weight: 800;
  color: white;
}

/* FEATURE CARD */
.feature-card{
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(12px);
  border-radius:18px;
  padding:30px 22px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow);
  transition:0.4s;
  height:100%;
}

.feature-card:hover{
  transform: translateY(-10px);
  border: 1px solid rgba(62,132,140,0.50);
}

.feature-card i{
  font-size:45px;
  background: linear-gradient(135deg, var(--brown), var(--secondary));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:15px;
}

.feature-card h4{
  font-weight:900;
  font-size:18px;
  color: var(--primary);
}

.feature-card p{
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* DIRECTOR BOX */
.director-box{
  background: linear-gradient(135deg, var(--primary), var(--brown));
  padding:50px;
  border-radius:22px;
  text-align:center;
  box-shadow: 0px 15px 40px rgba(0,0,0,0.20);
}

.director-text{
  color:white;
  font-size:18px;
  line-height:1.9;
  margin-bottom:15px;
}

.director-name{
  color: var(--accent);
  font-weight:900;
}

/* COURSES TABS */
.course-tabs .nav-link{
  background: rgba(255,255,255,0.8);
  color: var(--primary) !important;
  font-weight: 900;
  margin: 6px;
  border-radius: 50px;
  padding: 10px 18px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.4s;
}

.course-tabs .nav-link i{
  margin-right: 8px;
  color: var(--brown);
}

.course-tabs .nav-link.active{
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white !important;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

.course-tab-box{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 35px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.course-tab-box h4{
  font-weight: 900;
  color: var(--primary);
}

.course-tab-box h4 i{
  color: var(--brown);
}

.mini-course-card{
  background: rgba(255,255,255,0.95);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
  transition: 0.4s;
  height: 100%;
}

.mini-course-card:hover{
  transform: translateY(-8px);
  border: 1px solid rgba(62,132,140,0.35);
}

.mini-course-card i{
  font-size: 34px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--brown), var(--secondary));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.mini-course-card h6{
  font-weight: 900;
  color: var(--primary);
}

/* MILESTONE */
.milestone-section{
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding:80px 0;
  color:white;
  position:relative;
  overflow:hidden;
}

.milestone-section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background: rgba(196,238,242,0.22);
  border-radius:50%;
  top:-200px;
  left:-200px;
  filter: blur(90px);
}

.milestone-card{
  background: rgba(255,255,255,0.12);
  padding:28px;
  border-radius:18px;
  transition:0.4s;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.25);
}

.milestone-card:hover{
  transform: scale(1.08);
  background: rgba(255,255,255,0.18);
}

.milestone-card h2{
  font-size:42px;
  font-weight:900;
  color: var(--lightbg);
}

.milestone-card p{
  font-weight:800;
}

.director-img{
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(255,255,255,0.4);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.35);
  transition: 0.4s;
}

.director-img:hover{
  transform: scale(1.06);
  border-color: var(--accent);
}

/* TESTIMONIAL CAROUSEL */
.testimonial-carousel-card{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 45px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.testimonial-carousel-card i{
  font-size: 45px;
  color: var(--brown);
  margin-bottom: 15px;
}

.testimonial-carousel-card p{
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
  color: #222;
}

.testimonial-carousel-card h5{
  margin-top: 15px;
  font-weight: 900;
  color: var(--primary);
}

/* FOOTER */
.footer-area{
  background: linear-gradient(135deg, var(--primary), var(--brown));
  color:white;
  padding:70px 0 20px;
}

.footer-area h5{
  color: var(--lightbg);
  font-weight:900;
  margin-bottom:15px;
}

.footer-area ul{
  list-style:none;
  padding-left:0;
}

.footer-area ul li{
  margin-bottom:10px;
}

.footer-area ul li a{
  text-decoration:none;
  color:white;
  transition:0.3s;
  font-weight:600;
}

.footer-area ul li a:hover{
  color: var(--accent);
}

.footer-logo{
  width:50px;
  margin-right:7px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.2);
  padding-top:15px;
  color:#eee;
}

/* WHATSAPP */
.whatsapp-btn{
  position:fixed;
  left:20px;
  bottom:20px;
  background:#25D366;
  color:white;
  font-size:28px;
  padding:12px 16px;
  border-radius:50%;
  z-index:999;
  box-shadow:0px 8px 20px rgba(0,0,0,0.3);
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform: scale(1.08);
}

/* SCROLL TOP */
.scroll-top-btn{
  position:fixed;
  right:20px;
  bottom:20px;
  background: var(--brown);
  color:white;
  border:none;
  padding:12px 15px;
  border-radius:50%;
  font-size:20px;
  z-index:999;
  display:none;
  box-shadow:0px 8px 20px rgba(0,0,0,0.3);
  transition:0.3s;
}

.scroll-top-btn:hover{
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.08);
}

/* PAGE HERO (Gallery etc.) */
.page-hero{
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(2,81,89,0.9), rgba(62,132,140,0.65)),
  url("../img/img3.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.page-hero h1{
  font-size: 45px;
  font-weight: 900;
}

.page-hero p{
  font-size: 18px;
  font-weight: 600;
}

/* GALLERY CARD */
.gallery-card{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-card img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img{
  transform: scale(1.12);
}

.gallery-overlay{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding: 15px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
  color:white;
}

.gallery-overlay h5{
  margin:0;
  font-weight: 900;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-content h1{
    font-size:30px;
  }
  .hero-section{
    height:75vh;
  }
  .section-title{
    font-size:26px;
  }
  .director-box{
    padding:30px;
  }
}

/* PAGE HERO */
.page-hero{
  padding: 90px 0;
   background: linear-gradient(135deg, rgba(2,81,89,0.9), rgba(62,132,140,0.65)),
  url("../img/img3.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
}

.page-hero h1{
  font-size: 45px;
  font-weight: 900;
}

.page-hero p{
  font-size: 18px;
  font-weight: 600;
}

/* GALLERY CARD */
.gallery-card{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0px 12px 30px rgba(0,0,0,0.12);
  cursor: pointer;
}

.gallery-card img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img{
  transform: scale(1.12);
}

.gallery-overlay{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding: 15px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
  color:white;
}

.gallery-overlay h5{
  margin:0;
  font-weight: 900;
}
/* GOVT LOGOS SECTION */
.gov-logo-box{
  background: rgba(255,255,255,0.85);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(62,132,140,0.20);
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}

.gov-logo-box img{
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  transition: 0.4s;
  filter: grayscale(30%);
}

.gov-logo-box:hover{
  transform: translateY(-8px);
  border-color: rgba(2,81,89,0.45);
}

.gov-logo-box:hover img{
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* FRANCHISE PAGE */
.process-card{
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.4s;
  height: 100%;
  border: 1px solid rgba(62,132,140,0.20);
}

.process-card:hover{
  transform: translateY(-10px);
  border-color: rgba(2,81,89,0.40);
}

.process-card span{
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 16px;
}

.process-card h5{
  font-weight: 900;
  color: var(--primary);
}

.process-card p{
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}

.franchise-table thead{
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.franchise-table th{
  font-weight: 900;
}

.franchise-table td{
  font-weight: 700;
  color: #222;
}