*{
    font-family: 'Cairo','sans-serif';
    margin:0;
    padding: 0;
    font-size: 75%;
}
/* .hero-section{
  
} */

/* ########UTILITY CLASSES######## */

.container{
    max-width: 1200px;
    width:90%;
    margin:auto;
}


.navbar{
    box-shadow:0px 2px 10px 0px #bdbfd3;
    position: fixed;
    opacity: .95;
    width: 100%;
    background: #fff;
    color:#000;
    z-index:999;
}

.navbar-conatiner{
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;

}

.menu-items{
    order:2;
    display: flex;
}

.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.8rem;

}
.logo{
    order:1;
    
}

.navbar a{
    color:#000;
    text-decoration: none;
    font-weight: 500;
    transition:background-color 0.3s ease-in-out;
    padding: .5rem 1rem;
    border-radius: .3rem;
}

.navbar a:hover{
    background-color: #D9D9D9;
}


#contact{

   border: .8px solid black;

}

#contact:hover{
    border: 1px solid #192BC2;
    color: #fff;
    background-color: #192BC2;
}
/* ########NAVBAR STYLING######## */

/*####DESKTOP MODE####*/


/* Basic styling for navbar, adjust as per your design */

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-items {
    list-style: none;
    display: flex;
    gap: 20px; /* Adjust spacing between menu items */
}

/* Hide the checkbox visually but keep it in the document flow */
.nav-toggle {
    display: none;
}

/* Hamburger lines styling */
.hamburger-lines {
    display: none; /* Hide by default, will be displayed in responsive */
    cursor: pointer;
}

.line {
    display: block;
    height: 2px;
    width: 25px; /* Adjust the width as needed */
    background: black;
    margin: 5px 0; /* Adjust the spacing between lines */
}

/* Responsive design */
@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .menu-items {
        display: none; /* Hide menu items on small screens */
        flex-direction: column; /* Stack them vertically when displayed */
        position: absolute; /* Adjust positioning as needed */
        background-color: #fff; /* Background of the menu, adjust as needed */
        right: 0;
        top: 60px; /* Adjust based on your navbar's height */
        width: 100%; /* Full width or adjust as needed */
    }

    .menu-items a {
        
        color: black; /* Change color to match your design */
        padding: 10px 15px; /* Adds padding for better touch targets, adjust as needed */
        display: block; /* Makes the link fill the container for easier tapping */
        border: none !important;

    }

    .menu-items a:hover{
        background-color: #bdbfd3 !important;
    }

    #contact{
        color: #000 !important;
    }

    .menu-items li {
        width: 100%; /* Makes each list item fill the container */
    }
    
    .nav-toggle:checked + .hamburger-lines + .menu-items {
        display: flex; /* Show menu items when checkbox is checked */
    }

    .hamburger-lines {
        display: block; /* Show hamburger on small screens */
    }
}


.hero-section{
    padding-top: 80px;
    background: linear-gradient(178deg, #2f89ffc9 -10%, rgba(255, 255, 255, 0.00) 110%);}

.hero-content{
    margin:6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap:25px;
}
#dynamicWord{
    display: inline;
}
.hero-content h1{
    font-size: 3.8rem;
    max-width: 100%;
    margin: 0 auto;
}

.hero-content p{
    color: #666;
    font-size: 1.8rem;
    padding: 3vh;
    max-width: 65rem;
    margin: 0 auto;
    /* margin: 20px 45px; */
    align-items: center;

}

.hero-content input{

    padding:1vh;
    width:30rem;
    height: 1.4rem;
    border: 2px solid #192ac2a3;
    border-radius:2rem;
    padding-top:1.2rem;
    padding-left: 2rem;

}

.hero-content input::placeholder{

    color:#192BC2;
    font-size:1.4rem;
    padding-top: 12vh;
   padding-left: 2rem;;

}
.hero-content input:enabled {

    font-size: 1.5rem;
    border: .8px solid #192BC2;
    border-radius: .2px;

}

.contact a{
    text-decoration: none;
    font-size: 1.7rem;
}

.btn{

    padding:1vh;
    width:16vh;
    color:#fff;
    background-color: #192BC2;
    padding:6px 15px;
    border:none;
    border-radius: 3px;
    margin:0;
    font-size: 20px;
    padding-bottom:5px;
    text-align: center;

}

.contact {
    display: flex;
    flex-direction: row; /* Align items in a row by default */
    gap: 10px; /* Adjust the space between the input and the button */
    padding: 10px; /* Add some padding around the form elements */
    align-items: center; /* Vertically center align the items */
    justify-content: center; /* Horizontally center the content */
}

.contact input[type="email"] {
    flex-grow: 1; /* Allows the input to grow and fill available space */
    padding: 10px; /* Adds padding inside the input for better readability */
    border: 1px solid #192ac25e; /* Example border, customize as needed */
    border-radius: 5px; /* Rounds the corners of the input field */
    max-width: 48rem;
}

.btn.btn-primary {
    padding: 10px 20px; /* Adds padding inside the button for better readability */
    text-decoration: none; /* Removes underline from the link */
    color: white; /* Sets the text color */
    background-color: #192BC2; /* Example background color, adjust as needed */
    border-radius: 5px; /* Rounds the corners of the button */
    display: inline-block; /* Ensures the link behaves like a button */
}

/* Responsive adjustments */
@media (max-width: 600px) { /* Adjust breakpoint as needed */
    .contact {
        flex-direction: column; /* Stack input and button vertically on smaller screens */
    }
}


.go-down-arrow{

/* background-color: #192BC2; */
    margin-top:50px;
    margin-bottom: 200px;

}



.go-down-arrow {

    animation: arrow-animation 2s ease-in-out infinite;

  }
  
  @keyframes arrow-animation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(0);
    }
  }


.go-down-arrow:hover{

    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));}

.wcs-header{

    margin:6vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    gap:2rem;
}


.wcs-header p{
    color: #666;
    font-size: 1.8rem;
    margin:0;
    align-items: center;
}

.wcs-header h1{

    font-size: 2.8rem;
}

.wcs{
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
    align-items: center;
  
}

.wcs h2{
    font-size: 1.8rem;
    margin-bottom: 3rem;

}

.wcs p{
    color: #666;
    font-size: 1.6rem;
    text-align: justify;
}


.wcs p,h2{
    width: 30rem;
    align-items: center;
    
    }

.wcs1-info , .wcs3-info {

    padding-right: 1.2rem;
}
/* Default styles */



  
  .wcs1, .wcs3, .wcs2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
  }
  
  .wcs1-info,.wcs2-info,.wcs3-info{

  margin-bottom: 20px;
  
    
  }

 
  .wcs1 .wcs1-graphic, .wcs3 .wcs3-graphic {
    order: -1; /* Move the graphic to the beginning */
  }
  
  @media (max-width: 768px) {
    .wcs1, .wcs3, .wcs2 {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .wcs1 .wcs1-graphic, .wcs3 .wcs3-graphic {
      order: initial; /* Reset order for smaller screens */
    }
  }


  .wcs1-graphic img,
  .wcs2-graphic img,
  .wcs3-graphic img {

    transition: transform 0.5s ease;

  }
  
  .wcs1-graphic img:hover,
  .wcs2-graphic img:hover,
  .wcs3-graphic img:hover {

    animation: float 2s ease-in-out infinite;
  }
  
  @keyframes float {

    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    
  }



.wcs1-graphic img{
    width:400px;
    height: auto;
    margin-right: 80px;
    /* padding-bottom:80px; */
}

.wcs2-graphic img{
    width:380px;
    height: auto;
    margin-left: 80px;
    /* padding-bottom:80px; */
}

.wcs3-graphic img{
    width:400px;
    height: auto;
    /* padding-bottom:80px; */
    margin-right: 80px;
}

.services-header {

    margin:60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap:25px;
    align-items: center;

}



.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    align-items: center;
    margin-bottom: 8rem;
    margin: 0 auto;
    gap: 3rem;
  }

.s{
    align-items: center;
    

}

.services-header h1{
    font-size: 2.8rem;

}

.s1 .info{
    padding-left: 2rem;
}


.services-header p{
    color: #666;
    font-size: 1.8rem;
    align-items: center;
}

.s {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
  }
  
.s .img {
    flex: 0 0 auto;
    margin-right: 20px;
    
  }
  
.s .info {
    flex: 1 1 auto;
    text-align: right;
  }


.s h2{
    text-align: left;
    width: inherit;
    font-size: 2rem;
    margin: 0;
    padding: 2rem;
}

.s p{
    color: #666;
    font-size: 1.8rem;
    margin:0;
    text-align: left;
    padding: 2rem;
    text-align: justify;

}

.s2 img{
    padding-left: 24px;
}
.s4 img{
    padding-left: 24px;
}
.s img{
    align-items: left;
}


@media (max-width: 768px) {
    .s {
      flex-direction: column;
      align-items: center;
    }
    .s .img {
      margin-left: 60px;
      margin-bottom: 20px;
      align-items: center;
    }
    .s .info {
      text-align: center;
    }
    .s h2{
        text-align: center;
    }
  }


.newsletter{
/* margin: 0; */
/* width: 100%; */
/* height: auto; */
background-color: #192BC2;
padding: 8rem;
display: flex;
flex-direction: column;
gap: 3rem;
align-items: center;
margin-top: 8rem;

}
/* 
.newsletter-email input::placeholder{


    color:#192BC2;
    font-size:1.4rem;
    padding-top: 12vh;

}

.newsletter-email input:enabled {

    font-size: 1.5rem;
    border: .8px solid #192BC2;
    border-radius: .2px;

} */

.newsletter-info{
 
/* width:100%; */
/* background-color: pink;; */
color: #fff;


}

.newsletter-info h2,p{
    width: inherit;
    text-align: center;
    
}

.newsletter-info h2{
    margin-bottom: 10px;
    font-weight:bold;
    font-size:2.8rem;
}

.newsletter p{

    font-size: 1.8rem;
}


form{

    background: #fff;
    display: flex;
    gap: 12px;
    /* width: fit-content; */
}

form input{

    border: 0;
    outline: none;
    padding: 1rem 2rem;
    height: 1rem;
    width: 24rem;
    font-size: 1.5rem;
    border-radius: 0px;
}

form button{

    width: 10rem;
    font-size: 1.6rem;
    outline: none;
    border: none;
    background-color: #D9D9D9;
    border-radius: 0px;
    cursor: pointer;
}

form button:hover{

    box-shadow: 2px 2px 8px #1e1e1e;
}

span{
    color: #fff;
    font-size: 1.5rem;
    display: block;
}


.footer{
    background-color: #1e1e1e;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap:32px;
    align-items: center;
   
    
}

.footer-logo{
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:.7em;
    /* align-items: center; */
}

#footer-logo-svg{
    width: 100px;
}

#logo-text{
    width:18rem;
}
.footer ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.8rem;
    
    text-decoration: none;
    color: #fff;
    list-style: none;
    /* background-color: aqua; */
}
.footer ul a{
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
}

.footer ul a:hover{
    text-decoration: underline;
    font-weight: 700;
}

.footer hr{
    width:30rem;

}




  .lower-foot{

    display: flex;
    flex-direction: row;
    width: 100%;

  }


.credits{

    font-size: 2rem;
    color: #bdbfd3;
    align-items: center;
    padding-left: 4rem;
    /* background-color: aqua; */
    padding-top: 1rem;;
    width: 100%;

}

.arrow-up{
    /* padding-left: 80%; */
    align-items: right;
}



/* ########AboutUS Page Styling############## */

.about-nakoda{

    display: flex;
    flex-direction: column;
    padding-top:8rem ;
    gap: 2rem;
    align-items: center;
    font-size: 3rem;
    max-width: 90%;
    margin: 0 auto;
}


.abHead , .vHead , .mHead{

    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    text-align: center; /* Ensure text is centered */
    font-size: 3rem;
    margin-top: 4rem;
}
.abLogo  {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    text-align: center; /* Ensure text is centered */
    gap: 20px; /* Optional: adds space between the SVG and the paragraph */
    padding: 20px; /* Adds some padding around the content */
    position: relative;
    right: 1rem;
}

.abPara p {
    max-width: 80%; /* Limits the width of the paragraph for better readability */
    margin: 0 auto; /* Centers the paragraph */
    background-color: #E5F1FF;
    padding: 5rem 6rem;
    border-radius: 1rem;
    color: #565656;
    font-size: 1.8rem;
    line-height: 2rem;
}

.abPara a{
    text-decoration: none;
    color: #192BC2;
    font-size: 1.7rem;
}
/* Responsive design adjustments */
@media (max-width: 768px) {
    .abLogo,.vSvg,.mSvg {
        flex-direction: column; /* Keeps the vertical stacking on smaller screens */
    }

    .abPara p {
        max-width: 90%; /* Allows the paragraph to be more fluid on smaller screens */
    }
}


.vision, .mission{
    display: flex;
    flex-direction: column;
    padding-top:6rem ;
    gap: 1rem;
    align-items: center;
    font-size: 2.8rem;
    max-width: 90%;
    margin: 0 auto;

}
.vision p{
    color: #565656;    
    max-width: 80%;
    margin: 0 auto;

}
.mission p{
    color: #565656;  
    max-width: 80%;
    margin: 0 auto;  

}
.mission{
    margin-bottom: 16rem;
}
.vSvg , .mSvg{
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    text-align: center; /* Ensure text is centered */
    gap: 0px; /* Optional: adds space between the SVG and the paragraph */
    padding: 0px; /* Adds some padding around the content */
}


  

.quote-img.V{
    position: absolute;
    left:3rem;
    top: 77rem;
  }

  .quote-img.M {
   
    position: absolute;
    right:3rem;
    top: 106rem;
  }

 

  .bgPolygonV {
    position: absolute;
    top: 70rem;
    left: 0;
    z-index: -1;
    animation: breathe 3s infinite; 

  }
  

  .bgPolygonM {
    position: absolute;
    top: 105rem;
    right: 0rem;
    z-index: -1;
    animation: breathe 3s infinite; 
  }
  
  @keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  


 /* ######### Blog Styling######## */

 .blog-main{
    font-size: 6rem;
    width: 50%;
    height: auto;
    padding: 12rem 4rem;
    display: flex;
    flex-direction: column;
    align-items:center ;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;

 }

 .blog-main img{

    max-width: 80%;
    border-radius: 14px;
 }

 @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.blog-main h1 {
    overflow: hidden; /* Ensures text is not visible until typing animation starts */
    border-right: 2px solid black; /* Cursor effect */
    white-space: nowrap; /* Prevents text from wrapping */
    animation: typing 8s steps(20, end) infinite; /* Adjust duration and steps as needed */
}


