body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  background: white;
  width: 100vw;
  color: #333;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Container styles */
.container, .content, .section, .card {
  margin: 0 auto;
  padding: 10px;
  max-width: 1200px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .container, .content, .section, .card {
    width: 90%;
    padding: 10px;
  }
}

/* ===== CLEANED & FIXED TOP BANNER (HEADER) ===== */
.top-banner {
    background: #484249cc;
    color: #fff;
    padding: 20px 5% 20px 5%;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.logo {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.contact-info p {
  margin: 2px 0;
  word-break: break-word;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .top-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .logo {
    width: 150px;
  }

  .contact-info {
    text-align: left;
    white-space: normal;
  }
}


@media (max-width: 768px) {
  .top-banner {
    flex-direction: column;
    align-items: center; /* center everything on mobile */
    padding: 20px;
    text-align: center;
  }

  .logo {
    width: 150px;
  }

  .contact-info {
    text-align: center;
    align-items: center;
    white-space: normal;
  }
}




/* ===== NAVBAR ===== */
.navbar {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  padding: 10px 20px;
  position: relative;
}

.nav-center {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.navbar button {
  background-color: #FF8B1E;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.navbar button:hover {
  background-color: #FF8B1E;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 220px;
  z-index: 1000;
  flex-direction: column;
  padding: 10px;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content button {
  background: transparent;
  color: #FF8B1E;
  border: none;
  padding: 10px 20px;
  text-align: left;
  width: 100%;
  font-weight: bold;
}

.dropdown-content button:hover {
  background-color: #ffe0b3;
}

/* ===== SLIDER ===== */
.slider-container2 {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.slider2 {
  display: flex;
}

.slide2 {
  min-width: 100%;
  text-align: center;
}

.slide2 img {
  width: 100%;
  max-width: 100%;
  height: auto;
}













/* Outer container */
.slider {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

/* Inn
/* Outer container */
.slider1 {
  width: 80vw;
  overflow: hidden;
  position: relative;
}

/* Inner track with animation */
.slider-track {
  display: flex;
  width: 900vw; /* 9 slides * 100vw */
  animation: slide 20s infinite;
}

/* Each image */
.slider-track img {
  width: 100vw;
  object-fit: fill;
}

@keyframes slide {
  0%     { transform: translateX(0); }          /* Slide 1 */
  8.33%  { transform: translateX(-100vw); }     /* Slide 2 */
  16.66% { transform: translateX(-200vw); }     /* Slide 3 */
  25%    { transform: translateX(-300vw); }     /* Slide 4 */
  33.33% { transform: translateX(-400vw); }     /* Slide 5 */
  41.66% { transform: translateX(-500vw); }     /* Slide 6 */
  50%    { transform: translateX(-600vw); }     /* Slide 7 */
  58.33% { transform: translateX(-700vw); }     /* Slide 8 */
  66.66% { transform: translateX(-800vw); }     /* Slide 9 */
  75%    { transform: translateX(-900vw); }     /* Slide 10 */
  83.33% { transform: translateX(-1000vw); }    /* Slide 11 */
  91.66% { transform: translateX(-1100vw); }    /* Slide 12 */
  100%   { transform: translateX(0); }          /* Loop to Slide 1 */
}


.plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.plan-card {
    background: linear-gradient(to bottom right, #003366, #004080);
    color: white;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.tag {
    position: absolute;
    top: -10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.tag.green {
    background: #4caf50;
}

.tag.red {
    background: #f44336;
}

.tag.purple {
    background: #9c27b0;
}

h3 {
    margin-top: 20px;
}

.price {
    font-size: 2rem;
    margin: 10px 0;
    text-align: center;
}

.price span {
    font-size: 2rem;
}

.description {
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.btn {
    text-align: inherit;
    display: inline-block;
    background: #ff9800;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.plan{
     display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}
.plan-card1{
    background-color: lightgreen; 
  padding: 60px 20px;
  color: #FF8B1E;
    height: inherit;
    width: inherit;
    box-sizing: border-box
        
}
.fast{
    text-align: center;
    height: inherit;
    width: inherit;
    box-sizing: border-box
        
}
.frequently-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; 
  text-align: center;
  padding: 20px 0;
}

.frequently-img img {
  width: 700px;
  height: 250px;
  object-fit: cover; 
}

/* FAQ Section */
.faq {
    background: lightgray;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.faq-item {
    background-color: lightgray;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

/* Question Button */
.faq-question {
    background: lightgray;
    border: none;
    font-size: 18px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Answer (Initially Hidden) */
.faq-answer {
    display: none;
    padding: 10px;
    background: lightgreen;
}

/* Toggle Button */
.faq-toggle {
    font-size: 24px;
    color: #FF8B1E;
}



.image-row {
  display: flex;
  justify-content: center; 
  gap: 20px;              
  padding: 20px;
}

.image-row img {
  width: 70px;  
  height: auto;
  border-radius: 10px;
}


.table-wrapper {
  display: flex;
  width: auto;
  justify-content: center;
  margin-top: 40px;
}

table {
  border-collapse: collapse;
  text-align: center;
}

td {
  padding: 20px;
  font-size: 16px;
  border: none; 
}

.table-wrapper1 {
  padding: 20px;
  margin: 20px auto;
  max-width: 1200px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  vertical-align: top;
  padding: 15px;
}
.content-cell {
  width: 50%;
}

.content-cell ul {
  padding-left: 20px;
}

.content-cell li {
  text-align: left;
  margin-bottom: 8px;
}
.image-cell {
  width: 25%;
  text-align: center;
}

.image-cell img {
  max-width: 100vw;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6fcf97;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #57b57c;
}




/* Footer Base */
.site-footer {
    background-color: black; /* Dark background */
    color: white;
    padding: 40px 20px;
}

/* Footer Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

/* Footer Logo */
.footer-logo {
    width: 150px;
}

/* Links */
.footer-column a {
    color: lightgray;
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid gray;
}

















.image-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider-tabs {
  width: 700px;
  margin:  auto;
  text-align: center;
}

.tabs {
  display: table-cell;
  justify-content: center;
  gap: 10px; 
  flex-wrap: wrap; 
  margin-bottom: 20px;
}

.tabs label {
  padding: 1px 1px;
  background: lightgray;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

input[type="radio"] {
  display: none;
}

.slides {
  position: relative;
  height: 300px;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
}

.slide img {
  width: 450px;
}

#slide1:checked ~ .slides .slide1,
#slide2:checked ~ .slides .slide2,
#slide3:checked ~ .slides .slide3 {
  display: block;
}






















/* Base container */
/*.container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
    background: llinear-gradient(135deg, #1c2e8a, #09144e);
}*/


.container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}


/* Hero section styling */
.hero {
    
  background: linear-gradient(135deg, #1c2e8a, #09144e);
  color: white;
  padding: 100px 0;
  display: flex;
  justify-content: center; /* Center align */
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; /* Center by default */
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}

/* Hero image settings */
.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* Hero content */
.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Statistics section */
.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Adjust when zooming out (large screen or smaller zoom) */
/*@media (min-width: 1600px) {
  .hero-wrapper {
    justify-content: flex-start; /* Moves everything to the left */
    text-align: left;
  }
}
*/

/* For tablets */
@media (max-width: 768px) {
  .menu {
    display: none;
  }
}

/* For phones */
@media (max-width: 480px) {
  .header {
    font-size: 1.2rem;
  }
}

img, video {
  max-width: 100%;
  height: auto;
}





.contact-form {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    width: 50%;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    background: #007bff;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}



/* Contact Section */
.contact {
    text-align: center;
    padding: 40px;
    background: #f4f4f4;
}

/* Contact Row (Ensures one row with three columns) */
.contact-row {
    display: flex;
    justify-content: space-between; /* Ensures proper spacing */
    flex-wrap: wrap; /* Adjusts for mobile view */
    max-width: 1200px;
    margin: auto;
}

/* Contact Columns */
.contact-column {
    flex: 1;
    text-align: center;
    min-width: 300px; /* Prevents columns from becoming too narrow */
}

/* Links */
.contact-column a {
    text-decoration: none;
    color: #FF8B1E;
    font-weight: bold;
}

.contact-column a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-row {
        flex-direction: column; /* Stacks items vertically on mobile */
        text-align: center;
    }
}






















/* Header */
.blog-header {
    background: #1c2e8a;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Blog Container */
.blog-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 20px auto;
    gap: 20px;
}

/* Blog Posts */
.blog-posts {
    flex: 2;
}

.post {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post h2 {
    color: #1c2e8a;
}

.post .date {
    font-size: 12px;
    color: gray;
}

/* Sidebar */
.blog-sidebar {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* Links */
a {
    color: #FF8B1E;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-container {
        flex-direction: column;
    }
}




 Blog Header */
.blog-header {
    background: #1c2e8a;
    color: white;
    text-align: center;
    padding: 30px;
}

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

/* Blog Content */
.faq-blog {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Headings */
.faq-blog h2 {
    color: #1c2e8a;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-container {
        padding: 10px;
    }
}
/* Dual Slider Layout */
.dual-slider {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

/
.image-container img {
    width: auto;
    max-width: 100vw;
    height: auto;
    max-height: 100%;
    border-radius: 8px;
}

/* Related Points Side */
.points-container {
    flex: 1;
    display: flex;
}

.point {
    display: none;
}

.point.active {
    display: block;
}

.point img {
    width: auto;
    max-width: 10vw;
    max-height: 100%;
    height: auto;
    border-radius: 5px;
}


/* Default padding for larger screens */
.your-class {
  padding-left: 40px;
  padding-right: 40px;
}

/* Adjust padding for tablets */
@media (max-width: 1200px) {
  .your-class {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Adjust padding for mobile phones */
@media (max-width: 800px) {
  .your-class {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.your-class {
  padding-left: 5%;
  padding-right: 5%;
}
