@import url(/assets/css/style.css);


/* ==============================*/

/* HEADER */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: background-color 0.3s ease;
}

header .container {
  padding: 20px;
}

.current-menu-item a {
  color: var(--primary-color) !important;
}

header.scrolled {
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 30px 0 rgb(0 0 0 / 10%);
}

header.scrolled .nav li a {
  color: var(--text-color);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}

header .logo-link img {
  width: 170px;
  height: auto;
}

header .nav {
  position: relative;
  margin-right: 2rem;
  width: auto;
  height: auto;
  display: flex;
  gap: 0.5rem;
}

.nav li a {
  font-size: 15px;
  padding: 6px 12px 1px 12px;
  border-bottom: 5px solid transparent;
  border-radius: 20px;
}

.nav li a:hover {
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.menu-button,
.sidebar {
  display: none;
}


@media screen and (max-width: 1200px) {
  header .logo-box {
    margin-left: 1rem;
  }

  header .nav {
    margin-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .logo-box .logo-text {
    font-size: 18px;
  }


  header {
    transition: all 0.3s ease;
  }

  .header-btn {
    display: none;
  }

  header .nav {
    display: none;
  }

  .menu-button {
    display: block;
    position: relative;
    margin-right: 0;
    width: 2.3rem;
    height: 2.3rem;
    font-size: 24px;
    border-radius: 8px;
    border: none;
    background-color: transparent;
  }

  .menu-button i {
    color: var(--secondary-color);
  }

  header.scrolled .menu-button i {
    color: var(--primary-color);
  }

  .menu-button:hover {
    transition: 0.3s ease;
    cursor: pointer;
  }

  .menu-button:focus {
    transition: 0.3s ease;
    cursor: pointer;
  }

  .mobile-header-btn a {
    background-color: var(--secondary-color);
    color: white !important;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 12px 0 12px 1rem;
    font-size: 16px;
    border: 1px solid #eee;
    text-transform: uppercase;
    margin: 3px 5px;

  }
  .mobile-header-btn svg {
    fill: white;
  }
  .sidebar {
    position: fixed;
    right: 0;
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 1100000;
    background-color: white;
  }

  @keyframes sidebarIn {
    0% {
      opacity: 0;
      transform: translateX(25rem);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes sidebarOut {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
      transform: translateX(30rem);
    }
  }

  .sidebar .sidebar-header {
    position: relative;
    width: 100%;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid;
  }

  .sidebar .sidebar-header .logo {
    width: 130px;
    height: auto;
  }

  .sidebar-header .sidebar-title {
    position: relative;
    margin-left: 1rem;
    font-size: 22px;
    font-weight: 600;
  }

  .sidebar-header .close-button {
    margin-right: 1rem;
    width: 2.3rem;
    height: 2.3rem;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    background-color: var(--secondary-color);
  }

  .sidebar-header .close-button i {
    color:white;
  }

  .close-button:hover {
    transition: 0.3s ease;
    cursor: pointer;
  }

  .close-button:focus {
    transition: 0.3s ease;
    cursor: pointer;
  }

  .sidebar li {
    position: relative;
    margin-right: 10px;

  }

  .sidebar li a {
    display: flex;
    width: 100%;
    padding: 12px 0 12px 1rem;
    font-size: 16px;
    border: 1px solid #eee;
    color: var(--text-color);
    margin: 3px 5px;
  }

  .sidebar li :hover {
    transition: 0.3s ease;
    cursor: pointer;
  }

  .sidebar li :focus {
    transition: 0.3s ease;
    cursor: pointer;
  }

  .sidebar .sidebar-links {
    margin: 20px 10px;
  }

  .sidebar .sidebar-links .call-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    margin-bottom: 10px;
  }

  .sidebar .sidebar-links .call-link a .number-list {
    word-wrap: break-word;
  }

  .sidebar .sidebar-links .call-link a span {
    line-height: 30px;
  }

  .sidebar .sidebar-links .call-link i {
    background-color: #009ba320;
    color: var(--primary-color);
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
  }

  .sidebar .sidebar-links .sidebar-social-link .social-link-head {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .sidebar .sidebar-links .sidebar-social-link a i {
    background-color: #0096db23;
    color: var(--secondary-color);
    padding: 13px;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
  }
}



/* BANNER */

.banner-sec {
  background-color: #b3d98e30;
  margin: 20px;
  position: relative;
  min-height: 95vh;
  padding: 50px 0px;
  border-radius: 30px;
  display: flex;
  /* box-shadow: 0 3px 30px 0 rgb(0 0 0 / 10%); */
  overflow: hidden;
}

/* Circle in bottom-left */
.banner-sec::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: #60a5fa13;
  border-radius: 50%;
  z-index: -1;
}

/* Circle in top-right */
.banner-sec::after {
  content: "";
  position: absolute;
  top: -199px;
  right: -165px;
  width: 500px;
  height: 500px;
  background: #60a5fa13;
  border-radius: 50%;
  z-index: -1;
}

.banner-sec .left h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-sec .left h1 span {
  color: var(--secondary-color);
}

.banner-sec .left p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

.banner-sec .left ul {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.banner-sec .left ul li {
  display: flex;
  gap: 5px;
  align-items: center;
}

.banner-sec .left ul li span {
  color: var(--text-color);
  font-size: 12px;
}

.banner-sec .left ul li i {
  font-size: 12px;
  color: var(--secondary-color);
}

.banner-sec .domain-search {
  display: flex;
  max-width: 560px;
  background-color: white;
  border-radius: 5px;
  padding: 4px;
}

.banner-sec .domain-search input {
  flex: 1;
  padding: 12px 15px;
  font-size: 15px;
  outline: none;
  border: none;
}

.banner-sec .domain-search input::placeholder {
  color: #464646;
}

.banner-sec .domain-search button {
  padding: 12px 15px;
  display: flex;
  gap: 8px;
  align-items: center;
  border: none;
  border-radius: 3px;
  background: var(--primary-color);
  color: var(--text-color);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-sec .domain-search button:hover {
  background: var(--secondary-color);
  color: white;
}

@media (max-width:768px) {
  .banner-sec {
    margin: 0px;
    border-radius: 0px;
    padding: 120px 0px 20px 0px;
    min-height: auto;
  }

  .banner-sec .container {
    margin: 0px 4px;
  }

  .banner-sec .domain-search input {
    padding: 10px;
    font-size: 14px;
  }

  header .container {
    padding: 0px;
    margin: 0px 15px;
  }

  header .logo-link img {
    width: 130px;
  }

  .banner-sec .left h1 {
    font-size: 38px;
  }

  .banner-sec .domain-search button {
    font-size: 12px;
  }

  .banner-sec .domain-search button {
    padding: 10px;
  }

  .banner-sec .left ul {
    flex-flow: row wrap;
  }
}


/* FEATURES */

.features {
  padding: 60px 0px;
}

.features .head {
  margin-bottom: 50px;
}

.features .head h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 73px;
}

.features .head p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #64748B;
  line-height: 30px;
}

.features .card {
  border: solid 1px var(--primary-color);
  padding: 20px 20px 40px 20px;
  border-radius: 12px;
  background: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.features .card:hover {
  background-color: var(--secondary-color);
}

.features .card i {
  font-size: 21px;
  border: solid 1px var(--secondary-color);
  padding: 10px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.features .card:hover i {
  background: #fff;
  color: var(--secondary-color);
}

.features .card h3 {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.features .card:hover h3 {
  color: #fff;
}

.features .card p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.features .card:hover p {
  color: #f1f5f9;
  /* light text for contrast */
}

@media (max-width:768px) {
  .features .head h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .features {
    padding: 20px 0px;
  }

  .features .card {
    margin-bottom: 10px;
    padding: 15px;
  }
}


/* FOOTER */
footer {
  background-color: #b3d98e22;
  padding-top: 60px;
}

footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

footer .top .logo img {
  width: 160px;
}

footer .top .quick-links ul {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 8px;
}
footer .top .quick-links ul li a{
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 30px;
}
footer .top .quick-links ul li a:hover{
  background-color: var(--primary-color);
}
footer .top .social-icons ul {
  display: flex;
  justify-content: end;
  gap: 10px;
}

footer .top .social-icons ul li a i {
  font-size: 12px;
  padding: 12px;
  border: solid 1px var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  width: 38px;
  height: 38px;
  text-align: center;
  transition: .3s ease-in-out;
}

footer .top .social-icons ul li a i:hover {
  background-color: var(--secondary-color);
  color: white;
}

footer .action-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .action-btn .btn {
  display: flex;
  gap: 15px;
}

footer .action-btn .btn a {
  padding: 8px 20px;
  display: flex;
  gap: 5px;
  align-items: center;
  border-radius: 30px;
}

footer .action-btn .btn a.btn-1 {
  background-color: var(--secondary-color);
  border: solid 1px var(--secondary-color);
}

footer .action-btn .btn a.btn-1 span {
  color: white;
  font-size: 14px;
}

footer .action-btn .btn a.btn-1 svg {
  color: white;
}

footer .action-btn .btn a.btn-2 {
  background-color: white;
  border: solid 1px var(--secondary-color);
}

footer .action-btn .btn a.btn-2 span {
  color: var(--secondary-color);
  font-size: 14px;
}

footer .action-btn .btn a.btn-2 svg {
  color: var(--secondary-color);
}

footer .copyright {
  padding: 18px 0px;
  border-top: solid 1px #DFDFDF;
  text-align: center;
  margin-top: 50px;
}




/* ABOUT */

.about-sec {
  padding: 60px 0;
}

.about-sec .left .image {
  position: relative;
  display: inline-block;
}

.about-sec .left .image .main-img {
  display: block;
  max-width: 100%;
  border-radius: 8px;
}

/* Position the icons */
.about-sec .left .image .icons img {
  position: absolute;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* Top-left icon (slow float up-down) */
.about-sec .left .image img.icon-1 {
  top: 10px;
  left: 10px;
  width: 180px;
  animation-name: float1;
}

/* Top-right icon (side-to-side sway) */
.about-sec .left .image img.icon-2 {
  top: 50px;
  right: 70px;
  width: 70px;
  animation-name: float2;
}

/* Bottom-left icon (diagonal float) */
.about-sec .left .image img.icon-3 {
  bottom: 60px;
  left: 40px;
  width: 70px;
  animation-name: float3;
}

/* Keyframes */
@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, -10px);
  }
}

.about-sec .right h2 {
  color: var(--text-color);
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 60px;
}

.about-sec .right .list-item {
  margin-bottom: 20px;
}

.about-sec .right .list-item .head {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
}

.about-sec .right .list-item .head span {
  color: white;
  font-size: 18px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 11px;
  text-align: center;
  font-weight: 600;
}

.about-sec .right .list-item .head h3 {
  font-size: 20px;
  font-weight: 600;
}

.about-sec .right .list-item p {
  color: #051610;
}

@media (max-width:768px) {
  .about-sec .right h2 {
    font-size: 28px;
    line-height: 45px;
  }
  .about-sec .left .image img.icon-1{
    width: 100px;
  }
  .about-sec .left .image img.icon-2{
    width: 50px;
  }
  .about-sec .left .image img.icon-3{
    width: 50px;
  }
  .about-sec{
    padding: 30px 0px;
  }
}

/* TEMPLATE SEC */

.template-sec {
  padding: 60px 0;
  background: linear-gradient(#b3d98e24, #FFFFFF, #1d665d26);
}

.template-sec .head {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-sec .head .title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.template-sec .head .desc {
  font-size: 16px;
  color: var(--text-color);
}

.template-sec .swiper-slide a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  aspect-ratio: 4 / 2;
}


.template-sec .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 10px;
  border: solid 4px #DFEBE0;
}

.template-sec .swiper-nav {
  display: flex;
  gap: 12px;
}

.template-sec .swiper-button-prev,
.template-sec .swiper-button-next {
  position: static;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #b3d98e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.template-sec .swiper-button-prev svg,
.template-sec .swiper-button-next svg {
  width: 28px;
  color: black;
}

.template-sec .swiper-button-prev:hover,
.template-sec .swiper-button-next:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

/* Remove default arrow icons */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.template-sec .swiper-button-prev:hover svg,
.template-sec .swiper-button-next:hover svg {
  fill: #fff;
}

.template-sec .custom-theme-cta {
  border: solid 2px var(--secondary-color);
  border-radius: 20px;
  margin-top: 25px;
  padding: 50px 30px;
}

.template-sec .custom-theme-cta .left h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.template-sec .custom-theme-cta .left p {
  color: var(--text-color);
}

.template-sec .custom-theme-cta .right {
  display: flex;
  justify-content: end;
}
@media (max-width:768px) {
  .template-sec .head .title{
    font-size: 28px;
  }
  .template-sec .swiper-button-prev, .template-sec .swiper-button-next{
    width: 30px;
    height: 30px;
  }
  .template-sec .swiper-button-prev svg, .template-sec .swiper-button-next svg{
    width: 12px;
  }
  .template-sec .head{
    flex-direction: column;
  }
  .template-sec .head .content{
    margin-bottom: 20px;
  }
  .template-sec .custom-theme-cta{
    padding: 10px 20px;
  }
}


/* FORM SECTION */

.enquire-form {
  padding: 40px 0px;
}

.enquire-form .container {
  background-color: #d0d0d02d;
  border-radius: 15px;
  padding: 20px;
}

.enquire-form .left {
  background-color: var(--secondary-color);
  padding: 25px 60px;
  border-radius: 12px;
}

.enquire-form .left .list li {
  border-bottom: solid 1px #ffffff38;
  padding: 20px 0px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.enquire-form .left .list li:last-child {
  border: none;
}

.enquire-form .left .list li .icon i {
  color: white;
  background-color: rgba(255, 255, 255, 0.144);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  padding: 22px;
  font-size: 14px;
}

.enquire-form .left .list li a {
  font-size: 16px;
  font-weight: 500;
  color: white;
}
.enquire-form .left .social-icons{
  margin-top: 40px;
}
.enquire-form .left .social-icons h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 15px;

}

.enquire-form .left .social-icons ul {
  display: flex;
  gap: 10px;
  align-items: center;
}

.enquire-form .left .social-icons ul li a i {
  width: 39px;
  height: 39px;
  border: solid 1px white;
  border-radius: 50%;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 13px;
}

.enquire-form .left .social-icons ul li a i:hover {
  background-color: white;
  color: var(--secondary-color);
}

.enquire-form .right .form-group {
  margin-bottom: 20px;
}

.enquire-form .right .form-group .label {
  margin-bottom: 3px;
  color: var(--text-color);
}

.enquire-form .right .form-group .form-control {
  width: 100%;
  background-color: white;
  padding: 12px;
  margin-top: 4px;
  border-radius: 5px;
  border: solid 1px #dddddd;
}

.enquire-form .right h2 {
  margin-bottom: 20px;
}

.enquire-form .right .form-group.btn {
  display: flex;
  justify-content: end;
}

.enquire-form .right .form-group button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 3px;
  border: none;
  outline: none;
  transition: ease-in-out .3s;
}

.enquire-form .right .form-group button span {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
}

.enquire-form .right .form-group button svg {
  color: var(--text-color);
}

.enquire-form .right .form-group button:hover {
  background-color: var(--secondary-color);
}

.enquire-form .right .form-group button:hover span {
  color: white;
}

.enquire-form .right .form-group button:hover svg {
  color: white;
}

@media (max-width:768px) {
  .enquire-form .container {
    padding: 0px;
  }
  .enquire-form .left {
    padding: 7px 10px 20px 7px;
    margin-bottom: 20px;
  }
  .enquire-form .left .list li {
    padding: 10px 0px;
  }
  .enquire-form .left .list li .icon i {
        width: 40px;
    height: 40px;
    padding: 15px;
    font-size: 11px;
  }
  .enquire-form .right h2{
    font-size: 20px;
  }
  .enquire-form .right .form-group {
    margin-bottom: 15px;
  }
  .enquire-form .left .list li {
    gap: 10px;
  }
  footer .top{
    gap: 20px;
    margin-bottom: 30px;
  }
  footer .action-btn{
    flex-flow: column;
  }
  footer .top .social-icons ul{
    justify-content: center;
  }
  footer .top .logo{
    text-align: center;
  }
}



/* SEARCH OVERLAY */

.overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 42, 100, 0.98); /* your secondary color */
  color: #fff;
  transition: top 0.4s ease-in-out;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* When active */
.overlay.active {
  top: 0;
}

/* Overlay content */
.overlay-content {
  max-width: 600px;
  width: 100%;
  padding: 20px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
}

/* Search Form */
.overlay-search {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.overlay-search input {
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  outline: none;
  width: 70%;
}

.overlay-search button {
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background: var(--secondary-color); /* your primary color */
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.overlay-search button:hover {
  background: #2a9cc9;
}




/* BREADCRUMB */

.breadcrumb-sec {
  background-color: #b3d98e30;
  margin: 20px;
  position: relative;
  padding: 150px 0px 100px 0px;
  border-radius: 30px;
  display: flex;
  /* box-shadow: 0 3px 30px 0 rgb(0 0 0 / 10%); */
  overflow: hidden;
}

/* Circle in bottom-left */
.breadcrumb-sec::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: #60a5fa13;
  border-radius: 50%;
  z-index: -1;
}

/* Circle in top-right */
.breadcrumb-sec::after {
  content: "";
  position: absolute;
  top: -199px;
  right: -165px;
  width: 500px;
  height: 500px;
  background: #60a5fa13;
  border-radius: 50%;
  z-index: -1;
}
.breadcrumb h1{
  font-size: 20px;
}


@media (max-width:768px) {
  .breadcrumb-sec{
    margin: 0px;
    border-radius: 0px;
    padding: 100px 0px 60px 0px;
    justify-content: center;
  }
  .breadcrumb-sec h1{
    font-size: 25px;
  }
}

/* ===== Policy Page Section ===== */
.policy-content {
  padding: 80px 0;
}

.policy-content .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Heading Area ===== */
.policy-content .head {
  text-align: center;
  margin-bottom: 25px;
}

.policy-content .head h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  position: relative;
}

.policy-content .head h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 3px;
}

.policy-content .head p {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 0;
}

/* ===== Content Paragraphs ===== */


.policy-content .policy-para p {
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--secondary-color);
}

.policy-content .policy-para strong {
  color: #000;
  font-weight: 600;
}

.policy-content .policy-para a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-content .policy-para a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

/* ===== Unordered List Styling ===== */
.policy-content .policy-para ul {
  padding-left: 20px;
  margin-top: 10px;
}

.policy-content .policy-para ul li {
  margin-bottom: 14px;
  line-height: 1.8;
  color: #444;
  position: relative;
  padding-left: 10px;
  list-style: circle;
}

/* Optional: custom bullet style */
.policy-content .policy-para ul li::marker {
  color: var(--secondary-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .policy-content {
    padding: 60px 0;
  }

  .policy-content .head h2 {
    font-size: 1.8rem;
  }


 .policy-content .policy-para p,
  .policy-content .policy-para li {
    font-size: 0.95rem;
  }
}



/* ABOUT US */

/* ===========================
   ABOUT CONTENT SECTION
   =========================== */
.about-content-section {
  padding: 80px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
  color: #222;
}

.about-content-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- HEADER ---------- */
.about-content-section .head {
  text-align: center;
  margin-bottom: 60px;
}

.about-content-section .head h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  position: relative;
}

.about-content-section .head h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--secondary-color);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.about-content-section .head p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

/* ---------- LAYOUT ---------- */


.about-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-info strong {
  color: #000;
}

.about-info em {
  color: var(--secondary-color);
  font-style: normal;
  font-weight: 500;
}
.about-info .about-buttons{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-flow: row wrap;
}
/* ---------- BUTTONS ---------- */
.about-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.about-actions a {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: #005fcc;
}

.btn-outline {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
.about-highlights {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.highlight-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.highlight-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.highlight-item {
  background: #f9fafb;
  border-radius: 12px;
  height: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  box-shadow: inset 0 0 0 1px #e5e7eb;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: #eef2ff;
  box-shadow: inset 0 0 0 1px #6366f1;
  color: #111827;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  
.about-highlights{
  margin-top: 20px;
}
  .about-content-section .head h2 {
    font-size: 2.2rem;
  }
.highlight-grid .col-md-4{
  margin-bottom: 15px;
}
.highlight-item{
  padding: 20px 10px;
}
.highlight-card{
  box-shadow: none;
  padding: 0px;
}
.about-content-section{
  padding: 20px 0px;
}
}

