/* ===================================
   GOOGLE FONT
=================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* ===================================
   GLOBAL RESET
=================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #ffffff;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

/* ===================================
   CONTAINER
=================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===================================
   NAVBAR
=================================== */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.navbar .logo {
  height: 85px;
  margin-top:5%;
  width: auto;
}
/* ===================================
   GLOBAL BUTTON STYLE
=================================== */

.hero-btn,
.continue-button a,
.select-package a,
.cta-btn a,
.portfolio-btn a {
  background: linear-gradient(135deg, #3683ab, #2c6f92);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(54, 131, 171, 0.35);
  transition: all 0.3s ease;
}

/* Hover Effect */
.hero-btn:hover,
.continue-button a:hover,
.select-package a:hover,
.cta-btn a:hover,
.portfolio-btn a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(54, 131, 171, 0.45);
  background: linear-gradient(135deg, #2c6f92, #1f5775);
}

/* Active Click Effect */
.hero-btn:active,
.continue-button a:active,
.select-package a:active,
.cta-btn a:active,
.portfolio-btn a:active {
  transform: translateY(1px);
  box-shadow: 0 5px 12px rgba(54, 131, 171, 0.3);
}
/* ===================================
   HERO SECTION
=================================== */

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.hero-btn {
  background: #3683ab;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
}

.hero-btn:hover {
  background: #fff;
  color: #3683ab;
}

/* ===================================
   SECTION SPACING
=================================== */
.portfolio-btn {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
section,
.about-section,
.our-services,
.best-plans {
  padding: 35px 0;
}

/* ===================================
   ABOUT SECTION
=================================== */

.about-contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.box-about {
  text-align: center;
}

.box-about h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.box-about p {
  margin-bottom: 15px;
}



.continue-button a {
  background: #3683ab;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  display: inline-block;
}

/* ===================================
   SERVICES SECTION PROPER LAYOUT
=================================== */

/* SECTION TAG */
.section-tag {
  display: inline-block;
  background: #eaf4fa;
  color: #3683ab;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* TITLE */
.section-title {
	
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #1a1a1a;
}

.section-title span {
  color: #3683ab;
}

/* SUBTEXT */
.section-subtext {
  font-size: 17px;
  color: #666;
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* SERVICES LIST */
.services-list {
  display: grid;
  gap: 14px;
}

.service-item {
  font-size: 17px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  transition: 0.3s ease;
}

.service-item:hover {
  color: #3683ab;
  transform: translateX(5px);

}

.image-services {
  flex: 0 0 48%;
}

.image-services img {
  height: 420px;
  border-radius: 24px;
  object-fit: cover;
}
/* SERVICES SPLIT LAYOUT */

.services-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.box-description {
  flex: 1;
  max-width: 520px;
  text-align: left;
}

.image-services {
  flex: 0 0 48%;
}
/* ===================================
   PRICING
=================================== */

/* ================================
   MODERN BEST SERVICES SECTION
================================ */

.best-plans {
  padding: 70px 0;
  background: #f8fbfd;
  text-align: center;
}

/* Heading */
.best-plans h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.blog-container p {
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 17px;
  color: #666;
}

/* Cards Container */
.plan-contents {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.plan-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
}

/* Hover Effect */
.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* Image */
.plan-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

/* Content */
.plan-content {
  padding: 30px 25px;
  text-align: center;
}

.plan-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

/* Features */
.features p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

/* Button */
.select-package {
  margin-top: 25px;
}

.select-package a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #3683ab, #2c6f92);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(54, 131, 171, 0.3);
  transition: 0.3s ease;
}

.select-package a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(54, 131, 171, 0.4);
}


/* ===================================
   FOOTER
=================================== */

/* ===================================
   MODERN FOOTER DESIGN
=================================== */

.ftr-m {
  background: linear-gradient(135deg, #f5f9fc, #eaf3f8);
  padding: 70px 20px 40px;
  text-align: center;
}

/* Logo */
.footer-logo {
  width: 160px;
  margin: 0 auto 25px;
}

/* Links */
.cta-links {
  margin-bottom: 30px;
}

.cta-links a {
  margin: 0 12px;
  font-size: 15px;
  color: #3683ab;
  font-weight: 500;
}

.cta-links a:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-content {
  max-width: 900px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  text-align: left;
}

/* Text */
.cta-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.cta-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 520px;
}

/* Button */
.cta-btn a {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #3683ab, #2c6f92);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(54, 131, 171, 0.35);
  transition: 0.3s ease;
}

.cta-btn a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(54, 131, 171, 0.45);
}

/* Divider */
.footer-line {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 30px auto;
  max-width: 1100px;
}

/* Bottom Copyright */
.ftr-b {
  font-size: 14px;
  color: #666;
}




/* ===================================
   TABLET (768px+)
=================================== */

@media (min-width: 768px) {

  .hero-overlay h1 {
    font-size: 3rem;
  }

  .about-contents,
  .services-contents {
    flex-direction: row;
    align-items: center;
  }

  .box-about,
  .box-description {
    text-align: left;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-contents {
    flex-direction: row;
  }
  




 
 

  .box-description {
    text-align: center;
  }

  .section-subtext {
    margin-left: auto;
    margin-right: auto;
  }





.services-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.box-description {
  flex: 1;
  text-align: left;
}

/* RIGHT IMAGE */
.image-services {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.image-services img {
  width: 100%;
  max-width: 500px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


  

  .plan-card {
    flex: 1;
  }

  .cta-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

}

/* ===================================
   DESKTOP (1024px+)
=================================== */

@media (min-width: 1024px) {

  .hero-overlay h1 {
    font-size: 4rem;
  }

}
/* ================================
   MOBILE SERVICES FIX
================================ */
@media (max-width: 768px) {

  .services-contents {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .box-description {
    width: 100%;
    text-align: center;
  }

  .section-subtext {
    margin-left: auto;
    margin-right: auto;
	font-size:1 rem;
  }
  
   .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-title span {
    font-size: 24px;
  }

  .services-list {
    justify-content: center;
  }

  .image-services {
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
  }

  .image-services img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
 .best-plans {
    padding: 50px 0;
  }

  .best-plans h2 {
    font-size: 26px;
  }

  .blog-container p {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .plan-card {
    max-width: 100%;
  }

  .plan-content h4 {
    font-size: 18px;
  }
.cta-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .cta-text p {
    max-width: 100%;
  }

  .cta-btn a {
    width: 100%;
    max-width: 260px;
  }

  .footer-logo {
    width: 130px;
  }
}