* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background-color: #181818;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgb(0, 0, 0);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 30px 0;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #184DB3;
  letter-spacing: 1px;
}

/* Center Menu */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-nav {
  background: transparent;
  border: 2px solid #184DB3;
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px 0 30px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-nav2{
  background: transparent;
  border: 2px solid #184DB3;
  color: #fff;
  width: 100%;
  padding: 8px 15px;
  border-radius: 30px 0 30px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-nav2:hover {
  background: #184DB3;
  color: #000;
  transform: scale(1.05);
}

.btn-nav:hover {
  background: #184DB3;
  color: #000;
  transform: scale(1.05);
}

.phone a {
  color: #184DB3;
  font-weight: bold;
  text-decoration: none;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

.content-section{
  max-width: 1300px;
  margin: 2% auto;
}
.content-section p{
  letter-spacing: 1.5px;
}

.content-section a{
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
}

.content-section a:hover{
  color: #ddb102; 
}

.content-section h2{
  font-size: 1.7rem;
  margin: 2% 0 1% 0;
  color: #184DB3;
}
.content-section h3{
  font-size: 1.7rem;
  margin: 1% 0;
  color: #184DB3;
}
.content-section p{
  font-size: 1.1rem;
  margin: 1% 0;
  line-height: 25px; 
}

.middle{
  text-align: center;
  padding: 3% 0;
  background-color: #EC4999;
}

/* ===== HEADER ===== */
.header {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
}

.header img{
  margin-top: 80px;
}

#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.header-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  background: #184DB3;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px 0 30px 0;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #00cc77;
}

/* Section */
.profile-4grid-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 4% 0;
  padding: 3% 0;
  background-color: #EC4999;
}

.profile-4grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 90%;
  max-width: 1300px;
}

/* Card */
.profile-4grid-card {
  display: flex;
  background: #151520;
  border-radius: 30px 10px;
  border: 1px solid #2c2c3a;
  overflow: hidden;
  height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-4grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.08);
}

/* Image Section */
.profile-4grid-image {
  width: 40%;
}

.profile-4grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Section */
.profile-4grid-content {
  width: 60%;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header */
.profile-4grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-4grid-header h3 {
  color: #ffcc00;
  font-size: 1.2rem;
  margin: 0;
}

.profile-4grid-stars {
  color: #ffcc00;
  font-size: 1rem;
}

/* Paragraph */
.profile-4grid-content p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
  font-size: 1.1rem;
  margin: 10px 0 15px;
}

/* Footer */
.profile-4grid-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #aaa;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .profile-4grid-container {
    grid-template-columns: 1fr;
  }

  .profile-4grid-card {
    flex-direction: column;
    height: auto;
  }

  .profile-4grid-image {
    width: 100%;
  }

  .profile-4grid-content {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .profile-4grid-content h3 {
    font-size: 1rem;
  }

  .profile-4grid-content p {
    font-size: 0.9rem;
  }

  .profile-4grid-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}


/* Section Wrapper */
.profile-grid {
  display: block;
  justify-content: center;
  padding: 40px 20px;
}

.profile-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1300px;
  margin: 2% auto;
}

/* Card Design */
.profile-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px 2px;
  background: #222;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255,255,255,0.1);
}

.profile-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Info Overlay */
.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: #fff;
  padding: 12px 15px;
}

.profile-info p:first-child {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffcc00;
  margin: 0 0 3px;
}

.profile-info p {
  font-size: 0.9rem;
  margin: 0 0 8px;
  color: #ccc;
}

/* Bottom row (stars + badge) */
.profile-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: #ffcc00;
  font-size: 0.9rem;
}

.badge {
  background: #d32f2f;
  color: #fff;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.4);
}

/* Section */
.info-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background-color: #EC4999;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  width: 100%;
}



/* Text */
.info-text {
  flex: 1;
}

.info-text h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.info-text h2 {
  font-size: 1.4rem;
  margin: 25px 0 10px;
}

.info-text p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 15px;
}

.info-text a{
  color: #ffcc00;
  font-weight: 700;
  text-decoration: none;
}
.info-text a:hover{
  color: #ecbd01;
  font-weight: 700;
  text-decoration: none;
}

.highlight {
  color: #ffcc00;
  font-weight: 600;
}

/* Image */
.info-image {
  flex: 1;
  text-align: right;
}

.info-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  object-fit: cover;
}


/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.faq-container {
  max-width: 1300px;
  width: 100%;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffcc00;
}

.faq-item {
  background: #2C2E33;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2C2E33;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 15px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #2C2E33;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 15px 0;
  margin: 0;
}

/* Fixed Bottom Buttons */
.faq-fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}

.faq-btn {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.faq-call-btn {
  background: #e53935;
  border-radius: 0 60px 0 0;
}

.faq-whatsapp-btn {
  background: #00c853;
  border-radius: 60px 0 0 0;
}

.faq-btn:hover {
  opacity: 0.9;
}

/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding-top: 25px;
}

/* Disclaimer (Single Line) */
.footer-disclaimer {
  text-align: center;
  background: #1a1a1a;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid #2c2c2c;
}

.footer-disclaimer p {
  margin: 0;
  color: #aaa;
}

/* Main Columns */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 40px auto 20px;
  /* padding: 0 20px; */
}

/* Column Styles */
.footer-col .h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid #ffcc00;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p {
  line-height: 1.6;
  color: #bbb;
  font-size: 0.95rem;
}

/* Logo */
.footer-logo {
  background: linear-gradient(90deg, #00f, #ff007f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Button */
.footer-btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #ffcc00;
  border-color: #ffcc00;
}

/* Navigation Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Contact Links */
.footer-col a {
  color: #ffcc00;
  text-decoration: none;
  word-break: break-all;
}

.footer-col a:hover {
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Section */
.pricing-section {
  padding: 60px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Table Wrapper */
.pricing-table-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  overflow-x: auto;
  background-color: #111;
  border-radius: 8px;
}

/* Table Styling */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table thead {
  background-color: #2C2E33;
}

.pricing-table th {
  padding: 14px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.pricing-table tbody tr {
  background-color: #251f1b;
  transition: background 0.3s;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: #14141d;
}

.pricing-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #2b2b36;
  font-size: 0.95rem;
  color: #ddd;
}

/* Hover effect */
.pricing-table tbody tr:hover {
  background-color: #222231;
}

.reviews-section2 {
    width: 100%;
    padding: 40px 20px;
    background: #1e2127;
    color: white;
    text-align: center;
}

.title {
    font-size: 42px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: #fff;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.slide {
    background: #12141a;
    min-width: 350px;
    max-width: 350px;
    padding: 15px;
    border-radius: 6px;
    color: #fff;
    text-align: left;/* Important fix */
    display: flex;
    flex-direction: column;
    justify-content: space-between;  /* Push bottom content down */
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #dcdcdc; flex-grow: 1;
}

.stars span {
    font-size: 28px;
    color: #ffcc00;
    margin-right: 5px;
}

.name {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.rating-info {
    background: #02021d;
    padding: 10px 0;
    margin-top: 15px;
    text-align: center;
    border-radius: 3px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #545454;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: 0.3s;
    z-index: 1;
}

.prev { left: 0px; }
.next { right: 0px; }

.nav-btn:hover {
    background: #4d4dff;
}

/* Responsive */
@media (max-width: 768px) {
    .slide {
        min-width: 280px;
        max-width: 280px;
    }

    .title {
        font-size: 32px;
    }
}




/* Responsive */
@media (max-width: 600px) {
  .pricing-table th,
  .pricing-table td {
    font-size: 0.9rem;
    padding: 10px 8px;
  }

  .pricing-title {
    font-size: 1.5rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  .footer-btn {
    margin: 10px auto;
  }
.info-section2 .info-image{
  order:1;
}
.info-section2 .info-text{
  order: 2;
}
}

/* Responsive */
@media (max-width: 600px) {
  .faq-btn {
    font-size: 1rem;
    padding: 12px 0;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .info-container {
    flex-direction: column;
    text-align: center;
  }

  .info-image {
    text-align: center;
  }

  .info-image img {
    width: 90%;
    margin-top: 20px;
  }
  .header img{
    margin-top: 53px;
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .profile-card img {
    height: 450px;
  }
}

@media (max-width: 480px) {
  .profile-info h3 {
    font-size: 1rem;
  }
  .profile-info p {
    font-size: 0.85rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .header img{
    margin-top: 53px;
  }
  .navbar{
    padding: 2%;
  }
  section{
    padding: 0 2%;
  }
  .container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
  }

  .nav-links.active {
    height: fit-content;
    padding: 4% 0;
    margin-top: -10px;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .phone {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    display: none;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .header-content p {
    font-size: 1rem;
  }
}


/* URL Section */
.url-section {
  background: #181818;
  padding: 50px 0;
  text-align: center;
}

.url-section h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
}

/* Grid Layout */
.url-grid {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

/* URL Boxes */
.url-box {
  padding: 10px;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.url-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(0,0,0,0.7);
}

/* Colors */
.color1 { background: #ff3b30; }
.color2 { background: #ff9500; }
.color3 { background: #ffcc00; }
.color4 { background: #34c759; }
.color5 { background: #007aff; }
.color6 { background: #5856d6; }
.color7 { background: #af52de; }
.color8 { background: #5ac8fa; }
.color9 { background: #ff2d55; }
.color10 { background: #8e8e93; }

/* Responsive */
@media (max-width: 600px) {
  .url-box {
    padding: 15px;
    font-size: 14px;
  }
  .url-section h2 {
    font-size: 24px;
  }
}
