@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap");

:root {
  --primary: #2f6fa3;
  --dark: #0b2c48;
  --white: #ffffff;
  --text: #000000;
  --radius: 32px;
  --transition: 0.4s ease;
}

body {
  font-family: "Assistant", sans-serif;
  background: var(--white);
}

section{
    overflow: hidden;
}

/* HEADER START*/

/* HEADER START */

.site-header {
  padding: 40px 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* NAV MENU */

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text) !important;
  font-weight: 500;
  font-size: 18px;
}

.nav-menu a:hover {
  color: var(--primary) !important;
  font-weight: 600;
}

.header-phone a {
    color: #212529;
	text-decoration: none;
}

.logo-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-box img {
  width: 120px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.phone-icon i {
    width: 50px;
    height: 50px; 
    background: #c9e7ff;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, #2f6fa3, #122a3d);
  color: white !important;
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  font-size: 20px;
}

.cta-btn .circle {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: 0.4s ease;
  transform: translateX(-8px);
}

.cta-btn:hover .circle {
  transform: translateX(6px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
}


@media (max-width: 992px) {
  .header-wrapper {
    flex-wrap: wrap;
    position: relative;
  }

  .hamburger {
    display: flex;
    order: 1;
  }

  .logo-box {
    position: relative;
    left: auto;
    transform: none;
    order: 2;
  }

  .header-right {
    order: 3;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 18px;
    display: none;
    padding: 20px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .nav-menu.active {
    display: flex;
  }

}

/* HEADER END*/

/* HERO SECTION START*/

.hero-section {
  margin-top: 10px;
}

.hero-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.hero-slide {
  height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url(./assets/hero-bg.png);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  max-width: 850px;
  padding: 20px;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.owl-item.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  margin: 18px 0 26px;
  opacity: 0.9;
  font-size: 20px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--dark);
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
}

.hero-btn .circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, #2f6fa3, #122a3d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-slider .owl-dots {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-slider .owl-dot span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 20px;
  display: block;
}

.hero-slider .owl-dot.active span {
  height: 18px;
  background: var(--primary);
}

/* HERO SECTION END*/

/* ABOUT SECTION START */
.about-section {
  padding: 60px 0 0;
}

.about-image img {
  width: 100%;
  max-width: 520px;
}

.about-small {
  font-size: 16px;
  letter-spacing: 1px;
  color: #000;
}

.about-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  margin: 10px 0 25px;
}

.about-title span {
  color: var(--primary);
}

.about-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--dark);
  background: white;
  font-size: 18px;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(to right, #2f6fa3, #122a3d);
  color: white;
}

.about-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 25px 0 0;
}

.about-content img {
  width: 160px;
  border-radius: 15px;
}

.about-content p {
  color: #575757;
  line-height: 1.7;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin: 25px 0;
}

.about-stats h3 {
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
}

.about-stats p {
  font-size: 16px;
  color: var(--dark);
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid var(--dark);
  text-decoration: none;
  color: var(--dark);
  font-size: 18px;
}

.about-btn i {
  background: linear-gradient(to right, #2f6fa3, #122a3d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.about-bottom {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 70px;
}

.about-bottom h2 {
  font-size: 60px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #1c3f5e;
}

.about-bottom i {
  font-size: 60px;
  margin-left: 10px;
}
/* ABOUT SECTION END  */

/* PRODUCTS SECTION START */

.products-section {
  background: linear-gradient(180deg, #0b2c48, #1b6aae);
  padding: 60px 70px;
  border-radius: 40px;
  margin: 80px auto;
  color: white;
}

.products-top {
  margin-bottom: 40px;
}

.section-tag {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.2;
}

.section-desc {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 560px;
}

.product-card {
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px;
  height: 100%;
}

.product-img {
  width: 200px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.product-content a {
    text-decoration: none;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content h4 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-content p {
  font-size: 16px;
  color: #575757;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .products-section {
    padding: 60px 30px;
  }

  .section-title {
    font-size: 36px;
  }

  .product-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-img {
    width: 100%;
    height: 180px;
  }
}

/* PRODUCTS SECTION END */

/* GALLERY SECTION START */
.gallery-section {
  background: #fff;
  overflow: hidden;
}

.gallery-small {
  font-size: 16px;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 20px;
}

.gallery-section h2 {
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
}

.gallery-section h2 span {
  color: var(--primary);
}

.gallery-section p {
  color: #575757;
  font-size: 18px;
  line-height: 1.7;
}

.gallery-carousel .gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
  margin-top: 50px;
}

.gallery-carousel .center-slide img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1.05);
}

.gallery-carousel .left-1 img {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.gallery-carousel .left-2 img {
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
}

.gallery-carousel .right-1 img {
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

.gallery-carousel .right-2 img {
  clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.gallery-nav button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--dark);
  background: white;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
  padding: 0
}

.gallery-nav button:hover {
  background-color: #c9e7ff;
  border: none;
}

@media (max-width: 991px) {
  .gallery-carousel .gallery-item img {
    clip-path: none !important;
    transform: none !important;
  }

  .gallery-carousel .gallery-item img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .gallery-carousel .gallery-item img {
    height: 260px;
  }
}

/* GALLERY SECTION END */

/* WHY SECTION START*/

.why-section {
  padding: 60px 0;
}

.why-wrapper {
  background: #c9e7ff;
  border-radius: 30px;
  padding: 60px;
  position: relative;
  background-image: url("./assets/why-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.why-small {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}

.why-content h2 {
  margin: 10px 0 40px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-card h5 {
  font-size: 24px;
  margin-top: 15px;
  color: var(--dark);
}

.why-card p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 10px;
}

.why-icon img {
  height: 35px;
}

.why-image {
  position: absolute;
  top: 14%;
}

@media (max-width: 992px) {
  .why-wrapper {
    padding: 40px;
  }

  .why-content h2 {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    margin-top: 40px;
    text-align: center;
  }
}
/* WHY SECTION END */

/* TESTIMONIALS SECTION START */
.testimonial-section {
  padding-top: 60px;
  background: #fff;
}

.test-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-top: 10px;
  max-width: 400px;
}

.test-title span {
  color: var(--primary);
}

.test-text {
  margin: 20px 0;
  font-size: 18px;
  color: #575757;
}

.know-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--dark);
  border-radius: 30px;
  text-decoration: none;
  color: var(--dark);
  font-size: 20px;
}

.know-btn i {
  color: white;
  background: linear-gradient(to right, #2f6fa3, #122a3d) !important;
  padding: 10px;
  border-radius: 999px;
}

.test-nav {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.test-nav button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid var(--dark);
  background: white;
  font-size: 20px;
  transition: var(--transition);
  padding: 0;
}

.test-nav button:hover {
  background-color: #c9e7ff;
  border: none;
}

.testimonial-group {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 10px;
  border: 1px solid #787878;
  border-left: 8px solid #787878;
  position: relative;
  transition: 0.3s;
}

.testimonial-card:hover {
  border: none;
  border-left: 8px solid #c9e7ff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-card img {
  width: 100px !important;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.stars i {
  color: #f5b400;
  margin-right: 2px;
}

.quote {
  position: absolute;
  right: 34px;
  top: 0;
  font-size: 50px;
  color: #ccc;
}

.content p {
  color: #575757;
  max-width: 350px;
  font-size: 16px;
}
/* TESTIMONIALS SECTION END */

/* BLOG SECTION START*/

.blog-section {
  background: linear-gradient(180deg, #2f6fa3, #122a3d);
  padding: 60px 70px;
  border-radius: 40px;
  margin: 80px auto;
  color: white;
  position: relative;
}

.blog-top {
  margin-bottom: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 14px;
  max-width: 350px;
}

.blog-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}

.blog-img img {
  object-fit: cover;
}

.blog-meta {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
  letter-spacing: 2px;
  font-weight: 600;
}

.blog-content h4 {
  font-size: 24px;
  color: #000;
  margin-bottom: 8px;
}

.blog-content p {
  font-size: 16px;
  color: #000;
}

.read-more {
  font-size: 18px;
  color: #000 !important;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary) !important;
}

.blog-slider-wrapper {
  position: relative;
}

.blog-nav {
  position: absolute;
  right: -55px;
  top: 75%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-nav button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
  padding: 0;	
	
}

.blog-nav button:hover {
  background: #c9e7ff;
}

@media (max-width: 992px) {
  .blog-section {
    padding: 60px 30px;
  }

  .section-title {
    font-size: 34px;
  }

  .blog-nav {
    right: -30px;
  }
}

/* BLOG SECTION END */

/* CONTACT SECTION START*/

.contact-section {
  padding: 60px 0;
}

.contact-tag {
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-title {
  margin: 10px 0 20px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-title span {
  color: var(--primary);
}

.contact-desc {
  color: #575757;
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 18px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d4d4d4;
  padding: 10px 0;
  background: transparent;
  outline: none;
  font-size: 16px;
}

.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 14px;
  height: 120px;
  resize: none;
  margin-top: 10px;
}

.submit-btn {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid var(--dark);
  background: white;
  color: var(--dark);
  font-weight: 500;
  font-size: 18px;
}

.submit-btn .circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(to right, #2f6fa3, #122a3d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(20% 0%, 100% 0%, 100% 80%, 80% 100%, 0% 100%, 0% 20%);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 35px;
}

.contact-form input, .contact-form select{
	width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #fff !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

select.wpcf7-form-control.wpcf7-select option {
    color: #000;
}

.wpcf7-response-output {
    color: #fff;
}

span.wpcf7-not-valid-tip {
    background: #fff;
    padding-left: 8px;
    border-radius: 8px;
}

@media (max-width: 992px) {
  .contact-title {
    font-size: 36px;
  }

  .contact-image {
    margin-top: 40px;
  }
}

/* CONTACT SECTION END */

/* GET IN TOUCH SECTION START*/
.touch-section {
  padding: 80px 0;
  background: #ffffff;
}

.map-box {
  border-radius: 25px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.touch-content {
  padding-left: 40px;
  position: relative;
}

.touch-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.touch-title span {
  color: var(--primary);
}

.touch-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  position: relative;
}

.touch-item p a {
    text-decoration: none;
    color: #000;
}

.touch-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 24px;
  background: white;
  flex-shrink: 0;
}

.touch-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: #c9d6e2;
}

.touch-item p {
  margin: 0;
  color: #000;
  line-height: 1.6;
  font-size: 18px;
}

@media (max-width: 992px) {
  .touch-content {
    padding-left: 0;
    margin-top: 40px;
  }
}
/* GET IN TOUCH SECTION END */

/* FOOTER START*/
.footer-section {
  background: linear-gradient(90deg, #0b2c48, #1b6aae);
  color: #fff;
  padding: 70px 0 20px;
}

.footer-about p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 300px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff30;
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #fff;
  color: #1c3f5e;
}

.footer-links h4,
.footer-hours h4,
.footer-newsletter h4 {
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  opacity: 0.8;
  font-size: 20px;
}

.footer-hours p {
  margin-bottom: 8px;
  font-size: 18px;
}

.footer-newsletter p {
  font-size: 18px;
  margin-bottom: 15px;
}

.newsletter-box {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.newsletter-box input {
  border: none;
  padding: 10px 15px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.newsletter-box button {
  border: none;
  background: transparent;
  padding: 0 15px;
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
}

.privacy {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 20px;
}

.footer-bottom p a {
    color: #fff;
}

/* FOOTER END */

/* ----------------------------------------ABOUT PAGE CSS START ------------------------------------------------- */

/* INNER HERO SECTION START */
.inner-hero {
  position: relative;
  background: url("./assets/hero-bg.png") center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inner-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(47, 111, 163, 0.5) 0%,
    rgba(18, 42, 61, 0.85) 100%
  );
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.inner-hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-breadcrumb {
  font-size: 20px;
}

.hero-breadcrumb a {
   color: #DCDCDC !important;
  text-decoration: none;
}

.hero-breadcrumb span {
  margin: 0 6px;
  color: #dcdcdc;
}
/* INNER HERO SECTION END */

/* MISSION SECTION START */

.mission-section {
  padding: 60px 0;
}


.mission-wrapper {
  background: linear-gradient(180deg, #0b2c48, #1b6aae);
  border-radius: 50px;
  padding: 70px 70px 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.mission-heading {
  max-width: 840px;
  margin: auto;
  margin-bottom: 60px;
}

.mission-small {
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
}

.mission-heading h2 {
  font-size: 52px;
  font-weight: 700;
  margin: 10px 0 15px;
}

.mission-heading p {
  opacity: 0.85;
  line-height: 1.7;
  font-size: 18px;
}

.mission-image {
  position: relative;
}

.mission-image img {
  width: 80%;
  border-radius: 40px;
  display: block;
}


.mission-badge {
  position: absolute;
  bottom: 20%;
  right: 20px;
  background: #f7b800;
  padding: 22px 28px;
  border-radius: 20px;
  text-align: left;
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.mission-badge h3 {
  font-size: 44px;
  margin: 0;
  font-weight: 700;
}

.mission-badge span {
  font-size: 24px;
  font-weight: 600;
}

.mission-text h3 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 600px;
}

.mission-text p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 25px;
}

.mission-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--dark);
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
}

.mission-btn i {
  background: linear-gradient(to right, #2f6fa3, #122a3d);
  color: white;
  height: 42px;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  word-wrap: 6px;
  border-radius: 50%;
  font-size: 20px;
}

/* MISSION SECTION END */

/* CORE VALUE SECTION START */

.core-values-section {
  padding: 100px 0;
}

.cv-small {
  font-size: 16px;
  letter-spacing: 1px;
  color: #000;
}

.cv-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  margin: 10px 0 25px;
}

.cv-image img {
  width: 100%;
  border-radius: 52px;
}

.cv-intro {
  line-height: 1.8;
  margin-bottom: 35px;
  margin-top: 45px;
  color: #575757;
}

.cv-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cv-icon img {
  width: 50px;
}

.cv-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: #c9e7ff;
  border-radius: 23px;
  transition: var(--transition);
}

.cv-card h4 {
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--dark);
}

.cv-card p {
  font-size: 16px;
  color: #575757;
  margin: 0;
  line-height: 1.6;
}

.cv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #a9c3db;
}
/* CORE VALUE SECTION END */

/* ----------------------------------------ABOUT PAGE CSS END --------------------------------------------------- */

/*--------------------------------- RESPONSIVE CSS -----------------------------*/
@media (max-width: 992px) {
	
	.hero-content h1 {
		font-size: 50px;
	}
	
	.why-content h2 br {
    	display: none;
	}
	
	.about-tabs {
    	flex-wrap: wrap;
	}
	
	.about-image {
		text-align: center;
		margin-bottom: 20px;
	}
	
	.about-bottom {
		gap: 30px;
	}
	
	.about-bottom h2 {
		font-size: 34px;
	}
	
	.about-bottom i {
		font-size: 30px;
	}
	
	h2.section-title {
		margin-bottom: 20px;
	}
	
	h2.section-title br {
		display: none;
	}
	
	.why-image {
		display: none;
	}
	
	h2.test-title{
		max-width: 100%
	}
	
	h2.test-title br {
		display: none;
	}
	
	.test-nav {
		margin-bottom: 30px;
	}

	.blog-section {
		padding-bottom: 90px !important;
	}
	
	.blog-nav {
		flex-direction: row;
		right: 0;
		top: 110%;
	}
	
	.why-card {
		margin-top: 25px;
	}
	
	.mission-heading h2 br {
		display: none;
	}
	
}

@media (max-width: 661px){
	
	.core-values-section {
		padding: 10px 0;
	}
	
	.hero-content h1 {
		font-size: 30px;
	}
	
	.hero-content p {
		font-size: 16px;
	}
	
	.hero-btn {
		font-size: 16px;
	}
	
	.cta-btn {
		font-size: 18px;
	}
	
	.about-bottom {
        gap: 8px;
    }
	
	.about-bottom h2 {
        font-size: 18px;
    }
	
	.about-bottom i {
        font-size: 20px;
    }
	
	.about-content {
		flex-direction: column;
		align-items: center;
	}
	
	.about-bottom {
    	display: none;
	}
	
	.about-stats {
		gap: 0;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.about-stats div {
    	text-align: center;
	}
	
	.mission-image img {
		width: 100%;
		border-radius: 20px;
		margin-bottom: 25px;
	}
	
	.mission-section {
		padding: 0 0 60px;
	}
	
	.mission-badge {
		position: static;
		margin-bottom: 25px;
	}
	
	.mission-heading h2 {
		font-size: 42px;
	}
	
	.mission-wrapper {
		padding: 70px 40px 80px;
	}
	
	input#noptin-form-1__submit {
		width: 100%;
	}
	
	.newsletter-box {
		display: block;
	}
	
	.noptin-form-field-wrapper.noptin-form-field-consent.noptin-optin-field-wrapper.noptin-optin-field-consent {
		text-align: center !important;
	}
	
	.phone-icon span{
		display:none;
	}
	
	.header-right {
		width: 100%;
		justify-content: space-between;
	}
	
	.site-header {
		padding: 20px 0 40px;
	}
	
}














