@import url("https://fonts.googleapis.com/css2?family=Lisu+Bosa:wght@600;800&family=Poppins:wght@400;500;600;700&display=swap");
html,
body {
  scroll-behavior: smooth;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     font-family: "Poppins", sans-serif;
  
    line-height: 1.6;
    background-color:  #0b1423;
 
}


/* Wrapper and Main Section */
#main {
    width: 100%;
    padding: 50px 0;
   
    min-height: 70vh;
    margin-top: 5rem;
}

/* About Section */
.about_sec.contact_sec {
    position: relative;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
   
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

}



/* Container Flex Layout */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    background-color: #f4f4f4;
    box-sizing: border-box;
    border-radius: 10px;
}

/* Inner Section */
.inner_section {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    
}

/* Contact Title */
.contact-title {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

/* Form Section (Left Column) */
.column-left {
    width: 50%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

/* Form Fields */
.dt-sc-one-third input,
.dt-sc-one-third textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 1.8rem;
}

/* Textarea */
textarea {
    resize: vertical;
    height: 150px;
    width: 100%;
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
    padding: 12px;
}

/* Submit Button */
.reg-btn {
    background-color: #0031cc;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-end;
    margin-top: 1.8rem;
    width: 100%;
}

.reg-btn:hover {
    background-color: #0031cc;
}

/* Contact Info Section (Right Column) */
.column-right {
    width: 50%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    
}

/* Contact Info Section */
.dt-sc-contact-info {
    width: 100%;
    padding: 10px;
}

.dt-sc-contact-info img {
    max-width: 400px;

    margin-bottom: 10px;
}


.dt-sc-contact-info p {
    margin-bottom: 5px;
    color: #555;
    text-align: center;
}

.dt-sc-contact-info a {
    color: #555;
    text-decoration: none;
}

.dt-sc-contact-info a:hover {
    text-decoration: underline;
}

/* Contact Info Icons */
.dt-sc-contact-info i {
    margin-right: 10px;
    color: #0031cc;
}

/* Clearfix for layout */
.clear {
    clear: both;
}

/* Responsive Styles */
@media screen and (max-width: 1144px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .inner_section {
        
    
           
            margin-left: auto;
            margin-right: auto;
           
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            max-width: 1000px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        
    }

    .column-left,
    .column-right {
        width: 100%;
        padding: 20px;
    }

    .contact-title {
        font-size: 28px;
    }

    .dt-sc-contact-info {
        width: 100%;
    }

    .reg-btn {
        width: 100%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .contact-title {
        font-size: 24px;
    }

    .column-left,
    .column-right {
        width: 100%;
    }

    .dt-sc-contact-info {
        width: 100%;
        text-align: center;
    }

    .dt-sc-contact-info i {
        font-size: 18px;
    }

    .reg-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media screen and (max-width: 400px) {
    .contact-title {
        font-size: 20px;
    }

    .column-left,
    .column-right {
        width: 100%;
        
    }

    .dt-sc-contact-info i {
        font-size: 10px;
    }

    .reg-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
    .inner_section {
        
    
     
        
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
      
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
        max-width: 1000px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    .dt-sc-contact-info img {
        width: 80%;
    
       
    }
    


    
}

.nav__logo h6 {
    display: inline;
    color: white;
    margin-left: 10px;
    font-size: medium;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);  /* Light shadow for contrast */
}
.nav__logo img {
    width: 3rem;
    height: 3rem;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    
}
a {
    text-decoration: none;
}
li {
    list-style: none;
} 

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color : #0a0d14;
     backdrop-filter: blur(8px);
    z-index: 999;
    
    
    
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;  
    height: 6rem;
    padding: 0 1rem;
    margin: 0 auto;
    z-index: 999;
}

.toggle__menu,
.close__menu {
    display: none;
}

/* .logo a{
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
} */

.nav__list {
    display: flex;
}

.nav__item {
    margin: 0 1.5rem;
    padding: 2.2rem 0;
}



.nav__link {
    font-weight: 700;
    color: white;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);  /* Light shadow for contrast */
}

.nav__link:hover {
    color: #2696E9;
}

.dropdown__link {
    display: flex;
    align-items: center;

}

.dropdown__icon {
    font-size: 1rem;
}

 .megamenu {
    position: absolute;
    width: 100%;
     top: 6rem;
    left: 0;
    background-color: #0a0d14;
    display: flex;
    justify-content: space-around;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 23px 23px -21px rgba(0,0,0,0.25);
    z-index: -99;
    visibility: hidden;
    opacity: 0;
} 

.content {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem;
}

.megamenu__item {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    padding: 10px;
} 

.header__megamenu a{
    font-weight: 600;
    color: white;
    margin-bottom: 0.4rem;
    
}


.header__megamenu a:hover {
  font-weight: 600;
   color: #2696E9; 
  margin-bottom: 0.4rem;
  
}

.menu__icon {
    width:32px;
    height: 32px;
    /*border-radius: 50%;*/
    text-align: center;
    /*background-color: #efeef1;*/
    margin-bottom: 0.5rem;
    margin-right: 0.2rem; 
}
.menu__icon i {
    line-height: 32px;
    font-size: 22px;
    color:  white;
    
    
}

.menu__icon i:hover {
  
  color: #2696E9;
  
  
}


.megamenu__link a {
    font-weight: 500;
    color: white;
}

.megamenu__link a:hover {
    font-weight: 500;
    color: #2696E9;
}


.megamenu__link p {
    font-size: 0.6875rem;
    font-weight: 400;
    color: #a8a1b5;
}

.dropdown:hover .megamenu {
    color: #a92ec8;
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
}

/*.dropdown.show__megamenu .megamenu {*/
/*    visibility: visible;*/
/*    opacity: 1;*/
/*    color: #a92ec8;*/
/*}*/

.nav__item:hover  .dropdown__icon {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}









footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #0d0d0d;
   
  
    
  }
  
  ul{
    list-style: none;
  }
  
  .footer-col{
    width: 25%;
    padding: 50px 2.5%;
  }
  
  
  .icon i {
    margin-right: 10px; /* Adjust spacing as needed */
    vertical-align: middle; /* Align icon with text */
    color: white;
    
  
  }
  
  
  
  .footer-col h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #f49e09;
    text-transform: capitalize;
  }
  
  .footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: white;
    height: 2px;
    width: 60px;
  }
  
  /* ul li:not(:last-child){
    margin-bottom: 8px;
  } */
  
  .footer-col ul li a{
    display: block;
    font-size: 15px;
    text-transform: capitalize;
    color: white;
    text-decoration: none;
    transition: 0.4s;
    padding-bottom: 10px;
  }
  
   /* ul li a:hover{
    color: white;
    padding-left: 2px;
  }  */
  
  .links a{
    display: inline-block;
    height: 44px;
    width: 44px;
    color: white;
    background-color: rgba(40, 130, 214, 0.8);
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
  }
  
  .links a:hover{
    color: #4d4f55;
    background-color: white;
  }
  .footer-copyright {
    text-align: center;
    /* margin-top: 20px; */
    margin-bottom: 20px;
    font-size: 14px;
    color: #aaa; /* Adjust color as needed */
    width: 100%; /* Ensure full width */
    border-top: 1px solid white;
  }
  
  .footer-copyright p {
    margin-top: 20px;
  
  }
  
  @media screen and (max-width : 1316px) {
  .footer-col{
    
    padding: 25px 1%;
}
}

  
@media screen and (max-width : 1144px) {
  
   .nav__item {
   
    padding: 1.4rem 0;
}  
  
    .megamenu {
      flex-direction: column;
      box-shadow: none;
      position: static;
      height: 0;
      max-width: 450px;
      overflow: hidden;
  }
  
  .dropdown:hover .megamenu{
      height: 100%;
  }
  .nav__list {
      position : absolute;
      height: 100vh;
      width: 100%;
      left: -100%;
      max-width: 450px;
      top: 0;
      background-color: #0a0d14;
      overflow-x: hidden;
      display: block;
      transition: 0.3s;
  }
  .toggle__menu,
  .close__menu {
  display: block;
  }
 
  
  .close__menu {
  margin: 1rem 1rem 1rem auto;
  background-color:#2696E9;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  }
  
 .toggle__menu i {
     color: #fff;
 }
  
  .close__menu i {
  line-height: 32px;
  color: #fff;
  font-size: 22px; 
  }
  .show__menu {
  left: 0;
  }
     nav {
      justify-content: space-between;
    }
  
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
        padding: 25px 2.5%;
    }
  
    .footer-col h4::before{
        left: auto;
    }
   
  }
  
  
  @media screen and (max-width : 768px) {
  
    .megamenu {
        flex-direction: column;
        box-shadow: none;
        position: static;
        height: 0;
        max-width: 450px;
        overflow: hidden;
    }
  
    .dropdown:hover .megamenu{
        height: 100%;
    }
    .nav__list {
        position : absolute;
        height: 100vh;
        width: 100%;
        left: -100%;
        max-width: 450px;
        top: 0;
       
        overflow-x: hidden;
        display: block;
        transition: 0.3s;
    }
    .toggle__menu,
  .close__menu {
    display: block;
  }
 
  
 .toggle__menu i {
     color: white;
 }
  

  .close__menu i {
   line-height: 32px;
   color: #fff;
   font-size: 22px; 
  }
  .show__menu {
    left: 0;
  }
  .footer-col{
    width: 100%;
  }
  
  }
  

  