* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.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-3.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

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 {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.dropdown .dropbtn {
    font-size: 14px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #00000064;
    backdrop-filter: blur(7px);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .dropdown-column {
    flex: 1;
    padding: 10px;
    border: 1px solid #cccccc32;
    border-radius: 10px;
  }


  .dropdown:hover .dropdown-content {
    display: flex;
  }

  .dropdown-content a:hover {
    background-color: #f44336;
  }

@media(max-width: 700px) {

    .dropdown-content {
        top: 3;
        right: 0;
    }

}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 55px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 25px;
    line-height: 1.5;
    height: 20%;
    color: #fff;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 23px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor:pointer;
}

.hero-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 700px) {
    .text-box h1{
        font-size: 25px;
    }

    .text-box p {
        font-size: 18px;
    }

    .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;
    }

}

.domains {
    /* background-image: url(images/Hexagon.svg); */
    width: 95%;
    margin:auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 40px;
    font-weight: 600;
}

p {
    color: #777;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.domain-col {
    flex-basis: 40%;
    background: #e4e4fc;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.domain-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

.services {

    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.services-col {
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background-color: #55555516;
}

.services-col img {
    width: 90%;
    margin: auto;
    display: block;
    
}

.services-col p{
    color: black;
    font-size: 1rem;
    padding: 1rem;
}

.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover {
    background: #0264a5;

}

.layer h6 {
    width: 100%;
    font-weight: 300;
    color: #fff;
    font-size: 18px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h6 {
    bottom: 35%;
    opacity: 1;
}


/* Services new */

 /* .services {
    
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
  }
  .services-column {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    margin: 10px;
    display: flex;
    align-items: center;
  }
  .services-column img {
    max-width: 100%;
    height: auto;
    margin-right: 10px;
  }
  .services-column p {
    color: black;
    font-size: 1rem;
    padding: 10px;
  } */

/* Success stories */

.success-stories {
   
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.success-stories-col {
    background-color: #faebd7;
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 10px;
    text-align: left;
}

.success-stories-col img {
    width: 100%;
    /* height: 280px; */
    border-radius: 10px;
}

.success-stories-col p{
    color: black;
    font-size: 1rem;
    padding: 10px;
}

.success-stories-col h3 {
    font-size: larger;
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/* popup for success stories */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 900; /* Place the overlay below the popup */
  }

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1000;
  }
  
  .popup-content {
    display: flex;
  }
  
  .column {
    flex: 1;
    padding: 10px;
  }
  
  .column img {
    max-width: 100%;
    height: auto;
  }
  
  .btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  @media (max-width: 768px) {
    .popup {
      width: 90%;
      max-width: 400px;
      overflow-y: auto;
      max-height: 80vh;
    }
    
    .popup-content {
      flex-direction: column;
    }
    
    .column {
      padding: 10px 0;
      text-align: center;
    }
  }

  /* end of popup for success stories */
    

  /* ------------Our partners------------------- */

  .partners {

    width: 95%;
    margin:auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 40px;
    font-weight: 600;
}

p {
    color: #777;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.partners-col {
    flex-basis: 25%;
    background: #fff;
    border: 1px solid black;
    border-radius: 500px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.partners-col img {
  width: 50%;
}

.partners-col h3 {
    text-align: center;
    font-size: smaller;
    font-weight: 400;
    margin: 10px 0;
}

hr {
    border: none; 
    border-top: 1px solid #bdbdbd; 
    margin: 20px 0; 
  }


@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}


/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-top: 25px;
    margin-bottom: 20px;
    font-weight: 600;
}

.icons .fa{
    color: #0088e2;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}


/* ------about us page------------- */

.about-us h1{
    text-align: center;
}

.about-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  
  .image-container {
    order: 1; /* To place the image on the left */
    max-width: 100%;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .text-container {
    order: 2; /* To place the text on the right */
    padding: 20px;
  }
  
  h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 25px;
    line-height: 1.5;
  }
  
  /* Add responsive styles */
  @media (min-width: 768px) {
    .about-container {
      flex-direction: row;
    }
  
    .image-container {
      width: 50%;
    }
  
    .text-container {
      width: 50%;
      padding-left: 40px;
    }


  }


/* -----------contact us page------- */

.subheader {
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/about.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.subheader h1 {
    margin-top: 100px;
}

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.form-btn {
    display: inline-block;
    text-decoration: none;
    color: #ff0000;
    border: 1px solid #ff0000;
    padding: 12px 23px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor:pointer;
}

.form-btn:hover {
    color: #fff;
    border: 1px solid #f44336;
    background: #f44336;
    transition: 0.5s;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.hero-btn-domain {
    display: inline-block;
    text-decoration: none;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 50px;
    padding: 12px 23px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor:pointer;
}

.hero-btn-domain:hover {
    border: 1px solid #24C4FC;
    background: #24F7BC;
    transition: 1s;
}

.hero-btn-whatsapp {
    display: inline-block;
    text-decoration: none;
    color: #00a81f;
    border: 1px solid #00a81f;
    padding: 12px 23px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor:pointer;
}

.hero-btn-whatsapp:hover {
    border: 1px solid #00ff2f;
    color: #fff;
    background: #00a81f;
    transition: 0.5s;
}