

.team-banner{
  height:340px;
  display:flex;
  align-items:center;

  /* add your background image here */
  background: url("../images/titlebar-bg2.jpg") center/cover no-repeat;

  position:relative;
}

/* light overlay like screenshot */
.team-banner::before{
  content:"";
  position:absolute;
  inset:0;
  /* background:rgba(255,255,255,0.75); */
}

.team-banner-inner{
  position:relative;
  z-index:2;

  width:100%;
  max-width:1200px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 20px;
}

/* left title */
.team-banner h1{
  font-size:48px;
  color:#0b4b52;
  font-weight:600;
}

/* breadcrumb */
.breadcrumb{
  color:#8a9aa0;
  font-size:14px;
}

.breadcrumb a{
  color:#8a9aa0;
  text-decoration:none;
}

.breadcrumb a:hover{
  text-decoration:underline;
}
.team-section{
  background:#f4f4f4;
  padding:60px 20px 80px;
  text-align:center;
}

.team-title{
  font-size:36px;
  color:#4b6cff;
  margin-bottom:40px;
  font-weight:500;
}

/* container */
.team-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns: repeat(3, 1fr); /* 3 in first row */
  gap:50px;
  justify-items:center;
}

/* second row automatically created */


/* card */
.team-card{
  flex:1;
  min-width:250px;
}

/* circular image with teal border */
.team-img{
  width:365px;
  height:365px;
  margin:0 auto 20px;
  border-radius:50%;
 
  overflow:hidden;
}

.team-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* text */
.team-card h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
  color:#000;
}

.team-card p{
  font-size:16px;
  color:#333;
  margin:2px 0;
}


@media (max-width:576px){

  /* banner */
  .team-banner{
    height:170px;
    padding:20px 0;
  }

  .team-banner h1{
    font-size:26px;
  }

  .breadcrumb{
    font-size:12px;
  }

  /* team section spacing */
  .team-section{
    padding:40px 15px 60px;
  }

  .team-title{
    font-size:26px;
    margin-bottom:30px;
  }

  /* 1 member per row */
  .team-container{
    grid-template-columns: 1fr;
    gap:35px;
  }

  /* circle image smaller */
  .team-img{
    width:220px;
    height:220px;
    border-width:8px;
  }

  .team-card h3{
    font-size:16px;
  }

  .team-card p{
    font-size:14px;
  }
}
.services-section{
  background:#f5f5f5;
  padding:60px 20px 80px;
  text-align:center;
}

.services-title{
  font-size:36px;
  color:#4b6cff;
  margin-bottom:10px;
}

.services-sub{
  max-width:700px;
  margin:0 auto 40px;
  color:#333;
  font-size:16px;
}

/* GRID */
.services-grid{
  max-width:1100px;
  margin:auto;

  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}

/* CARD */
.service-card{
  background:#3f6fd9;
  padding:12px;
}

.service-card img{
  width:365px;
  height:205px;
  object-fit:cover;
}

/* INNER WHITE BOX */
.service-content{
  background:#fff;
  padding:22px;
  text-align:left;
  min-height:230px;
}

.service-content h3{
  font-size:20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom:12px;
  color:#033b4a;
}

.service-content p{
  font-size:15px;
  color:#000;
  line-height:22px;
}
@media (max-width:992px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px){
  .services-grid{
    grid-template-columns: 1fr;
  }

  .services-title{
    font-size:28px;
  }
  .service-card img {
    width:100%;
    height:auto;
  }
}
.plan-section{
  background:#f3f3f3;
  padding:60px 20px 80px;
}

.plan-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:60px;
  align-items:start;
}

/* each side */
.plan-box{
  text-align:center;
}

.plan-box h2{
  font-size:26px;
  color:#0b4b52;
  margin-bottom:30px;
  font-weight:500;
}

/* images */
.plan-box img{
  width:100%;
  max-width:500px;
  height:auto;
}
@media (max-width:992px){
  .plan-container{
    grid-template-columns: 1fr;
    gap:50px;
  }

  .plan-box h2{
    font-size:22px;
  }

  .plan-box img{
    max-width:420px;
  }
}
@media (max-width:768px){

  .cta-appoint{
    min-height: 200px;
  }

  .cta-phone{
    font-size: 20px;
  }

  .cta-title{
    font-size: 24px;
    line-height: 1.4;
  }
}
 .cta-appoint{
  position: relative;
  min-height: 260px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

  /* 👉 add your background image here */
  background: url("../images/footer-bg.jpg") center/cover no-repeat;
}

/* dark teal overlay like screenshot */
.cta-appoint::before{
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(6, 70, 80, 0.85); */
}

/* keep text above overlay */
.cta-appoint-inner{
  position: relative;
  z-index: 2;
  padding: 20px;
}

.cta-phone{
  font-size: 26px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.cta-title{
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
}

.pub-sec{
  background:#f3f3f3;
  padding:70px 20px;
}

.pub-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT IMAGE */
.pub-left img{
      width: 464px;
    height: 167px;
  border:6px solid #3f6fd9;
}

/* RIGHT */
.pub-title{
  font-size:40px;
  color:#4b6cff;
  margin-bottom:15px;
  font-weight:500;
}

.pub-desc{
  font-size:18px;
  color:#333;
  margin-bottom:25px;
  line-height:1.6;
}

/* SMALL IMAGE BELOW TEXT */
.pub-small-img img{
  width:100%;
  height: auto;
  max-width:420px;
}
@media (max-width:992px){
  .pub-container{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .pub-small-img img{
    margin:auto;
  }
}

@media (max-width:576px){
  .pub-title{
    font-size:28px;
  }

  .pub-desc{
    font-size:15px;
  }
  .pub-left img{
    width:100%;
    height:auto;
    max-width:400px;
  }
}
.journal-sec{
  /* background:#f3f3f3; */
  padding:60px 20px;
  max-width:1100px;
  margin:auto;
}

.journal-small{
  color:#4b6cff;
  letter-spacing:2px;
  font-size:13px;
  margin-bottom:10px;
}

.journal-title{
  font-size:40px;
  color:#4b6cff;
  margin-bottom:30px;
}

/* accordion */
.journal-item{
  margin-bottom:15px;
}

/* header */
.journal-header{
  width:100%;
  background:#0b4b52;
  color:#fff;
  border:none;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:left;
  font-size:16px;
  cursor:pointer;
}

.journal-item.active .journal-header{
  background:#4b6cff;
}

.icon{
  font-size:22px;
}

/* body */
.journal-body{
  display:none;
 background: #f9fafb;
  padding:18px 20px;
  font-size:15px;
  color:#333;
}

.journal-item.active .journal-body{
  display:block;
}
@media (max-width:768px){
  .journal-title{
    font-size:28px;
  }

  .journal-header{
    font-size:14px;
    padding:15px;
  }
}

.gallery-sec{
    /* background:#f3f3f3; */
    padding:60px 20px 80px;
}
/* gallery grid */
.gallery-container{
  max-width:1400px;
  margin:auto;
  display:grid;

  /* 👉 6 images per row */
  grid-template-columns: repeat(6, 1fr);

  gap:12px;
}

.gallery-container img{
  width:100%;
  height:200px;
  object-fit:cover;
  cursor:pointer;
  transition:0.3s;
}

.gallery-container img:hover{
  transform:scale(1.05);
}


/* LIGHTBOX FULL SCREEN */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.lightbox-img{
  max-width:90%;
  max-height:90%;
}

/* close button */
.lightbox-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}
@media (max-width:992px){
  .gallery-container{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:576px){
  .gallery-container{
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-container img{
    height:160px;
  }
}


.article-sec{
  background:#f3f3f3;
  padding:50px 20px 70px;
}

.article-title{
  max-width:1200px;
  margin:0 auto 30px;
  font-size:40px;
  color:#4b6cff;
  font-weight:500;
}

/* GRID → 2 images per row */
.article-grid{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:20px;
}

/* images */
.article-grid img{
  width:100%;
  /* height:420px;        tall newspaper look */
  object-fit:cover;
  display:block;
}
@media (max-width:768px){

  .article-title{
    font-size:28px;
    text-align:center;
  }

  .article-grid{
    grid-template-columns: 1fr;   /* mobile → 1 per row */
  }

  .article-grid img{
    height:auto;
  }
}
/* section */
.ca-sec{
  background:#f3f3f3;
  padding:60px 20px 80px;
}

.ca-title{
  max-width:1200px;
  margin:0 auto 30px;
  font-size:42px;
  color:#4b6cff;
  font-weight:500;
}

/* GRID → 3 per row */
.ca-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.ca-grid img{
  width:100%;
  height:320px;
  object-fit:cover;
  cursor:pointer;
  transition:0.3s;
}

.ca-grid img:hover{
  transform:scale(1.04);
}

/* LIGHTBOX */
.ca-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.ca-light-img{
  max-width:92%;
  max-height:92%;
}

.ca-close{
  position:absolute;
  top:25px;
  right:35px;
  font-size:44px;
  color:#fff;
  cursor:pointer;
}
@media (max-width:992px){
  .ca-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px){
  .ca-grid{
    grid-template-columns: 1fr;
  }

  .ca-grid img{
    height:auto;
  }

  .ca-title{
    font-size:28px;
    text-align:center;
  }
}
.pev-sec{
  background:#f3f3f3;
  padding:60px 20px 80px;
}

.pev-title{
  max-width:1200px;
  margin:0 auto 30px;
  font-size:42px;
  color:#4b6cff;
  font-weight:500;
}

/* grid */
.pev-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}

/* video box */
.pev-video{
  width:100%;
  aspect-ratio:16/9;   /* keeps proper video ratio */
}

.pev-video iframe{
  width:100%;
  height:100%;
  border:0;
}
@media (max-width:992px){
  .pev-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px){
  .pev-grid{
    grid-template-columns: 1fr;
  }

  .pev-title{
    font-size:28px;
    text-align:center;
  }
}
@media (max-width:768px){
  .blog-grid{
    grid-template-columns: 1fr;
  }

  .blog-main-title{
    font-size:28px;
  }
}
.blog-sec{
  background:#f3f3f3;
  padding:60px 20px 90px;
}

.blog-main-title{
  text-align:center;
  font-size:42px;
  color:#4b6cff;
  margin-bottom:40px;
}

/* grid */
.blog-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:40px;
}

/* card */
.blog-card{
  background:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,0.08);
}

/* image */
.blog-img{
  position:relative;
}

.blog-img img{
  width:100%;
  height:260px;
  object-fit:cover;
}

/* date badge */
.blog-date{
  position:absolute;
  bottom:-25px;
  left:20px;
  background:#4b6cff;
  color:#fff;
  padding:10px 14px;
  text-align:center;
}

.blog-date span{
  display:block;
  font-size:22px;
  font-weight:bold;
}

/* content */
.blog-content{
  padding:40px 20px 25px;
}

.blog-meta{
  color:#6b6b6b;
  font-size:14px;
  margin-bottom:10px;
}

/* 👉 anchor heading */
.blog-title a{
  color:#0b4b52;
  text-decoration:none;
  font-size:22px;
  font-weight:600;
}

.blog-title a:hover{
  color:#4b6cff;
}

.blog-desc{
  color:#555;
  margin-top:10px;
  line-height:1.6;
}


.bd-sec{
  /* background:#f3f3f3; */
  padding:50px 20px 80px;
}

.bd-container{
  max-width:900px;
  margin:auto;
}

/* IMAGE */
.bd-img-wrap{
  position:relative;
}

.bd-img-wrap img{
  width:100%;
  height:auto;
  display:block;
}

/* DATE BADGE */
.bd-date{
  position:absolute;
  top:20px;
  left:20px;
  background:#4b6cff;
  color:#fff;
  padding:10px 14px;
  text-align:center;
}

.bd-date span{
  display:block;
  font-size:22px;
  font-weight:bold;
}

/* META ROW */
.bd-meta{
  display:flex;
  gap:20px;
  font-size:14px;
  color:#6b6b6b;
  margin:15px 0 20px;
}

/* CONTENT */
.bd-content{
  color:#222;
  line-height:25px;
  font-size:17px;
}

.bd-content h3{
  margin:25px 0 10px;
  font-size:22px;
  color:#000;
  font-size: 15px;
  font-weight:400;
}
@media (max-width:768px){

  .bd-meta{
    flex-direction:column;
    gap:6px;
  }

  .bd-content{
    font-size:16px;
  }

  .bd-date{
    top:12px;
    left:12px;
  }
}
.reply-section{
  max-width: 950px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.prev-btn{
  display: inline-block;
  background: #4b57b9;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 40px;
}

.reply-section h2{
  font-size: 32px;
  color: #4b57b9;
  margin-bottom: 10px;
}

.reply-note{
  margin-bottom: 25px;
  color: #333;
}

.reply-form textarea{
  width: 100%;
  height: 160px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 15px;
  resize: none;
  margin-bottom: 20px;
}

.reply-row{
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reply-row input{
  flex: 1;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 14px;
}

.save-check{
  display: block;
  font-size: 14px;
  margin-bottom: 25px;
}

.post-btn{
  background: #4b57b9;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.post-btn:hover{
  background: #3a46a3;
}

/* 📱 Mobile Responsive */
@media(max-width:768px){
  .reply-row{
    flex-direction: column;
  }
}
.contact-wrapper{
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  /* gap: 30px; */
  min-height: 600px;
  font-family: 'Poppins', sans-serif;
}

/* LEFT */
.contact-left{
  width: 50%;
  background: #352f8f;
  color: #fff;
  padding: 40px;
}

.contact-item{
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
}

.contact-item i{
  font-size: 20px;
  border: 1px solid #fff;
  padding: 12px;
}

.contact-item h4{
  margin: 0;
  font-weight: 600;
}

.contact-item p{
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

.follow-title,
.address-title{
  margin-top: 30px;
  font-size: 18px;
}

.social-icons{
  margin: 15px 0;
}

.social-icons a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #352f8f;
  margin-right: 10px;
  text-decoration: none;
}

.address-text{
  font-size: 14px;
  line-height: 1.6;
}

.map{
  width: 100%;
  height: 250px;
  border: none;
  margin-top: 20px;
}

/* RIGHT */
.contact-right{
  width: 50%;
  background: #f3f3f3;
  padding: 50px;
  display: flex;
  align-items: center;
}

.contact-form{
  width: 100%;
}

.contact-form input{
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  font-size: 14px;
}

.contact-form button{
  background: #0d4a53;
  color: #fff;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  font-weight: 600;
}

/* 📱 Responsive */
@media(max-width:768px){
  .contact-wrapper{
    flex-direction: column;
  }

  .contact-left,
  .contact-right{
    width: 100%;
  }
}
