*{
    margin:0;
    padding:0;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url('../images/BGIMG1.jpeg');
    background-position: center;
    background-size: cover;
    position:relative;
    transition: background-image 1s ease-in-out; /* Smooth transition for the background image */
}


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: #fff;
    text-decoration:none;
    font-size: 15px;
}
/*-----sub menu in the bar section-----*/
/* Submenu Styling */
.sub-menu-1 {
    display: none;
    position: absolute;
    top: 100%; /* This ensures the submenu appears below the parent */
    left: 0;
    background: rgb(232, 47, 118);
    z-index: 999; /* Keep the submenu above other elements */
}

/* Ensure the submenu remains visible when hovering over the parent or the submenu itself */
.nav-links ul li:hover .sub-menu-1,
.nav-links ul li .sub-menu-1:hover {
    display: block;
}

.sub-menu-1 ul {
    padding: 0;
    margin: 10px 0;
}

.sub-menu-1 ul li {
    width: 240px;
    height: 60px;
    padding: 10px;
    border-bottom: 1px dotted #fff;
    background: transparent;
    border-radius: 0;
    text-align: left;
}

.sub-menu-1 ul li:last-child {
    border-bottom: none;
}
.sub-menu-1 ul li:hover {
    background-color: #f5adca; /* Change the background color of the whole container */
}

.sub-menu-1 ul li a:hover {
    color: white;
}
/* To prevent the line in the submenu*/
.nav-links ul .sub-menu-1 li::after {
    content: none;
}



/* Languages style */
/* Container for language selector */
.nav-links select {
    background-color: #333; /* Dark background for the dropdown */
    color: #fff; /* Text color */
    font-size: 13px; /* Font size */
    padding: 8px 12px; /* Add padding for more space */
    border: 1px solid #ccc; /* Border with light color */
    border-radius: 30px; /* Rounded corners */
    appearance: none; /* Remove default dropdown arrow */
    cursor: pointer; /* Change cursor to pointer on hover */
    text-align: center;
}


/* Hover effect */
.nav-links select:hover {
    background-color: #444; /* Change background on hover */
    border-color: #888; /* Darken border on hover */
}

/* Focus state (when selected or in use) */
.nav-links select:focus {
    outline: none; /* Remove the default focus outline */
    border-color: white; /* Change border color to highlight */
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.5); /* Add subtle shadow for focus */
}

/* Styling dropdown options */
.nav-links select option {
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    padding: 40px; /* Add padding for better spacing */
    font-size: 14px; /* Slightly larger font size */
    text-align: center;
    border-bottom: 1px solid #444; /* Add border between options */
}

/*-------------------*/

.nav-links ul li::after{
    content:'';
    width:0%;
    height: 2px;
    background: rgb(232, 47, 118);
    display: block;
    margin:auto;
    transition:0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: #fff;
    position:absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color:#fff;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid rgb(232, 47, 118);
    background: rgb(232, 47, 118);
    transition: 1s;

}
nav .fa{
    display: none;

}
@media(max-width:700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: rgb(232, 47, 118);
        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;

    }
    .sub-menu-1 ul li a {
        font-size: 14px; /* Reduce font size for small screens */
        text-align: left; /* Align text to the left for better readability */
    }

    .sub-menu-1 ul li {
        width: 150px; /* Ensure full width for each menu item */
    }

    .sub-menu-1 {
        width: 100%; /* Ensure full width for the submenu on small devices */
    }


}

@media(max-width:1118px){
    nav img{
        left: 8%;
    }
}

@media(max-width:944px){
    nav img{
        left: 6%;
        top:20px;
        width: 130px;
    }
    nav ul li a{
        font-size: 17px;
    }
}

/*----------Intro----------*/
.intro{
    padding: 50px 100px;
    margin-top: -140px;
    background-color: #152a50;
    box-shadow: 0 0 20px 7px rgba(0,0,0,0.2);
}

.intro h1{
    color: white;
    text-align: center;

}
.intro p{
    text-align: center;
    color: white;
}
.intro p a{
    text-align: center;
    color: white;
}
.intro p a:hover{
    text-align: center;
    color: rgb(232, 47, 118);
}

.intro .btn:focus{
    box-shadow: none;
}
/*----------Clients-------------*/
.Clients {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px;
  }
  
  .Clients-category {
    padding: 0 10vw;
    margin-bottom: 40px;
    text-transform: capitalize;
  }
  
  .Clients-container {
    padding: 0 10vw;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  
  .Clients-container::-webkit-scrollbar {
    display: none;
  }
  
  .Clients-card {
    flex: 0 0 auto;
    width: auto;
    height: 450px;
    margin-right: 40px;
  }
  
  .Clients-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
  }
  
  .Clients-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  
  .Clients-card:hover {
    opacity: 1;
  }
  
  
  .Clients-info {
    width: 100%;
    height: 100px;
    padding-top: 10px;
  }
  
  .Clients-Clients {
    text-transform: uppercase;
  }
  
  .Clients-short-description {
    width: 100%;
    height: 50px;
    line-height: 20px;
    overflow: hidden;
    opacity: 0.5;
    text-transform: capitalize;
    margin: 5px 0;
  }
  
  .pre-btn,
  .nxt-btn {
    border: none;
    width: 10vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    cursor: pointer;
    z-index: 8;
  }
  
  .pre-btn {
    left: 0;
    transform: rotate(180deg);
  }
  
  .nxt-btn {
    right: 0;
  }
  
  .pre-btn img,
  .nxt-btn img {
    opacity: 0.2;
  }
  
  .pre-btn:hover img,
  .nxt-btn:hover img {
    opacity: 1;
  }
  
  .collection-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  
  .collection {
    position: relative;
  }
  
  .collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .collection p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 50px;
    text-transform: capitalize;
  }
  
  .collection:nth-child(3) {
    grid-column: span 2;
    margin-bottom: 10px;
  }
/*------------The CEO-----------*/
.CEO{
    width:100%;
    padding: 78px 0px;
    background-color: white;
}

.CEO img{
    height: auto;
    width: 420px;
}

.CEO_text{
    width: 550px;
    text-align: justify;

}

.CEO_main{
    width: 1130px;
    max-width: 80%; /*Size*/
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.CEO_text h1{
    color: black;
    font-size: 80px;
    text-transform: capitalize;
    margin-bottom: 20px;

}

.CEO_text h5{
    color: black;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 25px;
    letter-spacing: 2px;

}
.CEO_text span{
    color: #f9004d;
}
.CEO_text p{
    color: black;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
}

/* button{
    background: #f9004d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
} */

/* Media Query for tablets and smaller devices */
@media (max-width: 768px) {
    .CEO_main {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center horizontally */
    }

    .CEO_main img {
        margin: 0 0 20px 0; /* Add space below the image */
    }

    .CEO_text {
        text-align: center; /* Center text on small screens */
    }
}

/* Media Query for mobile devices */
@media (max-width: 480px) {
    .CEO_text h1 {
        font-size: 1.5em; /* Adjust heading size */
    }

    .CEO_text h5 {
        font-size: 1.2em; /* Adjust subheading size */
    }

    .CEO_text p {
        font-size: 0.9em; /* Adjust paragraph size */
    }
}
/*----------Team-------------*/
.team {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 50px;
    text-align: center;
}

.team-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-col:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.team-col img {
    height: 100px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 5%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-col:hover img {
    transform: scale(1.1);
}

.team-col p {
    padding: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.team-col h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #ff6b6b;
    text-align: left;
}

@media (max-width: 700px) {
    .team-col {
        flex-basis: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .team-col img {
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 15px;
        height: 100%;
    }

    .team-col h3 {
        text-align: center;
        font-size: 20px;
    }

    .team-col p {
        font-size: 14px;
    }
}

/*----------meet the Team section-------------*/
.team-section{
    overflow: hidden;
    text-align: center;
    background: #34495e;
    padding:60px; 
    margin-bottom: 50px; 
}
.team-section h1{
    text-transform: uppercase;
    margin-bottom: 60px;
    color:white;
    font-size: 40px;

}
.border{
    display: block;
    margin:auto;
    width: 160px;
    height: 3px;
    background: #3498db;
    margin-bottom: 40px;  
}
.ps{
    margin-bottom: 40px;

}
.ps a{
    display: inline-block;
    margin:0 30px;
    width: 160px;
    height:160px;
    overflow: hidden;
    border-radius: 50%;
}
.ps a img{
    width:100%;
    filter: grayscale(100%);
    transition: 0.4s all;
}
.ps a:hover img{
        filter:none;   
}

.section{
    width: 600px;
    margin:auto;
    font-size: 20px;
    color: white;
    text-align: justify;
    height: 0;
    overflow: hidden;
}
.section p{
    color:white;
}
.section:target{
    height: auto;

}
.name{
    display: block;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
   
}
@media (max-width: 480px) {
    .team-section {
        padding: 30px;
    }

    .team-section h1 {
        font-size: 28px;
    }

    .border {
        width: 100px;
    }

    .ps a {
        margin: 0 10px;
        width: 100px;
        height: 100px;
    }

    .section {
        width: 100%;
        font-size: 16px;
    }

    .name {
        font-size: 18px;
    }
}
/*----------Contact us-------------*/

.Contact{
    margin:100px  auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url('../images/Contact.jpg');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding:100px 0;
}
.Contact h1{
    color:#fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .Contact h1{
        font-size: 24px;

    }
}

/*-------------whatsapp-----------*/
/* #whatsapp .wtsapp{
    position: fixed;
    transform: all .5s ease;
    background-color: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    border-radius: 50px;
    border-right: none;
    color:#fff;
    font-weight: 700;
    font-size: 30px;
    bottom: 30px;
    right: 20px;
    border: 0;
    z-index: 9999;
    width: 50px;
    height: 50px;
    line-height: 48px;
}

#whatsapp .wtsapp:before{
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display:block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius:50%;
    -webkit-animation:pulse-border 1500ms ease-out infinite;
    animation:pulse-border 1500ms ease-out infinite;
}
#whatsapp .wtsapp:focus{
    border: none;
    outline: none;
}

@keyframes pulse-border {
    0%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;}
    100%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0;}
} */


/*-------------footer-----------*/
#footer {
    margin-top: 80px;
    padding: 100px;
    background-color: #efefef;
    color: #013f7e;
  }
  
  .footer_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1 1 20%;
    margin: 10px;
    min-width: 230px;
  }
  
  .footer-logo {
    width:150px;
    margin-top: -25px;
    margin-bottom: 15px;
  }
  
  .footer-column h1 {
    font-size:15px;
    text-align: left;
    margin-top: -25px;
    margin-bottom: 25px;
    font-weight: bold;
  }
  
  .footer-column p {
    margin-bottom: -10px;
    text-align: justify;
    color: #013f7e;
    font-size: 12px;
    text-align: left;
  }
  
  .footer-column i {
    margin-right: 8px;
    color: #013f7e;
  }
  
  hr {
    border: 1px solid  #aaa;
    margin-top: 10px;
    /* margin: 30px 0; */
  }
  
  .copyright {
    margin-bottom: -80px;
    text-align: center;
    font-size: 15px;
  }
  
  .fa-heart-o {
    color:rgba(255, 59, 151, 0.7);
    font-size: 17px;
  }
  
  @media screen and (max-width: 768px) {
    .footer-column {
      flex: 1 1 100%;
      text-align: left;
      margin-top: 50px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer-column {
      min-width: 100%;
      margin-top: 50px;
    }
  }

/*-------------About Us Page-----------*/

/*-------------sub-header-----------*/

.sub-header{
    height: 70vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url('../images/BG2.jpeg');
    background-position: center;
    background-size:cover;
    text-align: center;
    color: #fff;
}  

.sub-header h1{
    margin-top: 100px;
}
.sub-header p{
    text-align: center;
    color: #fff;
    margin: 10px 0 40px;
    font-size: 14px;
}

.about-us{
    width: 80%;
    margin:auto;
    padding-top:80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis:30px 2px;

}

.about-col img{
    width:100%;

}

.About-col h1{
    padding-top:0;

}

.About-col p{
    padding:15px 0  25px;

}

.pink-btn{
    border: 1px solid rgba(255, 59, 151, 0.7);
    background: transparent;
    color:rgba(255, 59, 151, 0.7);
}

.pink-btn:hover{
    color: #fff;
}

/*-------------Services------------------*/
/* body {
    font-family: Arial, sans-serif;
} */

.services{
    width: 90%;
    margin:auto;
    text-align:center;
    padding-top: 30px;
}

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;
    margin-bottom: 10%;

}

.services-col{
    flex-basis: 31%;
    background: #f7f7f7;
    border-radius: 10px;
    margin-bottom:20%;
    margin: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.services i{
    font-size: 48px;
    color:rgb(112, 112, 112);

}

h3{
   text-align:center;
    font-weight: 600;
    margin: 10px  0;

}

.services-col:hover{
      box-shadow: 0 0 20px 0px rgba(0,0,0,0.2)

}

@media(max-width: 700px){
    .row{
        flex-direction: column;

    }
}
/*---------The services------------*/
.main-container {
    padding: 30px;
  }
  
  /* HEADING */
  
  .heading {
    text-align: center;
  }
  
  .heading__title {
    font-weight: 600;
  }
  
  .heading__credits {
    margin: 10px 0px;
    color: #888888;
    font-size: 25px;
    transition: all 0.5s;
  }
  
  .heading__link {
    text-decoration: none;
  }
  
  .heading__credits .heading__link {
    color: inherit;
  }
  
  /* CARDS */
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .card {
    margin: 20px;
    padding: 20px;
    width: 500px;
    min-height: 200px;
    display: grid;
    grid-template-rows: 20px 50px 1fr 50px;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
  }
  
  .card:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
    transform: scale(1.01);
  }
  
  .card__link,
  .card__exit,
  .card__icon {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: larger;
  }
  
  .card__link::after {
    position: absolute;
    top: 25px;
    left: 0;
    content: "";
    width: 0%;
    height: 3px;
    background-color: rgba(255, 59, 151, 0.7);
    transition: all 0.5s;
  }
  
  .card__link:hover::after {
    width: 100%;
  }
  
  .card__exit {
    grid-row: 1/2;
    justify-self: end;
  }
  
  .card__icon {
    grid-row: 2/3;
    font-size: 30px;
  }
  
  .card__title {
    grid-row: 3/4;
    font-weight: 400;
    color: #ffffff;
  }
  
  .card__apply {
    grid-row: 4/5;
    align-self: center;
  }
  
  /* CARD BACKGROUNDS */
  
  .card-1 {
    background: radial-gradient(#6b99b7, #0b405a);
  }
  
  .card-2 {
    background: radial-gradient(#6b99b7, #0b405a);
  }
  
  .card-3 {
    background: radial-gradient(#6b99b7, #0b405a);
  }
  
  .card-4 {
    background: radial-gradient(#6b99b7, #0b405a);
  }
  

  /* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
    
}

.modal-content {
    background-color: rgb(243, 243, 243);
    margin: 15% auto; /* Center the modal vertically and horizontally */
    padding: 30px;
    border: 1px solid #888;
    width: 100%; /* Modal width */
    max-width: 500px; /* Max width */
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.modal-content ul {
    list-style-type:square;
    padding: 0;
}

.modal-content ul li {
    margin: 10px 0;
}

.modal-content ul li a {
    text-decoration: none;
    color: #3a3e48;
    /* font-weight: bold; */
}

.modal-content ul li a:hover {
    text-decoration: underline;
    color: rgba(255, 59, 151, 0.7);
}

  
  /* RESPONSIVE */
  
  @media (max-width: 1600px) {
    .cards {
      justify-content: center;
    }
  }

  /* Media Queries for responsiveness */

/* Large screens */
@media (min-width: 992px) {
    .modal-content {
        width: 50%;
        margin: 10% auto;
    }
}

/* Tablets and smaller laptops */
@media (min-width: 768px) and (max-width: 991px) {
    .modal-content {
        width: 70%;
        margin: 10% auto;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .modal-content {
        width: 90%; /* Take more of the screen for mobile */
        margin: 20% auto;
        padding: 15px;
    }

    .modal-content ul li a {
        font-size: 16px; /* Adjust font size for smaller screens */
    }

    .modal-content h2 {
        font-size: 22px; /* Adjust title size for smaller screens */
    }

    .close {
        font-size: 24px; /* Smaller close button */
    }
}


/*-------------Contact Us Page-----------*/

.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: rgba(255, 59, 151, 0.7);
    margin: 10px;
    margin-right:30px;
}

.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 400px;
    color: #555  
} 

.contact-col input, .contact-col  textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline:none;
    border: 1px solid #ccc;
    box-sizing: border-box;   
}






