* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", serif;
    background-color: rgba(255, 255, 255, 1);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: url('img/hero-img.png') no-repeat center center/cover;
    height: 100vh;
    color: rgba(255, 255, 255, 1);
    border-radius: 0 0 50px 50px;
}

.hero-content {
    max-width: 45%;
 
    padding: 20px;
    border-radius: 8px;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    color: #ffcc00;
}

.hero-content p {
    margin-bottom: 20px;
    font-size: 2.2em;
    font-weight: 500;
}

.hero-content button {
    padding: 14px 70px;
    font-size: 1.5rem;
    font-weight: 600;

    background-color:  rgba(254, 207, 15, 1);
    box-shadow: 0px 0px 15px 0px rgba(254, 207, 15, 1);
    border: none;
    border-radius: 18px;
    cursor: pointer;
}
.hero-content button  a{
    text-decoration: none;
    color:rgba(1, 33, 66, 1);
}
.hero-content h1 span{
    color: rgba(255, 255, 255, 1);
}

.hero-content button:hover {
    background-color: #e6b800;
}

.hero-image {
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.header {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
    color: rgba(254, 207, 15, 1);;
}
.header img{
    margin-top: 15px;
    height: 80px;
    vertical-align: middle;
}

.info-container{
    margin-top: 30px;
}
.img-flex{
    margin: 20px 200px;

}
.info-row {
    padding: 40px;
    background-color: #00264d;
    color: white;
    display: flex;
    align-items: center;
   
}

.info-content {
    max-width: 70%;
}

.info-container h2 {
    font-size: 2em;
    color: rgba(38, 38, 38, 1);
    margin-bottom: 20px;
}
.info-container h2 span{
    color:rgba(254, 207, 15, 1); ;
}

.info-content p {
    font-size: 1.3em;
    line-height: 1.7;
}

.info-image {
    max-width: 18%;
    text-align: center;
    position: relative;
}

.info-image img {
    max-width: 100%;
    height: auto;
    position: absolute;
    left: 63rem;
    bottom: -12rem;
}


.box-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
   
}

.box-container h1 {
    font-size: 3rem;
    color: rgba(38, 38, 38, 1);
    margin-bottom: 20px;
    text-align: center;
}

.box-container h1 span {
    color: rgba(254, 207, 15, 1);
}

.benefits {
    display: flex;
    justify-content: space-around;
  
}

.benefit {
    flex: 1;
    background-color: rgba(254, 207, 15, 1);
    max-width: 200px;
    padding: 5px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit img {
    width: 200px;
    height: 224px;;
    margin-bottom: 15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit img:hover {
    transform: scale(1.1);
}

.benefit h3 {
    font-size: 1.2rem;
    color: rgba(38, 38, 38, 1);
    margin-bottom: 10px;
}

.benefit p {
    font-size: 0.9rem;
    color: rgba(38, 38, 38, 1);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .benefits {
        flex-wrap: wrap;
    }

    .benefit {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .benefit {
        flex: 1 1 100%;
    }
}


.count-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
}

.count-container .logo {
    display: flex;
    align-items: center;
}

.count-container .logo img {
    width: 600px;
    height: auto;
    border-radius: 4px;
}

.countdown {
    text-align: center;
}

.countdown h2 {
    font-size: 1rem;
    color: #333;
    margin: 0 0 10px;
}

.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.timer span{
    font-size: 3rem;
    font-weight: 600;
    border-radius: 50%;
}

.time-box {
    background-color: rgba(254, 207, 15, 1);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 3rem;
    font-weight: bold;
    color: rgba(38, 38, 38, 1);
}

.countdown p {
    font-size: 1rem;
    color: rgba(38, 38, 38, 1);
    margin-top: 10px;
    font-weight: 600;
}

.pricing-container {
    text-align: center;
}
.pricing-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}
.pricing-container span {
    color: rgba(254, 207, 15, 1);
}
.plans {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: flex-end;
}
.plan {
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    width: 260px;
    text-align: left;
    
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.5);

}
.plan:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.plan.basic {
    background: #333;
    height: 300px;
    color: rgba(254, 207, 15, 1);
}
.plan.premium {
    background: rgba(254, 207, 15, 1);
    color: #000;
    height: 425px;
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.5);

}
.plan.standard {
    background: #111;
    color: rgba(254, 207, 15, 1);
    height: 370px;
}
.plan h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
   
}
.plan ul {
  
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.plan ul li {
    margin: 1rem 0.3rem;
    font-size: 18px;
    font-weight: 600;
}
.plan .price {
    font-size: 1.25rem;
    margin: 1rem 0;
    color: rgba(254, 207, 15, 1);
    text-align: center;
}
.price-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(254, 207, 15, 1);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
    box-shadow: 0px 0px 15px 0px rgba(254, 207, 15, 1);

}
.price-btn:hover {
    background-color: #333;
    color:rgba(254, 207, 15, 1) ;
}

.plan.basic hr {
    width: 100%;
    margin: 0 auto 1rem auto;
    border: none;
    height: 3px;
    background-color: #f9c806;
}
.plan.standard hr{
  width: 100%;
    margin: 0 auto 1rem auto;
    border: none;
    height: 3px;
    background-color: #f9c806;
}
.plan.premium a{
  display: inline-block;
    padding: 0.5rem 1rem;
    background-color:rgba(38, 38, 38, 1);
    color: rgba(254, 207, 15, 1);
    text-decoration: none;
    border-radius: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 1);
}
.plan.premium hr{
    width: 100%;
    margin: 0 auto 1rem auto;
    border: none;
    height: 3px;
    background-color: #000;
}




.feature-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('img/bg.jpeg') no-repeat center center fixed; background-size: cover;
    color: #fff;
    border-radius: 15px;
    width: 95%;
    margin: 35px auto;
    padding: 2rem;
    box-shadow: 0px 0px 15px 0px rgba(66, 66, 66, 1);
}

.text-section {
   
    padding-right: 2rem;
}

.text-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 0;
}

.text-section h1 span {
    color: #f9c806;
}

.features {
    
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.feature {
    background-color: rgba(66, 66, 66, 1);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, filter 0.3s;
}

.feature:nth-child(1),
.feature:nth-child(3) {
    filter: blur(3px);
    transform: scale(0.9);
}

.feature:nth-child(2) {
    transform: scale(1.1);
    z-index: 10;
    margin-right: 1rem;
}

.feature h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #f9c806;
}

.feature p {
    margin: 0;
    font-size: 1rem;
}
  
.blog-container {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .blog-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .blog-container h1 span {
    color: #f9c806;
  }
  
  .carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .carousel-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(66, 66, 66, 0.2);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px; /* Ensures consistent height across all items */
  }
  
  .carousel-item img {
    max-width: 100%;
    border-radius: 10px;
    max-height: 200x;
    object-fit: cover;
  }
  
  .carousel-item h4 {
    font-size: 1rem;
    margin: 1rem 0;
  }
  
  .carousel-item p {
    font-size: 1rem;
    color: #666;
  }
  
  .indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s;
  }
  
  .indicator.active {
    background-color: #f9c806;
  }

/* Follow Page Section */
.follow-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
  }
  
  .follow-section img {
    width: 50rem;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  

/* Social Media Section */
.sm-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1vh;
    padding: 0 2vh;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
  }
  .sm-section a {
    cursor: pointer;
  }
  .sm-section img {
    width: 100%;  /* Set a fixed width for better consistency */
    height: 50vh; /* Set a fixed height as well */
    object-fit: contain; /* Ensures the entire image fits within the set dimensions */
    display: block;
    margin: 0 auto;
  }

  

  .faq-container {
    margin: 20px auto;
    background: #E2F0FF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
.faq-item {
    border: 1px solid #fff;
}

.faq-question {
    cursor: pointer;
    padding: 15px;
    background: #E2F0FF;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
}
.faq-question::after {
    content: '\002B';
    font-size: 1.2rem;
}
.faq-question.active::after {
    content: '\2212';
}
.faq-question:hover {
    background: #072f58;
    color: #fff;
}
.faq-answer {
    display: none;
    padding: 15px;
    border-radius: 5px;
    background: #E2F0FF;
}
.faq-question.active + .faq-answer {
    display: block;
    background-color: #fff;
}



  /* Contact Section */
  .contact-section {
    background-color: #002855;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
  }
  
  .contact-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .contact-item p {
    margin: 0;
  }
  
  .social-icons {
    display: flex;
  }
  
  .social-icons img {
    width: 40px;
    height: 40px;
  }
  
  
  .map-container {
    width: 100%;
    height: 400px;
    position: relative;
  }
  iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  .marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    border: 2px solid white;
  }
  
/* Footer Section  */


.footer {
  font-family: "Open Sans", serif;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  margin: 0 5rem;
}
.footer-left {
  max-width: 400px;
}
.footer-left img {
  width: 300px;

}
.footer-left p {
  font-family: "Open Sans", serif;
  margin: 10px;
  font-size: 16px;
  color: #202020;
  padding: 4px 25px 4px 10px;
  line-height: 25px;
}
.footer-right {
  list-style: none;
}
.footer-right li {
  margin: 5px 0;
}
.footer-right a {
  text-decoration: none;
  color: #000;
  font-weight: 400;

}

.copyright {
  text-align: center;
  padding: 10px;
  border-top: 1px solid #ddd;
}
.links h2{
  color: #072f58;
  font-weight: bold;
  font-size: 22px;
  line-height: 30px;
}


@media (max-width:768px) {
         .img-flex {
            margin: 0;
        }
        .info-container h2 {
            font-size: 1em;
           
        }
        .info-image img {
            max-width: 112px;
            height: auto;
            position: absolute;
            left: 17rem;
            bottom: -6rem;
        }
        .info-row {
            padding: 10px;
        }
        .info-content p {
            font-size: 0.6rem;
            line-height: 1.7;
        }
       
        .hero-section {
            
            background-size: cover; /* Keeps full background coverage */
            height: 100vh; /* Full viewport height */
            padding: 20px;
            background-position: 85% 40%;
        }
        .header {
            text-align: center;
            font-size: 1.5em;
            margin-bottom: 20px;
            color: rgba(254, 207, 15, 1);
        }
        .hero-content {
            max-width: 100%;
            padding: 0x;
            border-radius: 8px;
        }
        .hero-content h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        .hero-content p {
            margin-bottom: 20px;
            font-size: 2.2em;
            font-weight: 500;
        }
        .benefits {
           
            gap: 10px;
        }
        .benefit {
            max-width: 300px;
        }
        
    .plans {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
      align-items: center;
    }
            
        .plan.basic {
            height: 288px;
        }
        .plan.premium {
            height: 370px;
        }
        .plan ul li {
            margin: 0.6rem 0.2rem;
            font-size: 12px;
            font-weight: 600;
        }
        .plan.standard {
            height: 330px;
        }
        .plan {
            width: 200px;
        }
        .follow-section img {
            width: 40rem;
        }
        .sm-section {
            flex-direction: column;
        }
        .footer {
            flex-direction: column;
            margin: 0;
        }
        .count-container {
          flex-direction: column;
        }
        .count-container .logo img {
            width: 350px;
            height: auto;
            border-radius: 4px;
        }

        .carousel {
            flex-direction: column;
           }
        
}

/* Media Queries for Small Screens */
@media (max-width: 768px) {
    .features {
        flex-direction: column; /* Stack features vertically */
        gap: 15px;
        align-items: center;
    }

    .feature {
        flex-basis: 80%; /* Take up more width on smaller screens */
        margin-right: 0;
    }

    .text-section h1 {
        font-size: 2rem; /* Adjust text size */
    }

    .feature h3 {
        font-size: 1.1rem; /* Adjust heading size */
    }

    .feature p {
        font-size: 0.9rem; /* Adjust paragraph size */
    }
}

@media (max-width: 480px) {
    .text-section h1 {
        font-size: 1.5rem; /* Smaller font size on very small screens */
    }

    .feature h3 {
        font-size: 1rem; /* Adjust heading size */
    }

    .feature p {
        font-size: 0.85rem; /* Adjust paragraph size */
    }

    .features {
        gap: 10px; /* Decrease the gap for very small screens */
    }
}




  
  
       /* Full-Screen Popup */
       .popup {
        position: fixed;
        height: 100vh;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    /* Full-Screen Content */
    .register-page {
        width: 100%;
        height: 100%;
        background-color: white;
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    
    /* Flex container */
    .maindiv {
        display: flex;
        width: 100%;
        height: 100%;
    }
    
    /* Left Section (Text) */
    .leftdiv {
        flex: 2;
        background-color: rgb(255, 213, 0);
        padding: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        box-shadow: 0px 0px 20px 0px rgba(254, 207, 15, 1);
        height: 100%;
    }
    
    .leftdiv h2 {
        font-size: 58px;
        line-height: 70.9px;
        color: rgba(7, 47, 88, 1);
    }
    
    .leftdiv p {
        font-size: 24px;
        line-height: 29.26px;
        font-weight: bold;
        margin: 30px 0;
        color: rgba(7, 47, 88, 1);
    }
    
    .leftdiv button {
        background-color: rgba(7, 47, 88, 1);
        font-weight: bold;
        font-size: 1.3rem;
        padding: 15px 50px;
        border-radius: 10px;
        border: none;
        box-shadow: 0px 0px 15px 0px rgba(7, 47, 88, 1);
    }
    
    .leftdiv button a {
        text-decoration: none;
        color: rgba(254, 207, 15, 1);
    }
    
    /* Right Section (Image) */
    .rightdiv {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        height: 100%;
    }
    
    .rightdiv img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Close Button */
    #closeRegister {
        position: absolute;
        color: white;
        font-weight: bolder;
        font-size: 40px;
        right: 30px;
        top: 20px;
        cursor: pointer;
    }
    
    /* 📌 Fully Responsive Adjustments */
    @media (max-width: 1024px) {
        .register-page {
            flex-direction: column;
            height: 100%;
            width: 100%;
        }
    
        .maindiv {
            flex-direction: column;
            height: 100%;
            width: 100%;
        }
    
        .leftdiv {
            width: 100%;
            height: 50%;
            padding: 40px;
            text-align: center;
            align-items: center;
            justify-content: center;
        }
    
        .leftdiv h2 {
            font-size: 2rem;
            line-height: 2.5rem;
        }
    
        .leftdiv p {
            font-size: 1.2rem;
        }
    
        .leftdiv button {
            font-size: 1rem;
            padding: 10px 30px;
        }
    
        .rightdiv {
            width: 100%;
            height: 50%;
        }
    
        .rightdiv img {
            max-height: 100%;
            object-fit: cover;
        }
    }
    
    /* 📌 Fix for Small Mobile Screens */
   
/* 📌 Fix for Small Mobile Screens */
@media (max-width: 600px) {
    .popup {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px; /* Prevents content from sticking to edges */
    }

    .register-page {
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .maindiv {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .leftdiv {
        width: 100%;
        height: auto;
        padding: 20px;
        text-align: center;
        justify-content: center;
    }

    .leftdiv h2 {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    .leftdiv p {
        font-size: 1rem;
    }

    .leftdiv button {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .rightdiv {
        width: 100%;
        height: 200px; /* Ensures image is visible */
    }

    .rightdiv img {
        max-width: 100%;
        height: 100%;
        object-fit: contain;
    }

    #closeRegister {
        font-size: 25px;
        right: 10px;
        top: 10px;
    }
    .sm-section img {
  border: 2px solid #ccc;
  border-radius: 10px;
  max-width: 100%;
  pointer-events: auto;

}
 
}