@import url('https://fonts.googleapis.com/css2?family=Cookie&family=DM+Serif+Text:ital@0;1&family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&family=Prosto+One&display=swap');
* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

a{
  text-decoration: none; 
   pointer-events: auto;
}

.header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
}

.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
    transition: .5s;
}

.header:hover::before{
    left: 100%;
}

#menu-icon{
    font-size: 2rem;
    color: #336D82;
    display: none;
}
 
@media(max-width: 992px){
    .header{
        padding: 1.25rem 4%;
    }
} 

@media(max-width: 768px){
    #menu-icon{
    display: block;
    font-size: 2rem;
    color: #336D82;
    cursor: pointer;
    z-index: 1100; /* Above navbar and nav-bg */
    position: relative; /* To respect z-index */
    }

    .navbar{
        position: fixed;
        top: 100%;
        left: -10px;
        width: 90%;
        padding: .5rem 4%;
        display: none;
        text-align: center;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1001; /* To be above other content */
    }

    .navbar.active{
        display: block;
    }

    .navbar a{
        display: block;
        margin: 2rem 5rem;
    }
    .nav-bg{
        position: fixed;
        top: 11.8%;
        left: 0;
        width: 100%;
        height: 360px;
        pointer-events: none;
        background: rgba(255, 255, 255, .1);
    }
    .nav-bg .active{
      margin-top: 3.5rem;
      display: block;
      pointer-events: none;
    }

} 

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
  width: 120px;
  height: 60px;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.logo:hover img {
  transform: rotate(15deg) scale(1.05);
}
.navbar{
    margin: 0 30px;
}
.navbar a{
    color: #336D82;
    font-size: 1.2rem;
    font-weight: bolder;
    margin-left: 35px;
}
.navbar a:hover{
    color: goldenrod;
}

.site-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.cannister {
  width: 100%;
  min-height: 80vh;
  margin: 0 auto;
  background: url("/img/bg0.jpg") no-repeat center center / cover;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.container {
  margin-top: 3rem;
  margin-left: 2rem;
  width: 40%;
  padding: 1rem;
}

.container h2 {
  font-size: 3rem;
  color: #FF7601;
  font-family: "Inknut Antiqua", serif;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease-in-out;
}

.container h2:hover {
  color: #e25f00;
}

.container p {
  font-size: 1.2rem;
  width: 90%;
  max-width: 800px;
  color: #444;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.container p:hover {
  transform: translateX(2px);
  color: #333;
}

.container a {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.8rem 1.6rem;
  background-color: #FF7601;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 118, 1, 0.2);
}

.container a:hover {
  background-color: #03A6A1;
  transform: scale(1.05);
}

/* 🌐 Responsive Breakpoints */
@media (max-width: 1024px) {
  .container {
    width: 70%;
    margin-left: 1.5rem;
  }

  .container h2 {
    font-size: 3rem;
  }

  .container p {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .cannister {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .container {
    width: 100%;
    margin: 0;
    padding: 1rem;
  }

  .container h2 {
    font-size: 2.6rem;
  }

  .container p {
    font-size: 1.5rem;
  }

  .container a {
    font-size: 1.5rem;
    padding: 0.8rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .container h2 {
    font-size: 2.2rem;
  }

  .container p {
    font-size: 1.4rem;
  }

  .container a {
    font-size: 1.4rem;
    padding: 0.7rem 1rem;
  }
}


.box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 5%;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.card {
  flex: 1 1 45%;
  box-sizing: border-box;
}

.card img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #670D2F;
  position: relative;
}

.card h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #670D2F;
  margin-top: 10px;
  border-radius: 2px;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.awards {
  background-color: #fff5f7;
  border-left: 5px solid #670D2F;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
}

.awards i {
  font-size: 2rem;
  color: #670D2F;
  margin-right: 10px;
  vertical-align: middle;
}

.awards h4 {
  font-size: 1.4rem;
  color: #670D2F;
  margin: 10px 0 5px;
}

.awards p {
  font-size: 1rem;
  color: #444;
}

.core {
  width: 100%;
  margin: 5rem auto;
  padding: 4rem 2rem;
  background: linear-gradient(145deg, #fff7f0, #ffffff);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.core h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 118, 1, 0.2);
}

.core > p {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 3rem;
  font-family: "Inter", sans-serif;
}

.value {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.core-cards {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.core-cards i {
  font-size: 3rem;
  color: red;
}

.core-cards:nth-child(2) i{
  color: #03A6A1;
}

.core-cards:nth-child(3) i{
  color: orangered;
}

.core-cards:nth-child(4) i{
  color: goldenrod;
}

.core-cards h4 {
  font-size: 1.3rem;
  color: #222;
  font-weight: bolder;
  font-family: "Inter", sans-serif;
}

.core-cards p {
  font-size: 1.1rem;
  color: #555;
  padding: 20px 5px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 1024px) {
  .core h2 {
    font-size: 3rem;
  }

  .core > p {
    font-size: 1.5rem;
  }

  .core-cards h4 {
    font-size: 1.7rem;
  }

  .core-cards p {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .core {
    padding: 3rem 1.5rem;
  }

  .core h2 {
    font-size: 2.6rem;
  }

  .core > p {
    font-size: 1.4rem;
  }

  .core-cards {
    padding: 1.8rem;
  }
}

@media (max-width: 480px) {
  .core h2 {
    font-size: 2.2rem;
  }

  .core > p {
    font-size: 1.3rem;
  }

  .core-cards {
    padding: 1.5rem;
  }

  .core-cards i {
    font-size: 2.5rem;
  }

  .core-cards h4 {
    font-size: 1.6rem;
  }

  .core-cards p {
    font-size: 1.3rem;
  }
}

.tabs-section {
    padding: 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: 2px solid #555;
    padding: 0.75rem 2rem;
    margin: 0 0.5rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
}

.tab-btn.active {
    background-color: #333;
    color: #fff;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card.flip .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-back {
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
    padding: 1rem;
}

.card-back a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}


.value {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.core-cards {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.core-cards i {
  font-size: 3rem;
  color: red;
}

.core-cards:nth-child(2) i{
  color: #03A6A1;
}

.core-cards:nth-child(3) i{
  color: orangered;
}

.core-cards:nth-child(4) i{
  color: goldenrod;
}

.core-cards h4 {
  font-size: 1.3rem;
  color: #222;
  font-weight: bolder;
  font-family: "Inter", sans-serif;
}

.core-cards p {
  font-size: 1.1rem;
  color: #555;
  padding: 20px 5px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 1024px) {
  .core h2 {
    font-size: 3rem;
  }

  .core > p {
    font-size: 1.5rem;
  }

  .core-cards h4 {
    font-size: 1.7rem;
  }

  .core-cards p {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .core {
    padding: 3rem 1.5rem;
  }

  .core h2 {
    font-size: 2.6rem;
  }

  .core > p {
    font-size: 1.4rem;
  }

  .core-cards {
    padding: 1.8rem;
  }
}

@media (max-width: 480px) {
  .core h2 {
    font-size: 2.2rem;
  }

  .core > p {
    font-size: 1.3rem;
  }

  .core-cards {
    padding: 1.5rem;
  }

  .core-cards i {
    font-size: 2.5rem;
  }

  .core-cards h4 {
    font-size: 1.6rem;
  }

  .core-cards p {
    font-size: 1.3rem;
  }
}

.certificates-section {
  padding: 3rem 2rem;
  background: #FEF3E2;
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 1200px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.certificates-section h2 {
  color: #BB3E00;
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(187, 62, 0, 0.4);
}

.flip-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  justify-items: center;
  padding-bottom: 2rem;
}

span{
  color: #FAD59A;
  font-size: 1.5rem;
}
.flip-card {
  background-color: transparent;
  width: 280px;
  height: 180px;
  perspective: 1200px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 18px;
  box-shadow: 0 12px 20px rgba(0,0,0,0.12);
  will-change: transform;
}

.flip-card:hover {
  transform: scale(1.07) translateY(-6px);
  box-shadow: 0 18px 30px rgba(255, 140, 0, 0.3);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 18px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.4);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

.flip-card-back {
  background: linear-gradient(135deg, #BB3E00, #FF7601);
  color: #fff;
  transform: rotateY(180deg);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(187, 62, 0, 0.6);
  font-weight: 600;
}

.flip-card-back h3 {
  margin-bottom: 0.7rem;
  font-size: 1.6rem;
  letter-spacing: 0.6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.flip-card-back p {
  font-size: 1rem;
  line-height: 1.4rem;
  color: #f1f1f1cc;
  font-weight: 400;
}

/* Modal styles */
.cert-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  overflow: auto;
  padding-top: 80px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cert-modal .modal-img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 0 40px #FF8C00;
  transition: transform 0.3s ease;
}

.cert-modal .modal-img:hover {
  transform: scale(1.05);
}

.cert-modal .close-btn {
  position: fixed;
  top: 25px;
  right: 40px;
  color: #FF8C00;
  font-size: 3.8rem;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
  text-shadow: 0 0 8px #FF8C00;
}

.cert-modal .close-btn:hover {
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .certificates-section h2 {
    font-size: 2.2rem;
  }

  .flip-card {
    width: 220px;
    height: 140px;
  }

  .flip-card-back h3 {
    font-size: 1.3rem;
  }

  .flip-card-back p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .flip-card-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .flip-card {
    width: 180px;
    height: 130px;
  }
}


.core-cards {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.core-cards i {
  font-size: 3rem;
  color: red;
}

.core-cards:nth-child(2) i{
  color: #03A6A1;
}

.core-cards:nth-child(3) i{
  color: orangered;
}

.core-cards:nth-child(4) i{
  color: goldenrod;
}

.core-cards h4 {
  font-size: 1.3rem;
  color: #222;
  font-weight: bolder;
  font-family: "Inter", sans-serif;
}

.core-cards p {
  font-size: 1.1rem;
  color: #555;
  padding: 20px 5px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 1024px) {
  .core h2 {
    font-size: 3rem;
  }

  .core > p {
    font-size: 1.5rem;
  }

  .core-cards h4 {
    font-size: 1.7rem;
  }

  .core-cards p {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .core {
    padding: 3rem 1.5rem;
  }

  .core h2 {
    font-size: 2.6rem;
  }

  .core > p {
    font-size: 1.4rem;
  }

  .core-cards {
    padding: 1.8rem;
  }
}

@media (max-width: 480px) {
  .core h2 {
    font-size: 2.2rem;
  }

  .core > p {
    font-size: 1.3rem;
  }

  .core-cards {
    padding: 1.5rem;
  }

  .core-cards i {
    font-size: 2.5rem;
  }

  .core-cards h4 {
    font-size: 1.6rem;
  }

  .core-cards p {
    font-size: 1.3rem;
  }
}


/* ====== TEAM SECTION ====== */
.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
}

.team-container h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #222;
  font-weight: 700;
}

.team-container > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.team-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .team-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-info {
    grid-template-columns: 1fr;
  }
}

.team-profile {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-profile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.image-wrapper {
  background: linear-gradient(135deg, #4b7bec, #ff6b81); /* Outer border gradient */
  padding: 5px; /* Thickness of outer border */
  border-radius: 50%;
  display: inline-block;
}

.team-profile img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff; /* Inner border color */
  padding: 3px; /* Thickness of inner border */
  display: block;
}


.team-profile h4 {
  font-size: 1.3rem;
  font-weight: bolder;
  color: #333;
  margin-bottom: 0.3rem;
}

.team-profile p {
  font-size: 1rem;
  font-weight: bolder;
  color: #7F55B1;
  margin-bottom: 1rem;
}

.social-icon {
  margin-top: 0.5rem;
}

.social-icon a {
  display: inline-block;
  margin: 0 0.4rem;
  font-size: 1.3rem;
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon a:hover {
  color: #4b7bec;
  transform: scale(1.2);
}


.achieve {
  min-height: 40vh;
  background: linear-gradient(-45deg, #fff7f0, #ffffff);
  padding: 60px;
  margin: 20px auto;
  border-radius: 15px;
  gap: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.trophies {
  width: 22%;
  margin-top: 2rem;
  text-align: center;
}

.trophies h4 {
  margin-top: 1.5rem;
  font-size: 2.5rem;
}

.trophies p {
  font-size: 1.3rem;
  color: #254D70;
}

.trophies i {
  color: #9FC87E;
  background-color: #FCEF91;
  border-radius: 50%;
  padding: 15px;
  font-size: 3rem;
}

/* Trophy Icon Overrides */
.trophies:nth-child(2) i {
  color: #FAD59A;
  background-color: #BB3E00;
}
.trophies:nth-child(3) i {
  color: #DDEB9D;
  background-color: #096B68;
}
.trophies:nth-child(4) i {
  color: #FFFBDE;
  background-color: #626F47;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .trophies {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .achieve {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .trophies {
    width: 100%;
  }

  .trophies h4 {
    font-size: 2rem;
  }

  .trophies p {
    font-size: 1.1rem;
  }

  .trophies i {
    font-size: 2.5rem;
    padding: 12px;
  }
}

.contact-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-intro-wrapper {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-heading {
  margin-bottom: 0.5rem;
  color: #04BCFF; /* Bright blue to match your button */
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 4px rgba(4, 188, 255, 0.3);
}

.contact-intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: #444;
  line-height: 1.5;
}


.contact-form {
  flex: 1 1 400px;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.contact-form h2 {
  margin-bottom: 1.5rem;
  color: #222;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 8px;
  border: 1.8px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #04BCFF;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.send-btn {
  background-color: #04BCFF;
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.send-btn:hover {
  background-color: #0295d9;
}

.contact-map {
  flex: 1 1 400px;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-map,
  .contact-form {
    flex: 1 1 100%;
  }
  .contact-map {
    min-height: 300px;
  }
}


footer{
    background: #101136;
}
.footer-section{
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.cards{
    width: 30%;
    padding: 0 20px;
    margin-top: 1rem;
    color: #E5D9F2;
}

.cards img{
    width: 100px;
    height: 50px;
    margin-left: 4.5rem;
}

.logo-title h3{
    font-size: 1.8rem;
    width: 80%;
    text-align: center;
}

.logo-title p{
    width: 80%;
    text-align: center;
    color: #969696;
}

.quick-links{
    margin: 1.5rem 10px;
}

.quick-links a{
    color: #969696;
    line-height: 2.5;
    opacity: 0.5;
    font-size: 1rem;
}

.quick-links a:hover{
    opacity: 1;
}

.subscribe{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.subscribe input{
    width: 60%;
    height: 30px;
    color: #082C38;
    outline: none;
}

.social{
    position: relative;
    display: flex;
    gap: 30px;
    margin: 1rem 5px;
}

.social a{
    color: #D9D9D9;
    font-size: 2rem;
    transition: 0.25s;
}

.social a:hover{
    color: #FF8C00;
    filter: drop-shadow(0 0 5px #01dbc2);
}

.subscribe a{
    width: 60%;
    text-align: center;
    color: #D9D9D9;
    padding: 10px 40px;
    border-radius: 10px;
    background-color: #484BE4;
}
.subscribe a:hover{
    color: #082C38;
    background-color: #9D4FFD;
}
.footer-sml-content{
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

hr{
    width: 95%;
    margin: 0 auto;
}

.terms{
    margin-left: 1rem;
}
.policy a{
    color: #969696;
}
.policy a:hover{
    color: white;
}
.terms p{
    color: #969696; 
}
.newsletter{
    width: 80%;
    margin: 1rem 0;
}

.terms span{
    color: #484BE4;
    font-size: 1.2rem;
    padding-left: 5px;
}

/* ============================= */
/* 🎯 Media Queries for Responsiveness */
/* ============================= */

@media screen and (max-width: 998px) {
    .footer-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .cards {
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }

    .cards img {
        margin-left: 0;
    }
    
    .subscribe input,
    .subscribe a {
        width: 80%;
    }

    .logo-title h3,
    .logo-title p,
    .newsletter p {
        width: 100%;
    }
    
    .footer-sml-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .terms {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .logo-title h3 {
        font-size: 1.4rem;
    }

    .cards:nth-child(1){
        display: none;
    }

    .cards:nth-child(4){
        margin-left: 2rem;
    }

    .quick-links a {
        font-size: 0.9rem;
    }

    .subscribe input,
    .subscribe a {
        width: 100%;
    }

    .footer-sml-content{
        width: 80%;
        margin: 0 auto;
    }

    .policy{
        display: none;
    }

    .newsletter{
        font-size: 1.1rem;
        margin: 1rem auto;
    }

    .terms span {
        font-size: 1rem;
    }
}
