/* body */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --white-color: #f6f4f5;
  --beige-color: #d2c8bc;
  --table-color: #f0eff1;
  --black-color: #262721;
  --logo-beige-color: #6b4c3a;
  --primary-font: "Poppins", sans-serif;
  --logo-font: "DM Sans", sans-serif;
}

body {
  background: rgba(155, 168, 176, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  /* ensures full screen height but allows expansion if needed */
  /* font-size: calc(12px + 0.3vw); */
  font-family: var(--primary-font, Arial, sans-serif);
  box-sizing: border-box;
}

h1,
h2,
h3 {
  font-size: calc(1.2rem + 0.2vw);
}

/* HEADER STARTS*/
header {
  display: flex;
  border-radius: 0;
  justify-content: space-between;
  background: linear-gradient(to top, #0a0f33, #142881);
  align-items: center;
  margin: 0;
  padding-inline: 1.5rem;
  position: relative;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
}

ul {
  padding: 0.5rem 0;
}

.navbar-ul li a {
  color: rgb(221, 220, 220);
  letter-spacing: 0.08rem;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem 0 1rem 0;
  text-decoration: none;
}

.navbar-ul li a:hover {
  background-color: rgba(255, 255, 255, 0.103);
  font-weight: 600;
  transition: 400ms;
  color: #a4d0ff;
  cursor: pointer;
}

/* logo */

#logo {
  width: 11rem;
  /* height: auto; */
  margin: auto;
  font-size: 18px;
  font-family: var(--logo-font);
  font-weight: bold;
  color: var(--logo-beige-color);
}

/* Buttons */
/* From Uiverse.io by alexroumi */
.btn-header {
  padding: 8px 20px;
  border: unset;
  border-radius: 0.8rem;
  color: rgb(13, 0, 164);
  letter-spacing: 0.02rem;
  z-index: 1;
  background: #e8e8e8;
  text-decoration: none;
  position: relative;
  font-weight: 800;
  font-size: 1rem;
  /* -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27); */
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.2);
  transition: all 250ms;
  overflow: hidden;
}

.btn-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 9px;
  background-color: #140152;
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
}

.btn-header:hover {
  color: #e8e8e8;
  cursor: pointer;
}

.btn-header:hover::before {
  width: 100%;
}

.btn-header:active {
  scale: 0.95;
  transition: ease-in-out 300ms;
}

/* HEADER ENDS*/

/* SIDEBAR STARTS */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* sidebar fixed */
.sidebar {
  position: fixed;
  top: 0;
  /* width: 250px; */
  left: -54%;
  width: 48%;
  max-width: 20rem;
  height: 100vh;
  background: linear-gradient(to top, #02010a, #04052e);
  color: white;
  padding: 0.5rem;
  z-index: 1000;
  transition: left 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  max-width: auto;
  text-align: end;
  justify-content: flex-end;
  align-items: end;
  font-size: 1.2rem;
}

.sidebar-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0.2rem;
}

.sidebar-menu li {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  margin: 0.1rem 0;
  transition: all 250ms;
  border-radius: 1rem 0 1rem 0;
}

.sidebar-menu li:active {
  scale: 0.95;
}

.sidebar-menu li:hover {
  background-color: rgba(255, 255, 255, 0.103);
  font-weight: 600;
  transition: 400ms;
  color: #a4d0ff;
  cursor: pointer;
}

.sidebar-menu a {
  align-items: center;
  color: #ddd;
  text-decoration: none;
  padding: 8px 1px;
  font-size: 1rem;
  transition: color 0.3s;
}

.sidebar-menu i {
  font-size: 18px;
  margin-right: 12px;
  /* gap between icon and text */
  text-align: center;
}

.sidebar-menu a:hover {
  color: #4fa3ff;
}

/* SIDEBAR ENDS */

/* MEDIA QUERIES */

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
  #logo {
    width: 6rem;
    margin-left: 0.8rem;
  }

  .btn-header {
    padding: 6px 16px;
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: block;
    color: #e8edff;
    cursor: pointer;
  }

  header {
    padding: 0.9rem;
  }

  nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Footer mobile */

  .custom-footer {
    padding: 10px 14px !important;
  }

  .footer-top {
    flex-direction: row;
    gap: 1rem !important;
  }

  .contact-info {
    flex: 1 1 100%;
    /* Full width */
  }

  .footer-ul {
    display: flex;
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 0% !important;
    /* 2 columns */
    margin: 0.8rem !important;
  }

  .footer-bottom {
    margin-top: 0 !important;
    flex-direction: column;
    font-size: calc(12px + 0.2vw);
    text-align: center;
  }

  .app-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-subscribe input[type="email"] {
    width: 60vw;
  }

  .footer-subscribe button {
    width: calc(100% - 60vw);
    margin-top: 0.5rem;
  }
}

/* FOOTER STARTS */
.custom-footer {
  background: linear-gradient(to top, #02010a, #06063d);
  color: #ebebeb;
  font-family: "Segoe UI", sans-serif;
  padding: 28px 30px;
  border-radius: 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* padding-bottom: 40px; */
}

.footer-ul li {
  display: flex;
  color: rgba(216, 214, 214, 0.863);
  letter-spacing: 0.08rem;
  padding: 0.2rem 0;
  border-radius: 1rem 0 1rem 0;
}

.footer-ul li:hover {
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 300ms;
  translate: 0.1em;
  color: #ffffff;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col2 {
  flex: 1 1 400px;
}

.footer-col2 p i {
  margin-right: 0.3rem;
}

.footer-col2 h2,
p {
  margin-left: 0.5rem;
}

.footer-col h3,
.contact-info h2 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-links {
  display: flex;
}

.footer-col ul li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-col ul li a {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  color: rgba(216, 214, 214, 0.863);
  letter-spacing: 0.08rem;
}

.footer-col ul li:hover {
  color: #898d92;
}

.app-buttons {
  width: 10%;
  height: auto;
  padding-left: 0.3rem;
  display: flex;
  margin: 0;
}

.app-buttons img {
  width: 120px;
  height: auto;
}

.footer-subscribe {
  text-align: center;
  margin-top: 2rem;
  letter-spacing: 0.02rem;
}

.footer-subscribe input[type="email"] {
  padding: 10px;
  width: 280px;
  border-radius: 5px 0 0 5px;
  border: none;
}

.footer-subscribe button {
  padding: 10px 20px;
  border: none;
  border-radius: 0 5px 5px 0;
  background: #2962ff;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-subscribe button:hover {
  background: #0039cb;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #a3a3a3;
}

.footer-bottom a {
  letter-spacing: 0.01rem;
  color: #9e9e9e;
  text-decoration: none;
  transition: ease-in-out 400ms;
}

.footer-bottom a:hover {
  color: #c5bafff7;
}

.social-icons {
  margin-top: 10px;
}

.social-icons i {
  margin: 0 8px;
  font-size: 18px;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
}

.social-icons i.fa-envelope:hover {
  color: #d44638; /* Gmail red */
}

.social-icons i.fa-x-twitter:hover {
  color: #383838; /* X / Twitter black */
}

.social-icons i.fa-facebook:hover {
  color: #1877f2; /* Facebook blue */
}

.social-icons i.fa-youtube:hover {
  color: #ff0000; /* YouTube red */
}

/* FOOTER ENDS */

/* login page Start */

.card {
  width: 26rem;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.header {
  background: linear-gradient(to top, #0a0f33, #1c349e);
  padding: 25px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.login-h2 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #d8ebff;
}

.login-p {
  margin: 5px 3px;
  font-size: 14px;
  color: #d8ebff;
}

.form {
  padding: 20px;
}

label {
  display: block;
  text-align: left;
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.input-group {
  display: flex;
  align-items: center;
  /* border: 1px solid #ccc; */
  border-radius: 12px;
  padding: 10px;
  z-index: 1;
  background: #f9f9f9;
}

.forgot-page {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.login-span1 a {
  text-decoration: none;
}
.login-span1 a:hover {
  transform: scale(1.5);
}
.login-span1 {
  font-size: 12px;
  text-align: start;
  color: #0b14ffe2;
  margin-bottom: 10px;
}

select,
input {
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
}

select {
  margin-right: 8px;
}

.login-span {
  font-size: 12px;
  text-align: start;
  color: #ec3535e2;
  margin-bottom: 10px;
}

.btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background: #bbb;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.3s;
  letter-spacing: 0.1rem;
}

/* .btn:disabled {
  background: #bbb;
  cursor: not-allowed;
} */

.otp-inputs {
  display: flex;
  justify-content: space-evenly;
  margin: 2px 0;
  gap: 4;
}

.otp-inputs input {
  width: 45px;
  height: 45px;
  font-size: 20px;
  text-align: center;
  border: 2px solid #cecece;
  border-radius: 10px;
  outline: none;
}

.otp-inputs input:focus {
  border-color: #2cba31;
}

.link {
  font-size: 13px;
  color: #0e5398;
  cursor: pointer;
  text-align: start;
  display: inline-block;
}
#changeNumber {
  text-align: start;
}
#resendText {
  font-size: 0.9rem;
}
.footer {
  font-size: 12px;
  margin-top: 15px;
  color: #666;
}

.footer a {
  color: #1976d2;
  text-decoration: none;
}

.secure {
  margin-top: 8px;
  font-size: 12px;
  color: green;
}

.hidden {
  display: none;
}

#resendText {
  text-align: end;
  margin-right: 1.5rem;
}

/* contact us start */
.contact-section {
  margin: auto;
  text-align: center;
}
#contact {
  width: 96%;
  margin: auto;
}

.contact-section h1 {
  font-size: 2rem;
  color: rgb(13, 0, 164);
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.contact-box {
  flex: 1 1 45%;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.contact-box h3 {
  margin-bottom: 15px;
  color: rgb(13, 0, 164);
}

.contact-box p,
.contact-box li {
  margin: 10px 0;
  font-size: 15px;
}

.contact-box i {
  margin-right: 8px;
  color: #333;
}

.why-contact ul {
  list-style: none;
  padding-left: 0;
}

.why-contact li::before {
  content: "✔";
  color: #2ecc71;
  /* margin-right: 8px; */
}

.message-box {
  /* display: flex; */
  /* grid-template-columns: 1fr 1fr; */
  width: 100%;
  gap: 2rem;
  position: relative;
  background: #fff;
  /* padding: 30px; */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.message-box h3 {
  margin-bottom: 10px;
  color: rgb(13, 0, 164);
}

/* Form Container */
.contact-form {
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-flex {
  display: flex;
  gap: 2rem;
}

/* Input Fields */
.contact-form input,
.contact-form textarea {
  width: 80%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077ff;
  box-shadow: 0 0 5px rgba(0, 119, 255, 0.2);
  outline: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 1rem;
  margin-bottom: 15px;
  border: 1px solid #c6aeae;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-details {
  color: #0928d9 !important;
  font-weight: 500;
  letter-spacing: 0.02rem;
}

.btn-contact-form {
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #1a4ed1;
  color: white;
  cursor: pointer;
}

.btn-contact-form:hover {
  background-color: #163fa8;
}

.contact-form button {
  padding: 14px !important;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.map-container {
  margin-top: 30px;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.services-p {
  margin: 0 2.9rem;
  text-align: justify;
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* main page */

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    margin: 0;
  }

  #contact {
    width: 90%;
  }

  .services-p {
    margin: 0 1.6rem;
    text-align: justify;
  }

  .contact-grid {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-address {
    font-size: 1rem !important;
  }
  .map-container {
    /* margin: 1rem; */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

/* contact us end */

/* SERVICE SECTION START */

.section-title {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-weight: 600;
}

.ag-format-container {
  width: 98%;
  margin: auto;
}

.section-description {
  text-align: center;
  color: #0f0f92;
  font-weight: 500;
}
.service-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.text-start-services {
  text-align: start;
  text-indent: 0.5rem;
}
.ag-courses_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  padding: 0 0;
}
.ag-courses_item {
  -ms-flex-preferred-size: calc(33.33333% - 30px);
  flex-basis: calc(33.33333% - 30px);
  margin: 0 15px 40px;
  overflow: hidden;
  border-radius: 28px;
}
.ag-courses-item_link {
  display: block;
  padding: 30px 20px;
  background: linear-gradient(to top, #070320, #0c0c72);
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
  text-decoration: none;
  color: #fff;
}
.ag-courses-item_link:hover .ag-courses-item_bg {
  -webkit-transform: scale(10);
  -ms-transform: scale(10);
  transform: scale(10);
}
.ag-courses-item_title {
  /* min-height: 87px; */
  margin: 0 0 25px;
  text-decoration: none;
  overflow: hidden;

  font-weight: bold;
  font-size: 24px;
  color: #fff;

  z-index: 2;
  position: relative;
}
.ag-courses-item_date-box {
  font-size: 16px;
  color: #fff;

  z-index: 2;
  position: relative;
}
.ag-courses-item_date {
  font-weight: bold;
  color: #f9b234;

  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.ag-courses-item_bg {
  height: 128px;
  width: 128px;
  background-color: #f9b234;

  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;

  border-radius: 50%;

  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ag-courses_item:nth-child(2n) .ag-courses-item_bg {
  background-color: #3ecd5e;
}
.ag-courses_item:nth-child(3n) .ag-courses-item_bg {
  background-color: #e44002;
}
.ag-courses_item:nth-child(4n) .ag-courses-item_bg {
  background-color: #952aff;
}
.ag-courses_item:nth-child(5n) .ag-courses-item_bg {
  background-color: #cd3e94;
}
.ag-courses_item:nth-child(6n) .ag-courses-item_bg {
  background-color: #4c49ea;
}

.why-choose {
  /* background: #eef3ff; */
  list-style: none;
  padding: 80px;
  border-radius: var(--border-radius);
  margin: 40px 0;
  text-align: start;
}

.why-choose h3 {
  color: rgb(13, 0, 164);
  margin-bottom: 15px;
}

.lists-service ul {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
}

.why-choose li {
  margin-bottom: 10px;
  list-style: none;
}

.cta {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
}

.cta h3 {
  color: rgb(13, 0, 164);
  margin-bottom: 10px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  :root {
    --card-width: calc((100% - var(--card-gap)) / 2);
  }
}

@media screen and (max-width: 600px) {
  :root {
    --card-width: 100%;
  }

  .section-title {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 979px) {
  .ag-courses_item {
    -ms-flex-preferred-size: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
  .ag-courses-item_title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    margin: auto;
  }
}
@media only screen and (max-width: 639px) {
  .ag-courses_item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .ag-courses-item_title {
    min-height: 72px;
    line-height: 1;

    font-size: 20px;
  }
  .ag-courses-item_link {
    padding: 22px 40px;
  }
  .ag-courses-item_date-box {
    font-size: 16px;
  }
}

/* About */

.directors-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.director-card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.director-card.reverse {
  flex-direction: row-reverse;
}

.director-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.director-info {
  flex: 1;
  max-width: calc(100% - 200px);
}

.director-info h3 {
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.director-info .position {
  font-style: italic;
  margin: 5px 0 15px;
  color: #333;
}
.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 3rem;
}

.director-info p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-section {
  width: 96%;
  margin: auto;
}
.faq-section h1 {
  font-size: 2rem;
  color: rgb(13, 0, 164);
  margin-bottom: 10px;
}

.faq-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .director-card,
  .director-card.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .faq-section {
    width: 90%;
  }
  .director-info {
    max-width: 100%;
  }

  .director-info h3 {
    margin-top: 20px;
  }
  .service-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .why-choose {
    margin: 4px 0;
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* About End */

/* faq */
h1 {
  text-align: center;
  padding-top: 1rem;
}

.accordion {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.accordion input[type="radio"] {
  display: none;
}

.accordion-label {
  display: block;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #34495e;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.accordion-label:hover {
  background: #f0f4f8;
}

.accordion-label::after {
  content: "\f107"; /* Font Awesome down arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.accordion input:checked + .accordion-label::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  background: #f9fbfc;
}

.accordion input:checked ~ .accordion-content {
  max-height: 200px;
  padding: 20px;
}

.accordion-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  section h1 {
    font-size: 2rem;
  }

  .accordion-label {
    font-size: 1rem;
  }
}
/* faq ends */

/* hero  */
.hero {
  width: 100%;
  position: relative;
  background-color: #fefcff;
  color: white;
  font-family: "Roboto", sans-serif;
  padding: 125px 0;
}
.herocolor {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: radial-gradient(
      circle at 30% 70%,
      rgba(173, 216, 230, 0.35),
      transparent 60%
    ),
    radial-gradient(circle at 70% 30%, rgba(0, 34, 255, 0.119), transparent 60%);
}

.wrapper {
  width: 96%;
  height: auto;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content {
  width: 40%;
  max-width: 1200px;
  text-orientation: sideways;
}

.hero__title {
  line-height: 1.4;
  font-size: 3rem;
  background: linear-gradient(to top, #0a0f33, #1c349e);
  -webkit-background-clip: text; /* For Chrome, Safari */
  background-clip: text; /* Standard */
  color: transparent;
}

.hero__text {
  margin-block: 2em;
  line-height: 165%;
  font-size: 1.125rem;
  color: #0a045b;
}

.hero__btn {
  padding: 8px 20px;
  border: none;
  border-radius: 0.2rem;
  color: rgb(13, 0, 164);
  letter-spacing: 0.02rem;
  background: #0239ed25;
  text-decoration: none;
  position: relative;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.2);
  transition: all 250ms;
  overflow: hidden;
  display: inline-block;
  z-index: 0;
}

.hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 0.2rem;
  background-color: rgb(20, 1, 82);
  z-index: -1; /* Send it behind the text */
  transition: all 250ms ease;
}

.hero__btn:hover {
  color: #fff;
  cursor: pointer;
}

.hero__btn:hover::before {
  width: 100%;
}

.hero__btn:active {
  scale: 0.95;
  transition: transform 300ms ease-in-out;
}

.hero__img {
  width: 50%;
  /* max-width: 340px; */
  align-self: flex-start;
  border-radius: 1em;
}

.hero-section {
  width: 100%;
  margin: auto;
  padding: 30px 0;
  border-radius: 16px;
  background: linear-gradient(to bottom, #f0f4ff, #e8f0ff);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero_img_section {
  max-width: 100%;
  width: 96%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image {
  max-width: 100%;
  width: 600px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

/* Medium devices (tablets, 768px and down) */
@media (max-width: 768px) {
  .hero {
    padding: 4px 0 !important;
  }
  .wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0px;
  }
  .hero_img_section {
    max-width: 100%;
    width: 460px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .content,
  .hero__img {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .hero__text {
    font-size: 1rem;
    margin-block: 1.5em;
  }

  .hero__btn {
    padding: 0.5em 1.5em;
    font-size: 1em;
  }

  .hero__img {
    width: 94%;
    align-self: center;
    border-radius: 1em;
  }
}

/* Small devices (phones, 480px and down) */
@media (max-width: 480px) {
  .hero {
    padding: 80px 0;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__text {
    font-size: 0.95rem;
    margin-block: 1.2em;
  }

  .hero__img {
    width: 100%;
    border-radius: 1em;
  }
}

/* about */
.about-section {
  margin: 0 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.about-section h1 {
  font-size: 2rem;
  color: rgb(13, 0, 164);
}
.about-grids-section {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  margin: 0.5rem 0 0 0;
}
.section-pp {
  max-width: 1200px;
  margin: 10px auto;
  padding: 0px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  margin: auto;
  flex: 1 1 400px;
}

.about-text h1 {
  font-size: 32px;
  color: #0056b3;
  margin-bottom: 0px;
}

.about-section h2 {
  font-size: 1.2rem;
  color: rgb(87, 82, 149);
  margin-bottom: 10px;
}

.about-text p {
  text-orientation: sideways;
  font-size: 16px;
  line-height: 1.8;
  /* margin-bottom: 20px; */
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offerings {
  text-align: center;
  margin: 2rem 2.2rem;
  background: #fff;
  padding: 10px 30px 30px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.offerings h2 {
  font-size: 26px;
  color: #004080;
  margin-bottom: 20px;
}

.offerings-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.offerings-list div {
  background: #f8fbff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.offerings-list div:hover {
  transform: translateY(-5px);
}

.offerings-list div img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.offerings-list div p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

@media (max-width: 768px) {
  .about-section {
    margin: 0 1.2rem;
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  .about-grids-section {
    margin: 0;
    text-align: justify;
    flex-direction: column-reverse;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }

  .about-text {
    flex: 1 0 50px;
    justify-content: center;
    text-align: center;
  }

  .about-text h1 {
    font-size: 26px;
  }

  .offerings {
    margin: 2rem 1.05rem;
  }
  .offerings h2 {
    font-size: 22px;
  }

  .section-pp {
    padding: 15px 20px;
    text-align: justify;
    text-orientation: sideways;
  }

  .section-pp ul {
    padding: 15px 20px;
  }
}

/* carousel */

.spotlight-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 16px;
  min-height: 50vh;
}

.spotlight-carousel {
  max-width: 1200px;
  width: 50%;
}

.carousel-wrapper {
  position: relative;
}

.carousel-container {
  overflow: hidden;
  border-radius: 24px;
  /* border: 2px solid #ffd700; */
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  flex-shrink: 0;
}

.project-card {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.01);
}

.card-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9),
    rgba(22, 33, 62, 0.9)
  );
  opacity: 0.9;
}

.background-image {
  position: absolute;
  inset: 0;
  opacity: 1;
}

.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
  color: #efefef;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

/* Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.indicator {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #6b7280;
}

.indicator.active {
  background: #4652fd;
}

.indicator:hover {
  background: #9ca3af;
}

.indicator.active:hover {
  background: #3b3bff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-card {
    height: 400px;
  }
  .carousel-btn {
    padding: 8px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .carousel-prev {
    left: 8px;
  }
  .spotlight-carousel {
    max-width: 1200px;
    width: 96%;
  }

  .carousel-next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .spotlight-section {
    padding: 16px 8px;
  }
}

.accordion input[type="checkbox"] {
  display:none;
}
