/* ===============================
   GLOBAL
================================ */

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: Segoe UI;
  background: #f4f4f4;
}

p, span{
  font-family: 'Times New Roman', Times, serif;
}

h1, h3{
  font-family: Cambria;
}

/* ===============================
   TOP BAR
================================ */

.topbar{
  background: linear-gradient(90deg,#e0ddde,#1b2d70);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  color: white;
}

.clg-logo{
  height: 100px;
  width: auto;
  object-fit: contain;
}

.title-box{
  text-align: center;
  flex: 1;
}

.title-box h1{
  margin: 0;
  font-size: 56px;
  font-family: Algerian;
  animation: glow 2s infinite alternate;
}

.title-box span{
  color: yellow;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
}

@keyframes glow{
  from{ text-shadow: 0 0 5px white; }
  to{ text-shadow: 0 0 20px yellow; }
}

/* ===============================
   MENU
================================ */

.menu{
  background: #111;
  text-align: center;
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Times New Roman';
}

.menu a{
  color: white;
  margin: 30px;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  padding: 5px 15px;
  transition: 0.3s;
}

.menu a:hover{
  color: yellow;
  transform: scale(1.1);
}

.menu a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: yellow;
  transition: 0.3s;
}

.menu a:hover::after{
  width: 100%;
}

/* ===============================
   HERO + QUOTE
================================ */

.hero{
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 20px;
  color: white;
  background: linear-gradient(to right,#003366,#0059b3);
}

.about-points{
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.about-points li{
  font-size: 18px;
  margin: 15px 0;
  padding-left: 40px;
  position: relative;
  line-height: 1.6;
}

/* Custom bullet */
.about-points li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 3px;
  color: #f4511e;
  font-size: 18px;
  font-weight: bold;
}



/* ===============================
   FLASH INFO CARDS
================================ */

.flash{
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

.flash-card{
  background: white;
  padding: 25px;
  width: 200px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.flash-card:hover{
  background: #003366;
  color: white;
  transform: scale(1.1);
}

/* ===============================
   ABOUT / SERVICES / PRODUCTS
================================ */

.about,
.facilities{
  background: white;
  padding: 50px;
  text-align: center;
  margin: 20px;
  border-radius: 10px;
}

.facility-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.facility-card{
  background: #002147;
  color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: .3s;
}

.facility-card:hover{
  background: #1db3bb;
  transform: translateY(-8px) scale(1.05);
}

.fac-icon{
  font-size: 40px;
  margin-bottom: 10px;
}

/* ===== PRODUCTS ===== */

.products{
  background:#fff;
  padding:60px 40px;
  text-align:center;
}

.products-title{
  font-size:28px;
  margin-bottom:40px;
  font-family:Cambria;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.product-card{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.15);
  transition:0.3s ease;
}

.product-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.product-card p{
  margin:0;
  padding:15px;
  font-size:16px;
  letter-spacing:1px;
  background:#fafafa;
}

.product-card:hover{
  transform:translateY(-10px);
}


/* ===============================
   CONTACT
================================ */

.contact{
  padding: 50px;
  text-align: center;
  background: white;
  margin: 20px;
  border-radius: 10px;
}

.contact input,
.contact textarea{
  width: 60%;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button{
  background: #002147;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
}

/* ===============================
   FOOTER
================================ */

footer{
  background: #0ec9c6;
  color: white;
  text-align: center;
  padding: 15px;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px){
  .menu a{
    margin: 10px;
    font-size: 16px;
  }

  .super-quote{
    font-size: 32px;
  }
}

/* ===== TESTIMONIAL HERO ===== */

.testimonial-hero{
  background:#fff;
  color:#333;
  min-height:15vh;
  flex-direction:column;
}

.testi-title{
  font-size:24px;
  margin-bottom:10px;
  letter-spacing:1px;
  font-family:Cambria;
}

.testi-box{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
}

.testi-text{
  font-size:20px;
  font-style:italic;
  max-width:600px;
  text-align:center;
  font-family:'Times New Roman';
}

.arrow{
  font-size:40px;
  color:#ff7043;
  cursor:pointer;
  user-select:none;
}

.arrow:hover{
  color:#f4511e;
}

.dots{
  margin-top:25px;
}

.dot{
  height:10px;
  width:10px;
  border-radius:50%;
  display:inline-block;
  border:1px solid #f4511e;
  margin:0 4px;
}

.dot.active{
  background:#f4511e;
}

/* Responsive */
@media(max-width:768px){
  .testi-box{
    gap:15px;
  }
  .testi-text{
    font-size:16px;
  }
}
