*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;

}

body {
    background-color: #fff;
    color: #1a1a1a;
    line-height: 1.6;
}

.header{
    background-color: #f0f3f5;
    min-height: 100vh;
    width: 100%;
    
    background-position: left;
    background-size: cover;
  
    position: relative;

}



/* text of header alinement */

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    color: #000435;
}


/* Logo Size */
nav img{
    width: 220px;
    
}
.nav-links{
    flex: 1;
    text-align: right;

}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
   

}
.nav-links ul li a{
    text-decoration: none;
    color: rgb(10, 11, 18);
    font-weight: 200;
    font-size: 13px;
    transition: color 0.3s ease;
}    
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #000435;
    display: block;
    margin: auto;
    transition: 0.5s;

}
nav ul li a:hover {
    color: #000435;
}
.nav-links ul li:hover::after{
    width: 100%;
}


/* ===== Hero Section ===== */

.text-box{
    
    width: 90%;
   
    color: rgb(0, 4, 53);
    position: absolute;
    top: 50%;
    left: 50%;
    
    transform: translate(-50%,-50%);
    text-align: left;
    flex-direction: row-reverse;

}
.text-box h1 {
    font-size: 43px;
    
}

.text-box p {
    font-size: 16px;
    margin: 10px 0 40px;
    color: #000435;
}
.text-box2 img {
    margin-left: 60%;
    flex: 1;
    text-align: right;

    width: 450px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    

    

    
    
}
@keyframes float {
    0% { transform: translateY(2px); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(2px); }
}

.hero-btn1 {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
  }

.hero-btn1:hover{
    
    border: 1px solid #fff;
    background: #000435;
    color: #fff;
    transition: 0.3s;
    

}

.hero-btn {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
  }

.hero-btn:hover{
    
    border: 1px solid #fff;
    background: #000435;
    color: #fff;
    transition: 0.3s;
    

}


.btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: transparent;
    position: relative;
    cursor: pointer;
}
.btn:hover{
    border: 1px solid #D3AF37;
    background: #D3AF37;
    transition: 0.3s;

}
nav .fa{
    display: none;
}



/* =======Phone Li=====*/

@media(max-width: 700px){
    .text-box{
        display: block;
    }
    .text-box h1{
        font-size: 23px;
        text-align: center;
        
        
        
    }
    .text-box p{
        font-size: 12px;
        text-align: center;
        margin-bottom: 110%;
    }
    .text-box2{
        margin-right: 85%;
        margin-top: 40%;
        margin-left: -60%;
        
        
    }    
    .hero-btn {
        margin-left: 85px;
    }

    .nav-links ul li{ 
        display: block;
    }    
    nav img{
        width: 160px;
        
    }
    
    .nav{
        justify-content: space-between;
        display: flex;
        
        align-items: center; /* 👈 makes logo, button, and hamburger perfectly aligned */
        padding: 0.75rem 1rem; /* reduce top/bottom padding */
        margin: 0; /* remove any default margin */
    } 
    .nav-links ul li a {
        color: #fff;
    }
 
    .nav-links{
        
        position:fixed;
        
        background: #000435;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: right;
        z-index: 2;
        transition: 0.6s ;
        
        flex-direction: row-reverse;
    }
    nav .fa{
        display: block;
        color: #fff;
        
        font-size: 22px;
        cursor: pointer;
        margin: 10px;
    }
    .nav-links{
        color: #fff
        ;
    }
    .nav-links ul{
        padding: 30px;
        color: #fff;
    } 
    
    nav .cta-btn {
        order: 1; /* left */
      }
      nav .fa {
        order: 2; /* right */
      }
      
    .hero-btn1 {

        margin: 0;   /* remove unwanted margins */
        padding: 0.5rem 1rem; /* balanced padding */
    } 

   .sub-nav-links ul li {

       display: block;
   }


   .nav img {
       width: 160px;

   }

   .nav {
       justify-content: space-between;
       display: flex;

       align-items: center;
       /* 👈 makes logo, button, and hamburger perfectly aligned */
       padding: 0.75rem 1rem;
       /* reduce top/bottom padding */
       margin: 0;
       /* remove any default margin */
   }



   .sub-nav-links {

       position: fixed;

       background: #000435;
       height: 1000px;
       width: 200px;
       top: 0;
       right: -200px;
       text-align: right;
       z-index: 2;
       transition: 0.6s;

       flex-direction: row-reverse;
   }

   .sub-nav-links ul li a {
       color: #fff;
       font-size: 18px;




   }

   .nav .fa {
       display: block;
       color: #fff;

       font-size: 22px;
       cursor: pointer;
       margin: 10px;
   }

   .sub-nav-links {
       color: #fff;
   }

   .sub-nav-links ul {
       padding: 30px;
       color: #fff;
   }

   .nav .hero-btn1 {
       order: 1;
       /* left */
   }

   .nav .fa {
       order: 2;
       /* right */
   }



   .hero-btn1 {

       margin: 0;
       /* remove unwanted margins */
       padding: 0.5rem 1rem;
       /* balanced padding */
   }





   }


/*------About us--------*/

.About_US{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;

}
.box {
    flex-basis: 24%;
    background: #f0f3f5;
    display: inline-block;
    margin-bottom: 5%;
    padding: 20px 12px;
    border-radius: 10px;
    box-sizing: border-box;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.box i {
    font-size: 48px;
    color: #007BFF;
    margin-bottom: 15px;
}

.box h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
 

/* ==== Pricing Plans Section ==== */
.section {
    padding: 80px 20px;
  }
  
  .section-emphasis {
    background: #f9fbfd; /* light background for contrast */
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111827;
  }
  
  /* Grid Layout */
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Card Styles */
  .card.plan {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .card.plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.1);
  }
  
  .plan-head {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .plan-head h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
  }
  
  .plan-head .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb; /* blue accent */
  }
  
  .price .tiny {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6b7280;
  }
  
  /* Plan Features */
  .plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .plan ul li {
    margin: 10px 0;
    color: #374151;
    font-size: 0.95rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    text-align: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .btn-block {
    display: block;
    width: 90%;
  }
  
  .btn-primary {
    background: #2563eb;
    color: #fff;
  }
  
  .btn-primary:hover {
    background: #1d4ed8;
  }
  
  .btn-dark {
    background: #111827;
    color: #fff;
  }
  
  .btn-dark:hover {
    background: #000;
  }
  
  /* Popular Plan Highlight */
  .plan-popular {
    border: 2px solid #2563eb;
    position: relative;
    transform: scale(1.05);
  }
  
  .plan-popular .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
  }
  
  /* ==== Responsive ==== */
  @media (max-width: 992px) {
    .plans-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .plans-grid {
      grid-template-columns: 1fr;
    }
  
    .section-title {
      font-size: 1.6rem;
    }
  
    .plan-popular {
      transform: none; /* keep consistent on mobile */
    }
  }



  
 



/* ===== How It Works Timeline ===== */

#how-it-works {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9fb;
  }
  
  #how-it-works .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
  }
  
  #how-it-works .section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
  }
  
  /* Timeline container */
  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 40px;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #007bff;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Step */
  .timeline-step {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    position: relative;
  }
  
  .timeline-step:nth-child(odd) {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .timeline-step:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  
  .timeline-step .circle {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
  }
  
  .timeline-step .content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 300px;
    text-align: left;
  }
  
  .timeline-step h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #222;
  }
  
  .timeline-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* Mobile responsive */
  @media (max-width: 700px) {
    .timeline::before {
      left: 20px;
    }
    .timeline-step {
      flex-direction: row !important;
      justify-content: flex-start !important;
      gap: 15px;
    }
    .timeline-step .circle {
      margin-left: 0;
    }
    .timeline-step .content {
      max-width: 100%;
    }
  }
  







/*-------Customer Testimonials-------*/
.testimonials {
    padding: 70px 20px;
    background: #f4f8fc;
    text-align: center;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #000435;
    font-weight: bold;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
  }
  
  .testimonial-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }
  
  .avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #007bff;
    margin-bottom: 15px;
  }
  
  .feedback {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
  }
  
  .testimonial-card h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
    color: #007bff;
  }
  
  .testimonial-card .role {
    font-size: 14px;
    color: #666;
  }
  




/*------ Guarantee Statement Section ----*/
.guarantee {
    padding: 80px 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    text-align: center;
  }
  
  .guarantee-box {
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }
  
  .guarantee h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;

  }
  
  .guarantee p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
  }
  
  .guarantee p span {
    font-weight: bold;
    color: #ffe066;
  }
  
  .guarantee .btn {
    background: #ffe066;
    color: #000;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .guarantee .btn:hover {
    background: #ffcd39;
  }
  



/*------ Footer Section ----*/
.footer {
    background: #000435;
    color: #ccc;
    padding: 60px 20px 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer h3,
  .footer h4 {
    color: #fff;
    margin-bottom: 15px;
  }
  
  .footer-about p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: #ffe066;
  }
  
  .footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #ffe066;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .social-icons {
      margin-top: 10px;
    }
  }
  
/*---Plans---*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(Images/Screenshot\ 2025-08-23\ at\ 4.24.01\ AM.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;
}

.sub-nav-links{
    flex: 1;
    text-align: right;

}
.sub-nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
   

}
.sub-nav-links ul li a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 200;
    font-size: 13px;
    transition: color 0.3s ease;
}    
.sub-nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #000435;
    display: block;
    margin: auto;
    transition: 0.5s;

}

.sub-nav-links ul li:hover::after{
    width: 100%;
}


/*-----contact us page------*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;

}
.location iframe{
    width: 100%;
}

.content-us{
    width: 80%;
    margin: auto;
}

.content-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.content-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.content-col div .fa{
    font-size: 28px;
    color: #0f155b;
    margin: 10px;
    margin-right: 30px;
}
.content-col div p{
    padding: 0;
}
.content-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.content-col input, .content-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;

}

@media(max-width: 700px){
    .content-col div h5 {
        font-size: 18px;
    }

}


/*------FAQ-----*/

  #faq {
    padding: 80px 20px;
    background: #f9fafc;
    text-align: center;
  }

  #faq .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  #faq .section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
  }

  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }

  .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }

  .faq-question {
    background: none;
    border: none;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
  }

  .faq-question:hover {
    color: #0077ff;
  }

  .faq-answer {
    display: none;
    padding: 10px 15px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
  }

  .faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }

  .faq-item.active .icon {
    transform: rotate(45deg);
  }

  .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }




/*------Protected-----*/

.protected-page {
  padding: 80px 20px;
  background: #f9fafc;
  text-align: center;
}
.page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.page-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}
.info-boxes {
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto 50px;
}
.info-box label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: left;
  color: #333;
}
.info-box input, .info-box select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.section-subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.plan-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.plan-card input {
  display: none;
}
.plan-card:hover {
  border-color: #0077ff;
  transform: translateY(-4px);
}
.plan-card .price {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}
.plan-card.popular {
  border-color: #0077ff;
}
.plan-card .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #0077ff;
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
}
.payment-btn {
  margin-top: 20px;
}
.btn-pay {
  background: #0077ff;
  color: #fff;
  padding: 14px 30px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-pay:hover {
  background: #005fcc;
  transform: scale(1.05);
}
.plan-card input:checked+h4,
.plan-card input:checked+p {
    color: #0077ff;
    /* highlight selected plan */
}

.plan-card input:checked~.price {
    border-top: 2px solid #0077ff;
    padding-top: 10px;
}

/* ===== Modal Styling ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  text-align: left;
  animation: fadeIn 0.4s ease;
  position: relative;
}
.modal-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.modal-content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}
.close {
  position: absolute;
  right: 15px; top: 15px;
  font-size: 22px;
  cursor: pointer;
}
.payment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.payment-form input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}
.form-row {
  display: flex;
  gap: 10px;
}
.form-row div {
  flex: 1;
}
.btn-pay-modal {
  width: 100%;
  background: #0077ff;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}
.btn-pay-modal:hover {
  background: #005fcc;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}



