/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
html {
    scroll-behavior: smooth;
  }
  

/* Basic Styling for Body */
body {
    background-color: #f4f4f4;
    color: #333;
}

/* Styling the Header and Navigation */
header {
    background-color: #202837;
    padding: 0px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.logo img{
   height: 65px;
}
.foo .logo img {
    height: 65px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    position: relative;
}

nav .logo a {
    color: white;
    /* font-size: 26px; */
    font-weight: bold;
    text-decoration: none;
}

/* Menu Styling */
nav ul {
    display: flex;
    list-style: none;
    z-index: 1;

}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
}

/* Hamburger Menu Styling */
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 100;
}

/* Main Content Section */
main {
    padding: 20px;
}

section {
    margin-bottom: 50px;
}

section h1 {
    font-size: 26px;
    color: #333;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    
}
/* .footer-contact{
    position: absolute;
    width: 100%;
    bottom: 0;
} */
/* fqs style */
.faq-section {
    max-width: 1000px;
    margin: 75px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-section h1 {
    font-size:18px;
    color: #007bff;
    margin-bottom: 10px;
    text-align: left;
}

.faq-section p {
    font-size: 32px;
    color: #002366;
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(212, 212, 212);
}

.faq {
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 98%;
    padding: 25px 15px;
    text-align: left;
    background: #f7f7f7;
    color: #003399;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e6e6e6;
}

.faq-answer {
    display: none;
    padding: 15px;
    /* font-size: 0.9rem; */
    color: #555;
    background: #fff;
}

.faq-answer .faq-answer-p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: gray;
    font-weight: 100;

}


/* 0000000000 */
.faq-question {
    width: 98%;
    padding: 25px 15px;
    text-align: left;
    background: #f7f7f7;
    color: #003399;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    z-index: 0;
    
    /* Smooth transition for background, text color, and padding */
    transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease;
}

.faq-question:hover {
    background: #e6e6e6;
}

/* Plus (+) and Minus (−) sign */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 15px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: #007bff;
    
    color: #fff;
    padding-left: 20px; /* Indentation effect */
}

/* Change "+" to "−" */
.faq-question.active::after {
    content: "−";
}

/* Smooth slide-down transition */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out;
    background: #fff;
    padding: 0 15px;
}

.faq-answer .faq-answer-p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: gray;
    font-weight: 100;
}

/* 0000000000 */
/* Mobile and Tablet Responsive Design */



/* footer style */
.footer {
    background-color: #008CFF; /* Dark background */
    color: #fff;           /* White text */
    text-align: center;
    padding: 18px 10px;
    font-size: 14px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Links Section */
  .footer-links {
    /* margin-bottom: 10px; */
  }
  
  .footer-links a {
    color: #f3c623; /* Gold-like color for links */
    text-decoration: none;
    /* margin: 0 10px; */
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffffff; /* White on hover */
  }
  
  .footer-links span {
    color: #555; /* Separator color */
  }
  
  /* Copyright Section */
  .footer-copyright {
    font-size: 15px;
    color: rgb(228, 228, 228); /* Light gray for copyright text */
    /* margin-top: 5px; */
    font-weight: bold;
  }
  
  

  /* aboutus style */

  .about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    padding-top: 60px;
}

/* Content styling */
.content {
    max-width: 50%;
    padding: 30px;
}

.content h3 {
    color: #007bff;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002366;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    color: gray;
}

/* Image styling */
.image {
    max-width: 50%;
}

.image img {
    width: 100%;
    border-radius: 10px;
}



/* Mission & Vision Section */
.mission-vision {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Individual Box Styling */
.box {
    flex: 1;
    background: transparent;
    padding: 30px;
}

/* Title Styling */
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Blue Title */
.blue {
    color: #007bff;
}

/* Heading Styling */
h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #071952;
}

/* Paragraph Styling */
.mission-vision p {
    font-size: 16px;
    line-height: 1.6;
    color: gray;
}

/* contect style */
/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* Contact Section */
.contact-section {
    max-width:800px;
    margin: 160px auto;
    text-align: left;
    padding: 20px;
}

/* Contact Title */
.contact-title {
    font-size: 18px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Contact Heading */
.contact-heading {
    font-size: 32px;
    color: #002366;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Contact Box */
.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    /* padding: 15px; */
    border-radius: 8px;
}
.contact-box i{
    font-size: 60px;
}
/* Email Icon */
.email-icon {
    font-size: 40px;
    color: #007bff;
}

/* Contact Info */
.contact-info h3 {
    font-size: 18px;
    color: #007bff;
    margin: 0;
}

.contact-info p {
    font-size: 16px;
    color: gray;
    margin: 0;
}
.contact-link {
    text-decoration: none;  /* Removes underline */
    color: inherit;         /* Keeps text color same as parent */
    display: block;         /* Makes the whole box clickable */
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-left: -10px;
    background: #f7f7f7;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-box:hover {
    background: #e6e6e6;
}

.why-it-works {
    padding: 50px 20px;
    background: white;
}

.why-it-works h2 {
    color: #003399;
    font-size: 28px;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 40px;
    color: #003399;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #003399;
}

.card p {
    font-size: 14px;
    color: #555;
}

/* Why It Works Section */
.why-it-works {
    padding: 70px 20px;
    background: white;
    text-align: center;
}

.why-it-works h2 {
    color: #003399;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 50px;
}

/* Cards Container */
.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Single Card */
.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 360px;
    text-align: center;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
}
.card:hover .icon{
    
    border: 3px solid #002F6C;
    transition: 0.4s;
}
.card:hover .icon i{
    
    color: #002F6C;
    transition: 0.4s;
}

/* Icon Styling */
.icon {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    border: 3px solid #007bff;
}

.icon i {
    font-size: 90px;
    color: #007bff;
}

/* Card Heading */
.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #003399;
    font-weight: bold;
}

/* Card Description */
.card p {
    font-size: 15px;
    color: rgb(109, 109, 109);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.container h2 {
    color: #003399;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 50px;
}

.tabs {
    display: flex;
    justify-content: space-between;
    background-color: #f8f9fa;
    /* border-radius: 5px; */
    padding: 10px;
}

.tab-button {
    background: none;
    border: none;
    padding: 30px 20px;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}
.tab-button:hover{
    background-color: #007bff;
    color: white;
    transition: 0.3s;
}

.tab-button.active {
    background-color: #002F6C;
    color: white;
    /* border-radius: 5px; */
    transition: 0.3s;
}

.tab-content {
    display: none;
    background-color: #dedede;
    padding: 30px;
    margin-top: 10px;
    margin-bottom: 80px;
    border-radius: 5px;
    text-align: left;
    /* margin-left: 40px;
    margin-right: 40px; */

}
.tab-content p{
    line-height: 1.7em;
}

.tab-content.active {
    display: block;
}

/* General Blog Section Styling */
/* Main Blog Section */
main {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    font-family: 'Arial', sans-serif;
    /* text-align: center; */
}

.blog-h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}
.blog-p{
    font-size: 17px;
    /* font-weight: bold; */
    color: gray;
}

/* Blog Grid Layout */
.blog-container {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px; */
    display: flex;
    /* max-width: 1100px; */
    flex-wrap: wrap;
    gap: 50px;
    justify-content: flex-start;
}

/* Blog Article Styling */
article {
    background-color: rgb(231, 231, 231);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    width: 350px;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

article:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    background-color: rgb(221, 221, 221);
}

/* Blog Image */
article img {
    width: 100%;
    object-fit:contain;
}

/* Blog Content */
.article-content {
    padding: 20px;
}

article h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
}

article h2 a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

article h2 a:hover {

}

article p {
    font-size: 16px;
    color: rgb(109, 109, 109);
    line-height: 1.6;
}

/* Read More Button */
article a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    /* font-size: 16px; */
}
.a-title{ 
    font-size: 19px;
    margin-top: 0px;
    width: 100%;
    /* text-align: center; */
    border-radius: 0px;
    font-weight: 500;
    /* background-color: rgb(220 220 220); */
    padding-left: 0px;
    color: #414141;
    color: #001244;

}
.a-title:hover{
    color: #007bff;
    transition: 0.3s;
}
.a-readmore{
    font-size: 14px;
    background-color: rgb(144, 144, 144);
    color: white;
}

.a-readmore:hover{
    font-size: 14px;
    background-color: #007bff;
    transition: 0.3s;
}

article a:hover {
    /* background-color: rgb(210, 210, 210); */
    border: 1px solid grays;
    transition: color 0.3s ease;

}
.a-img{
    /* background-color: rgba(255, 255, 255, 0); */
    width: 100%;
    height: 235px;
   
    display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0px;
padding: 0px;
}
.a-img img{
    height: fit-content;
    width: 100%;
}

.post-date{
    font-size: 15px;
    color: rgb(0, 118, 0);
    margin-bottom: 5px;
    background-color: rgb(211, 211, 211);
    width: fit-content;
    padding: 3px;
    /* border-radius: 5px; */
}
/* Footer Styles */
.foo {
    background-color: #032D5D;
    color: white;
    padding: 70px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foo-top{
    display: flex;
    /* background: red; */
    justify-content: flex-start;
    padding: 40px;
}

.foo-top h2 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
    max-width: 550px;
    text-align: left;
    line-height: 1.5em;
    margin-right: 40px;
}

.foo-h2-strong{
    font-weight: 700;
    font-size: 24px;
}

.foo-top p {
    font-size: 16px;
    margin-bottom: 20px;
}

.foo-button {
    background-color: #008CFF;
    color: white;
    padding: 20px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
    margin-left: 10px;
}

.foo-button:hover{
    background-color: white;
    color: #032D5D;
    transition: 0.3s;
}
.a-button{
    background-color: #008CFF;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
    margin-left: 10px;
}
.a-button:hover{
    background-color: white;
    color: #032D5D;
    transition: 0.3s;
}


.foo-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 20px auto;
    width: 80%;
}

.foo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    padding: 40px;
}

.foo-column {
    flex: 1;
    min-width: 200px;
}
.foo-column a{
    transition: 0.3s;
    text-decoration: none;
}
.foo-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.foo-column ul {
    list-style: none;
    padding: 0;
}

.foo-column ul li {
    margin-bottom: 5px;
}

.foo-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.foo-column ul li a:hover {
    text-decoration: underline;
    color: #007bff;
    transition: 0.3s;
}

/* Review Section Layout */
.review-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 90px 50px;
}

/* Left Text Content */
.review-text {
    flex: 1;
    max-width: 50%;
}

.highlight-text {
    color: #008CFF;
    font-size: 17px;
    font-weight: bold;
}

.blue-text {
    font-size: 35px;
    line-height: 1.3;
    margin-top: 10px;
    font-weight: bold;
    color: #002F6C;
}

.review-section  p {
    font-size: 15px;
    color: gray;
    margin-top: 30px;
    line-height: 1.4em;
}

/* List Styling */
.review-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.review-list li {
    font-size: 14px;
    color: rgb(73, 73, 73);
    margin-bottom: 12px;
    /* display: flex; */
    align-items: center;
    line-height: 1.4em;
}

.review-list i {
    color: #0056D2;
    margin-right: 10px;
    font-size: 14px;
}

/* Right Image Section */
.review-images {
    flex: 1;
    max-width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
}

.main-img {
    width: 100%;
    border-radius: 5px;

}

/* تأثير Hover على الصورة */
.img-row{
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
  }
  
  .img-row:hover {
    transform: scale(1.02);
  }
  
  /* تصميم الصورة عند فتحها بالحجم الكامل */
  .fullscreen-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .fullscreen-img img {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  
  

.small-img {
    width: 50%;
    position: absolute;
    bottom: -40px;
    right: -35px;
    border-radius: 5px;
    border: 0px solid white;
    box-shadow: 0px 25px 20px rgba(0, 0, 0, 0.2);
}

/* Pricing Container */
.pricing-container {
    display: flex ;
    justify-content: center;
    gap: 20px;
    /*padding: 100px;*/
    flex-wrap: wrap;
    background: #f8f8f8;
}

/* Individual Pricing Plans */
.pricing-plan {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    /* height: 400px; */
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
}

/* .pricing-plan:hover {
    transform: translateY(-5px);
} */
.pricing-plan p {
    font-weight: bold;
} 

/* Plan Header */
.plan-header {
    background-color: #003366;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
}

/* Best Value Tag */
.best-value {
    position: relative;
    /* transform: scale(1.05); */
    /* box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15); */
    /* border: 3px solid #007bff; */
}

/* Ribbon for BEST VALUE */
.best-value-tag {
    position: absolute;
    top: 24px;
    right: -30px;
    background: gold;
    color: #003366;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 26px;
    transform: rotate(43deg);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

/* Plan Price */
.plan-price {
    font-size: 55px;
    font-weight: bold;
    color:#bc3058;
    margin-bottom:3px;
}

.currency {
   font-size: 25px;

    vertical-align: top;
}
.currency-style{
    color: rgb(66 66 66);
    font-size: 16px;
    font-weight: 700;
}
.plan-price-style{
color: rgb(66 66 66);
font-size: 20px;
text-decoration: line-through;
text-decoration-color: #bc3058;
font-size: 28px;
margin-top:15px;
margin-bottom:0px;
font-weight: 700;


}

/* Plan Details */
.plan-details p {
    /*margin: 12px 0;*/
    color: rgb(114, 114, 114);
    font-size: 16px;
    border-bottom:2px dotted rgb(190, 190, 190);
   margin: 0px 18px;
   padding: 15px 0px;
   

}

/* Buttons */
.plan-button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 12px 20px;
    /* border-radius: 30px; */
    font-size: 16px;
    font-weight: bold;
    /* margin: 20px 0px; */
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    /* width: 40%; */
 
}

.plan-button:hover {
    background-color: #007bff;
}

.best {
    background-color: #007bff;
}

.best:hover {
    background-color: #003366;
}

/* Note Section */
.note {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
    text-align: center;
}

/* privacy Styles */
.privacy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Container */
 .privacy-container {
    max-width: 800px; 
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
.privacy-container h1 {
    text-align: center;
    color: #222;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
}

.privacy-container h2 {
    color: #071952;
    margin-top: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    font-size: 19px;
    line-height: 28px;
}

/* Effective Date */
.effective-date {
    font-size: 16px;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

/* Paragraphs */
.privacy-container p {
    margin-bottom: 15px;
    margin-left: 15px;
    font-size: 15px;
    line-height: 22px;
}

/* Lists */
.privacy-container ul {
    margin-left: 50px;
    margin-top: 2px;
    margin-bottom: 8px;
}

.privacy-container ul li {
    font-size: 15px;
    line-height: 20px;
    list-style: none;

}

/* Contact Email */
.privacy-container strong {
    color: #007bff;
}


/* content style */

.container-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.content {
    max-width: 600px;
}

.section-title {
    color: #0056b3;
    font-weight: bold;
}

.main-title {
    font-size: 36px;
    color: #002f6c;
    font-weight: bold;
}

.description, .additional-info {
    color: #333;
    line-height: 1.6;
}

.cta-button {
    background-color: #002f6c;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #004a99;
}

.images {
    position: relative;
}

.main-image {
    width: 300px;
    border-radius: 15px;
}

.overlay-image {
    width: 150px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    border-radius: 15px;
    border: 4px solid #f8fbfe;
}

.div-btn{
    display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
        padding: 0px 50px;
        margin-top: -100px;
        margin-bottom: 50px;
}

.testimonials {
    padding: 50px 20px;
    text-align: center;
}

.testimonials h3 {
    color: #008CFF;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}

.testimonials h1 {
    color: #002F6C;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: left;
    border: 1px solid #ddd;
    
}

.testimonial img {
    width: 50px;
    height: 48px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
margin-top: -9px;
}

.testimonial h4 {
    margin: 0;
    color: #000;
    font-size: 15px;
}

.role {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.review {
    font-size: 13px;
    color: rgb(94, 94, 94);
    line-height: 1.5;
    margin-top: 25px;
    padding-top: 5px;
    border-top: 1px solid rgb(201, 201, 201);
}

/* style how  */

.how-it-works {
    padding: 50px 20px;
    text-align: center;
}

.how-it-works h3 {
    color: #007bff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}

.how-it-works h1 {
    color: #002F6C;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
    border: 1px solid #ddd;
}

.step i {
    font-size: 55px;
    margin-bottom: 15px;
    color: #616161;
}

.step h4 {
    margin: 10px 0;
    color: rgb(185 185 185);
    font-size: 14px;
    font-weight: bold;
}

.step .number {
    font-size: 24px;
    color: #007bff;
    /* font-weight: bold; */
}

.step p {
    font-size: 14px;
    color: #848484;
    line-height: 1.5;
    margin-top: 15px;
}

/* General Styles */
.privacy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Container */
.privacy .privacy-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.privacy .privacy-container p {
    max-width: 85%;
}




/* Effective Date */
.effective-date {
    font-size: 16px;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

/* Paragraphs */
.privacy p {
    margin-bottom: 15px;
}

/* Lists */
.privacy ul {
    margin-left: 20px;
}

/* Contact Email */
.privacy strong {
    color: #007bff;
}



/* /// */
 .hilidown
 {
    font-size:34px ;
 }
 .hiliup
 {
    font-size:47px ;
 }
 .span-strong{
    font-weight: bold;
    color: #192e56;
 }
 .review-images-s{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
 }
 .img-s1{
    width: 100%;
    position: relative;
    left: 0px;
    bottom: -50px;
 }
 .img-s2{
    position: relative;
    width: 75%;
    bottom: 50px;
    right: 0;
 }

.review-section-row{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
    max-width: 1200px;
}
.review-images-row{
    max-width: 100%;
    display: flex;
    justify-content: flex-start;

}
.review-list-row{
    max-width: 70%;
}

.btn-row{
    display: flex
    ;
        /* align-items: center; */
        justify-content: space-between;
        /* max-width: 1200px; */
        /* padding: 0px 50px; */
        margin: 0px;
        padding: 0px;
        
}

.review-list-title{
    width: 50%;
}
.review-text-title .blue-text{
    font-size: 48px;
}
.review-text-title .highlight-text{
    font-size: 44px;
}
.review-section-title{
    gap: 40px;
}
.foo-button-row{
    text-decoration: none;
    background-color: #002366;
   padding: 12px 60px;
   margin-left: 0px;
   margin-top: 20px;
   font-size: 15px;
    
}

.foo-button-row:hover{
background-color: #008CFF;
color:white;
}
.contact-900{
    display: none;
   
}
.pricing-section{
        gap: 20px;
       padding-bottom: 70px;
        flex-wrap: wrap;
        background: #f8f8f8;
}
.pricing-p{
    font-size: 20px;
    text-align: left;
    max-width: 940px;
    margin-top: -65px;
    color: #bc3058;
   color: rgb(113, 113, 113);
   line-height: 28px;
   /* display: flex; */
   justify-self: center;
   

}
.pricing-p-style{
    color: #008CFF;
    transition: 0.3s;

}
.pricing-p-style:hover{
    color: #002366;
    transition: 0.3s;
    
}
.plan-p{
    margin: 20px 30px;
    font-size: 19px;
    color: #555555;
}
.plan-p-content{
    font-size: 18px;
}

@media (max-width: 1250px) {
    .review-text-title .blue-text{
        font-size: 40px;
    }
    .review-text-title .highlight-text{
        font-size: 36px;
    }
}
 
@media (max-width: 768px) {
    .sec1content.sec1all {
        flex-direction: column;
    }

    .sec1image-section.sec1all, .sec1text-section.sec1all {
        flex: 1 1 100%;
    }
}


@media (max-width: 600px) {

    .privacy-container h1 {
      font-size: 18px;
      line-height: 27px;
    }
    
    .privacy-container h2 {
        font-size: 17px;
        line-height: 24px;
    }
    
    /* Effective Date */
    .effective-date {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Paragraphs */
    .privacy-container p {
        font-size: 15px;
      line-height: 24px;
    }
    
    /* Lists */
    .privacy-container ul {
        font-size: 15px;
        line-height: 24px;
    }
    
    /* Contact Email */
    .privacy-container strong {
        color: #007bff;
        font-size: 15px;
        line-height: 24px;
    }
    .privacy .privacy-container {
        width: 90%;
    }

}

/* dynamic */



/* Responsive Design */
@media (max-width: 900px) {
    .review-section {
        flex-direction: column;
        text-align: left;
        padding: 27px 0px;
    }

    .review-text {
        max-width: 85%;
    }
   

    .review-images {
        max-width: 70%;
        margin-top: 5px;
        display: flex;
        justify-content: flex-start;
        margin-left: 50px;
        margin-bottom: 5px;
    }

    .main-img {
        width: 87%;
    }

    .small-img {
        width: 30%;
        bottom: -15px;
        right: 60px;
    }
    .blue-text {
        font-size: 19px;
    }
    .highlight-text {
        font-size: 14px;
    }
    .review-section p {
        font-size: 14px;
    }
    .review-list li {
        font-size: 13px;
    }
    .review-list i {
        font-size: 13px;
    }
}


/* Responsive Design */
@media (max-width: 900px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    article h2 {
        font-size: 1.3rem;
    }

    article p {
        font-size: 0.95rem;
    }
}
@media (max-width: 900px) {
    main {
       text-align: center;
    }
    .blog-container{
        justify-content: center;
    }
}


/* media  */
@media (max-width: 1250px) {
    .mission-vision  {
      max-width: 950px;
    }

    .about {
        max-width: 950px;
    }
    nav{
        padding: 0px 15px;
    }
}
@media (max-width: 1150px) {
    nav ul li a {
        padding: 15px 10px;
    }
}
@media (max-width: 950px) {

    .a-button {
        padding: 15px 0px;
        margin-top: 14px;
        display: flex;
        justify-content: center;
        width: 70%;
        justify-self: center;
        margin-left: 0px;
    }

    nav ul li {
        margin: 0px 10px;
        
    }
       /* Stack the nav items vertically on small screens */
       nav ul li a {
        padding: 15px 25px;
    }
    nav .logo a {
        font-size: 24px; /* Adjust logo font size */
        margin-bottom: 10px;
    }

    /* Hide the menu by default on mobile */
    nav ul {
        /* display: none; */
        flex-direction: column;
        width: 100%;
        text-align: left;
        background-color: #202837;
        padding-top: 10px;
        position: absolute;
        top: 60px;
        left: 0;
        height: 0px;
        transition: 0.5s;
        overflow: hidden;

    }

    /* Show the menu when the hamburger is clicked */
    nav ul.active {
        /* display: flex; */
        height: 271px;
        transition: 0.5s;
        z-index: 1;
    }

    /* Styling the hamburger menu */
    .hamburger {
        display: block;
        font-size: 35px;
        color: white;
        cursor: pointer;
        z-index: 100;
       
    }

    /* Styling for nav items when menu is active */
    nav ul li a {
        font-size: 18px;
        width: 100%;
        text-align: left;
        display: block;

    }
    nav ul li {
        font-size: 18px;
        border: 0px;
        margin: 0;
        border-top: 1px solid rgb(83, 83, 83);
    }

    /* Style for the active state when menu is open */
    .hamburger.open + ul {
        display: block;
    }
    nav{
        padding: 1px 20px;
    }
}
/* Responsive Design */
@media (max-width: 1156px) 
{
    .pricing-p {
        text-align: center;
        max-width: 80%;
        /* margin-top: 0px; */
        line-height: 30px;
        font-size: 18px;

    }
}
@media (max-width: 900px) 
{

    .cta-button {
     margin-bottom: 0px;
    }

    .contact-900{
        display:block;
    }
    .contact-full{
        display: none;
     
    }
    .review-text-title .blue-text{
        font-size: 19px;
    }
    .review-text-title .highlight-text{
        font-size: 19px;
    }
    .review-list-title {
        width: 85%;
    }

    .review-section-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
        padding: 100px 50px;
        text-align: left;
        align-items: flex-start;
    }
    .review-images-row 
    {
        margin-left:0px;
        width: 100%;
        max-width: fit-content;
        
    }
    .img-row{
        width: 100%;
    }
    .review-list-row
    {
        max-width: 100%;
    }
  
    
    .how-it-works h1 {
        font-size: 20px;
    }
    .testimonials h3 {
        font-size: 14px;
    }
    .testimonials h1 {
        font-size: 19px;
    }
    .div-btn {
     display: flex ;
      justify-content: center;
      max-width: 1200px;
    margin: auto;
     padding: 0px 0px;
     margin-top: 15px;
     margin-bottom: 50px;
       
    }
    .mission-vision {
        flex-direction: column;
        text-align: center;
    }

    .box {
        max-width: 100%;
    }
    .about {
        flex-direction: column;
        text-align: center;
    }

    .content, .image {
        max-width: 100%;
    }
    .review-images-s 
    {
        align-items: flex-start;
    }

    .img-s1{
        left: 0px;
        bottom: -50px;
     }
     .img-s2{
        bottom: 35px;
        right: -60px;
        width: 50%;
     
    }
    .btn-row{
        margin: 0px;
        display: flex;
        justify-content: flex-start;
    }
    .div-btn {
        display: flex;
        justify-content: flex-start;
        max-width: 85%;
    }
    }

/* Responsive Design */
@media (max-width: 800px) {
    .tabs {
        flex-direction: column;
    }
    .container {
        width: 80%;
    }
    .tab-content{
        margin-left: 0px;
        margin-right: 0px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer {
      font-size: 12px;
    }
    .footer-links a {
      /* margin: 0 5px; */
    }
  }
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    table {
        width: 100%;
    }
    .foo-top {
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
    }
    .foo-top h2 {
        text-align: center;
        margin-right: 0px;
    }
    .foo-button{
        margin-left: 0px;
        padding: 25px 70px;
    }
}
@media (max-width: 600px) {


    .step {
        width: 290px;
    }

    .step p {
        font-size: 13px;
    }
    .step i {
        font-size: 45px;
    }
    .step .number {
        font-size: 20px;
    }
    .testimonials h1 {
        margin-bottom: 27px;
    }
    .testimonials h3 {
        margin-bottom: 10px;
    }
    .cta-button {
        font-size: 12px;
    }
    .plan-header {
        font-size: 16px;
    }
    .pricing-plan p {
        font-size: 15px;
        font-weight: bold;
    }
    .plan-button {
        padding: 10px 20px;
        font-size: 14px;
        margin: 20px 60px;
    }
    .plan-details p{
        font-size: 13px;
    }
    .plan-price {
        font-size: 45px;
    }
    .currency {
        font-size: 22px;
    }
    .pricing-container
    {
        padding: 50px;
    }
    .footer-copyright {
        font-size: 13px;
    }
    .a-button {
        padding: 12px 0px;
        margin-top: 14px;
        font-size: 15px;
    }
  .about{
    padding-top: 10px;
  }
  .content h1{
    font-size: 24px;
  }
  .content p{
    font-size: 15px;
  }
  .title {
    font-size: 20px;
}
  .content h3 {
 font-size: 20px;
}
.box h2 {
    font-size: 24px;
}
.mission-vision p{
    font-size: 15px;
}
  .logo img {
    height: 35px;
}
.foo .logo img {
    height: 52px;
}
nav ul {
    margin-top: -10px;
    padding-top: 0px;
}
nav ul li a {
    font-size: 15px;
}

.image img{
    width: 70%;
}
.hamburger {
    font-size: 25px;
}
nav ul.active {
    height: 243px;
    transition: 0.5s;
}
nav{
    margin-top: 1px;
}

.faq-section h1 {
    font-size: 20px;
}
.faq-section p {
    font-size: 24px;
}
.faq-question {
    font-size: 15px;
}
.faq-answer .faq-answer-p
{
    font-size: 15px;
    font-weight: bold;
    color: rgb(88, 88, 88);
}
.faq-section{
    margin: 30px auto;
}
.card{
    width: fit-content;
}
.why-it-works h2 {
    font-size: 27px;
    margin-bottom: 30px;
}
.why-it-works {
    padding: 50px 20px;
}
.card p {
    font-size: 14px;
}
.card h3 {
    font-size: 21px;
}
.icon i {
    font-size: 50px;
}
.icon {
    width: 110px;
    height: 110px;
}
.container h2 {
    font-size: 27px;
    margin-bottom: 30px;
}
.tab-button {
    padding: 25px 20px;
    font-size: 16px;
}
.tab-content p {
    font-size: 14px;
}

.contact-section {
    max-width: 800px;
    margin: 80px auto;
}
.contact-heading {
    font-size: 20px;
}
.contact-box i {
    font-size: 50px;
}
.contact-info h3 {
    font-size: 16px;
}
.contact-info p {
    font-size: 16px;
}
.a-img{
    height: fit-content;
}
.blog-h1{
    font-size: 30px;
}
.foo-h2-strong{
    font-size: 20px;
}
.foo-top h2 {
    font-size: 15px;
}
.foo-button {
font-size: 14px;
 padding: 12px 20px;
}
.foo-column h3 {
    font-size: 16px;
}
.foo-column ul li a {
    font-size: 13px;
}
.foo-column p{
    font-size: 14px;
    line-height: 1.5em;
}
.review-images {
    max-width: 85%;
    justify-content: flex-start;
    margin-left: 0px;

}

.img-s2 {
    bottom: 15px;
    right: -100px;
    width: 50%;
}

.review-images-row {
    max-width: fit-content;
}
.review-list-row{
    margin-top: 0px;
}
.review-section-row
{
    max-width: 85%;
    padding: 40px 0px;
}
section h1
{
    line-height:25px;
}
.blue-text{
    line-height:25px;
}

.currency-style{
font-size: 16px;
}
.plan-price-style{
font-size: 28px;
}
.img-row:hover {
    transform: scale(1);
  }
   .pricing-p {
        text-align: center;
        max-width: 80%;
        margin-top: 0px;
        line-height: 30px;
        font-size: 15px;
    }


}

.pricing-section {
    display: flex;
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;*/
    background: #f5f7fa;
    padding: 40px 20px;
}

.pricing-container {
    width: 1000px;
    max-width: 100%;
}

.pricing-plan {
    background: #ffffff;
    border-radius: 16px;
    /*padding: 40px;*/
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* .pricing-plan:hover {
    transform: translateY(-5px);
} */

.plan-header {
    font-size: 32px;
    font-weight: 700;
    /* color: #2c3e50; */
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}
.plan-p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 12px;
    text-align: center;
    font-weight: bold;
}

.plan-details {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.plan-p-content {
    font-size: 16px;
    color: #444;
    margin: 12px 0;
    position: relative;
    padding-left: 25px;
    
}
.plan-details p{
    font-weight: bold;
    color: #003366 ;
    text-align: left;
    line-height: 25px;
}


.plan-button {
    display: block;
    width: 200px;
    margin: 24px auto 0;
    padding: 12px 24px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
       margin-bottom: 25px;
}

.plan-button:hover {
    background: #2980b9;
    transform: scale(1.05);
}

@media (max-width: 750px) {
    .pricing-container {
        padding: 30px;
    }
    .plan-header {
        font-size: 25px;
    }

}
@media (max-width: 500px) {
    .pricing-container {
        padding: 5px;
    }
    .plan-header {
        font-size: 22px;
    }
    .pricing-section{
            padding: 20px 0px;
    }

}

