* {
   margin: 0;
   padding: 0;
     font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal; 
}
body {
    overflow-x: hidden;
}
.header {
    min-height: 100vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url('images/banner.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 6%;
}
nav img {
    width: 150px;
    
}
.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: #fff;
    font-weight: 500;
    font-size: 19px;
}
.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: width 0.5s;
}
.nav-links ul li:hover::after {
    width: 100%;
}
.text-box {
    width:90%;
    position: absolute;
    color: #F7F8FA;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    
}
.text-box h1 {
    font-size: 63px;
    font-weight: 600;
   
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 25px;
    color: #fff;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background:transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 0.5s;
}
.hero-btn.red-btn {
    background: #fff;
    color: #f44336;
    border: 1px solid #f44336;
    cursor: pointer;
}
.hero-btn.red-btn:hover {
    background: #f44336;
    color: #fff;
    transition: 0.5s;
}
nav .fa {
    display: none;
}
.fa {
    font-size: 60px;
    color: #222;
    cursor: pointer;
}

@media (max-width: 700px) {
    .text-box h1 {
        font-size: 20px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul {
        padding: 30px;
    }
}


/*test*/

.test {
  width: 80%;
   margin: auto;
   text-align: center;
   padding-top: 50px;
   padding-bottom: 15px;
  background-color:  #F7F8FA;
  border-bottom: 1px solid #E5E7EB;
}
.test h2 {
    font-size: 36px;
    font-weight: 600;   
}
.test p {
    color:#000;
    font-size: 21px;
   font-weight: 300;
   line-height: 22px;
   padding-bottom: 50px;
}

/*how it works*/

.how-it-works {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 15px;
    background-color: #F7F8FA;
    border-bottom: 1px solid #E5E7EB;
}
.how-it-works-col {
      flex-basis: 31%;
    padding: 0 20px;
   background: linear-gradient(
  135deg,
  #f1e2c6,
  #e0c89b
);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    gap: 10px;
}
.how-it-works-col:hover {
    box-shadow:
  0 12px 32px rgba(0, 0, 0, 0.35),
  inset 0 2px 2px rgba(255, 255, 255, 0.4);
}


/*monthly retainer*/


.monthly-retainer {
    width: 80%;
   margin:auto;
   text-align: center;
   padding-top: 5px;
}
h1 {
    font-size: 36px;
    font-weight: 600;  
}
h2 {
    font-size: 30px;
    font-weight: 500;
    margin-top: 20px;
}
h3 {
    font-size: 20px;
    font-weight: 500;
}
p {
    color:#000;
    font-size: 19px;
   font-weight: 300;
   line-height: 22px;
   padding: 10px;
}
.row {
    display: flex;
    margin-top: 5%;
    justify-content: space-between;
    gap: 20px;
}
.silver-montly-services-col {
    flex-basis: 31%;
    padding: 20px 12px;
  background: linear-gradient(
  135deg,
  #e6e6e6,
  #c9c9c9,
  #9ea3a8
);
    border-radius: 10px;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition: 0.5s;
}
.silver-montly-services-col ul {
    list-style: square;
    padding: 0;
    margin: 10px 0;
    margin-left: 15px;
    text-align: left;

}
.silver-montly-services-col ul li {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
}
.silver-montly-services-col a.hero-btn {
    margin-top: 145px;
}
.silver-montly-services-col:hover {
    box-shadow: 5px 0 60px 0px rgba(0, 0, 0, 0.12);
    
}
@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
    silver-montly-services-col {
        margin-bottom: 20px;
    }
}
.silverplus-montly-services-col {
    flex-basis: 31%;
    padding: 20px 12px;
   background: linear-gradient(
  135deg,
  #f5f5f5,
  #c0c0c0,
  #878585
);
    border-radius: 10px;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition: 0.5s;
}
.silverplus-montly-services-col ul {
    list-style: square;
    padding: 0;
    margin: 10px 0;
    margin-left: 15px;
    text-align: left;

}
.silverplus-montly-services-col ul li {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
}
.silverplus-montly-services-col a.hero-btn {
    margin-top: 115px;
}
.silverplus-montly-services-col:hover {
    box-shadow:
  0 6px 18px rgba(0, 0, 0, 0.18),
  inset 0 1px 0 rgba(255, 255, 255, 0.7);
    
}
@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
    silverplus-montly-services-col {
        margin-bottom: 20px;
    }
}
.gold-montly-services-col {
    flex-basis: 31%;
    padding: 20px 12px;
    background: linear-gradient(
  135deg,
  #f7e27e,
  #cfa339,
  #8f6b1f
);
    border-radius: 10px;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition: 0.5s;
}
.gold-montly-services-col ul {
    list-style: square;
    padding: 0;
    margin: 10px 0;
    margin-left: 15px;
    text-align: left;

}
.gold-montly-services-col ul li {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
}
.gold-montly-services-col a.hero-btn {
    margin-top: 15px;
}
.gold-montly-services-col:hover {
    box-shadow:
  0 12px 32px rgba(0, 0, 0, 0.35),
  inset 0 2px 2px rgba(255, 255, 255, 0.4);
}
@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
    gold-montly-services-col {
        margin-bottom: 20px;
    }
}

/*services*/

.services {
    width: 80%;
   margin:auto;
   text-align: center;
   padding-top: 50px;
   padding-bottom: 15px;
}
h1 {
    font-size: 36px;
    font-weight: 600;  
}
h2 {
    font-size: 30px;
    font-weight: 500;
}
h3 {
    font-size: 20px;
    font-weight: 500;
}
p {
    color:#000;
    font-size: 19px;
   font-weight: 300;
   line-height: 22px;
   padding: 10px;
}
.row {
    display: flex;
    margin-top: 5%;
    justify-content: space-between;
    gap: 20px;
}
.services-col {
    flex-basis: 31%;
    padding: 20px 12px;
   background: linear-gradient(
  135deg,
  #f1e2c6,
  #e0c89b,
  #c7a971
);
    border-radius: 10px;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition: 0.5s;
}
.services-col ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: center

}
.services-col ul li {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
}
.services-col:hover {
    box-shadow:
  0 6px 16px rgba(0, 0, 0, 0.18),
  inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
    .services-col {
        margin-bottom: 20px;
    }
}

/*testimonials*/


.testimonials {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
}
.testimonial-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: burlywood;
    padding: 25px;
    cursor: pointer;
}
.testimonial-col img {
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;

}
.testimonial-col p {
   padding: 0;
   
}
.testimonial-col h3 {
   margin-top: 15px;
   text-align:left;
   
}

@media (max-width: 700px) {
    .testimonial-col img {
        margin-left: 0px;
        margin-right: 15px;
}
}

/*cta*/

.cta {
    width: 80%;
    margin: 100px auto;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/banner2.jpg');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
.cta p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    padding: 0;
}
@media (max-width: 700px) {
    .cta h1 {
        font-size: 30px;
    }
    .cta p {
        font-size: 16px;
    }
}

/*footer*/
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4 {
    margin-top: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    gap: 10px;
}
.icons .fa-brands {
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}


/*--------------- About Us Page ---------------*/
.sub-header {
    width: 100%;
    height: 60vh;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url('images/background.png');
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1 {
    margin-top: 100px;
}

.about-us {
    background-image: linear-gradient(rgba(47, 47, 49, 0.471), rgba(251, 252, 255, 0.268)), url('images/background 1.jpeg');
    background-position: fill;
    background-size: fill;
    width: 100%;
    margin: auto;
    padding: 80px 0 50px;
    font-size: 30px;
    font-weight: 300;
}
/* Row Style */
.about-row {
    display: flex;
    flex-direction: row;
    width: 49vw; /* Full viewport width */
    margin-left: calc(-50vw + 50%); /* Pin block to the left edge of the viewport */
    background: #fff; /* Light background for block effect */
    border-radius: 50px;
    box-shadow: none;
    gap: 0;
    min-height: 350px;
    overflow: hidden;
}

.about-row.reverse {
    display: flex;
    flex-direction: row-reverse;
    width: 50vw; /* Full viewport width */
   margin-left: 49vw;
    margin-right: calc(-50vw + 50%); /* Pin block to the right edge of the viewport */
    background: #fff; /* Light background for block effect */   
    border-radius: 50px;
    box-shadow: none;
}

.about-img {
    flex: 1 1 50%;
    display: flex;
    align-items: stretch;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.about-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    background: transparent;
    height: 100%;
}

.about-text h1 {
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
    color: #222;
}

.about-text h2 {
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #222;
    margin-bottom: 5px;
}

.about-text p {
    font-size: 1.7rem;
    font-weight: 250;
    color: #222;
    line-height: 1.6;
    margin: 0;
    padding-top: 10px;
}

.about-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
    font-size: 1.3rem;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .about-row, .about-row.reverse {
        flex-direction: column;
        width: 100vw;
        margin: 0 calc(-50vw + 50%);
        min-height: 0;
        margin-bottom: 30px;
        margin-top: 50px;
    }
    .about-img img {
        height: 250px;
    }
    .about-us {
    padding: 50px 0 30px;
    font-size: 20px;
}
    
    .about-text {
        padding: 30px 15px;
    }

}

/*--------------- Contact Us Page ---------------*/
/*contact us*/
.contact {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    justify-content: space-between;
    text-align: left;
}
.contact-col {
    flex-basis: 48%;
   margin-bottom: 30px;
    padding: 30px;
    background: #e4e5e9;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
}
.contact-col div {
  display: flex;
  align-items: center;
  justify-content: center; 
  flex-direction: row; 
  text-align: left; 
  padding: 10px;
  margin-bottom: 20px;
}
.contact-col div label {
  margin-right: 15px;
  flex: 1;
}
.icon-container {
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  gap: 10px; 
}

/* Styles for the individual icons */
.icon-container .fa-brands,
.icon-container .fa-solid {
   font-size: 35px;
    color: #f44336;
    margin-right: 30px;
    position: relative;
    display: inline-block;
}
.contact-col .fa-solid {
    font-size: 30px;
    color: #f44336;
    margin-right: 30px;
    margin: 10px;
    position: relative;
    display: flex;
}
.contact-col div p {
    padding: 0;
    font-size: 16px;

}
.contact-col h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #555;

}
.contact-col h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}
.contact-col p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 22px;
}
.contact-col input, .contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #5f5e5e;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.1);
}
.contact-col form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 600px) {
    .contact-col form input,
    .contact-col form textarea,
    .contact-col form button {
        width: 100%;
        font-size: 1em;
    }
    .contact .row {
        flex-direction: column;
    }
}



















