@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color:black;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color:black;
}

h4 {
    font-size: 20px;
    color:black;
}

h6 {
    font-size: 12px;
    font-weight: 700;
    color:black;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1{
    margin: 40px 0;
}
button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #23395d ;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #000;
    background-color: #23395d ;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}

/* Header Start */
#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    left: 0;
    top: 0;
} 

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.2s ease;
}

#navbar li a:hover,
#navbar li a.active{
    color: #23395d;
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 3px;
    background: #23395d;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

/* Adjust Logo Size */
.logo {
    max-width: 60px;  
    height: auto;      
    object-fit: contain;  
}

/* HOME PAGE */

#hero{
    background-image: url("images/bg.jpg");
    height: 80vh ;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4{
    padding-bottom: 15px;
    color: white;
}

#hero h2{
    color: white;
}

#hero p{
    margin: 0;
    padding: 5px;
    color: white;
}

footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer.logo{
    margin-bottom: 30px;
}

footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}

footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow{
    margin-top: 20px;
}

footer .follow i{
    color: #23395d;
    padding-right: 4px;
    cursor: pointer;
}

footer .follow i:hover,
footer a:hover{
    color: #23395d;
}















/* Internships Page */
/* Hero Section */
#hero h1 {
    background-image: url();
    font-size: 36px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.search-box {
    padding: 10px;
    width: 50%;
    max-width: 500px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Internship Listings */
.internships {
    margin: 40px auto;
    width: 80%;
    max-width: 900px;
}

.internships h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #23395d;
}

.internship {
    background-color: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.internship h3 {
    margin-bottom: 10px;
    color: #333;
}

.internship p {
    margin-bottom: 8px;
    color: #555;
}

.internship button {
    padding: 10px 20px;
    border: none;
    background-color: #23395d;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.internship button:hover {
    background-color: #1a2d4f;
}




























/* Blog Page */

#page-header.blog-header{
    background-image: url(images/banner/blogg.jfif);
}

#blog{
    padding: 150px 150px 0 150px;
}

#blog .blog-box{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}

#blog .blog-img{
    width: 100%;
    margin-right: 40px;
}

#blog img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blog .blog-details{
    width: 50%;
}

#blog .blog-details a{
    text-decoration: none;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

#blog .blog-details a::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 4px;
    right: -60px;
}

#blog .blog-details a:hover{
    color: #23395d;
}

#blog .blog-details a:hover::after{
    background-color: #23395d;
}

#blog .blog-box h1{
    position: absolute;
    top: -55px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    color: #23395d;
    z-index: -9;
}

/* About Page */
#page-header.about-header{
    background-image: url();
}

#page-header.about-header h2,
#page-header.about-header p{
    color: black;
}

#about-head{
    display: flex;
    align-items: center;
    color: aqua;
}

#about-head img{
    width: 50%;
    height: auto;
}

#about-head div{
    padding-left: 40px;
    color: black;
}



*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Outfit';
  background: cadetblue;
}
.contact-container{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  
}
.contact-leftside{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  
}
.contact-leftside-title h2{
  font-weight: 900;
  color: black;
  font-size: 60px;
}
.container-leftside-title hr{
  border: none;
  width: 120px;
  height: 6px;
  background-color: darkslategray;
  border-radius: 11px;
  margin-bottom: 20px;
}
.contact-ipt{
  font-weight: 700;
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 30px;
  font-weight: 500px;
  color: black;
  border-radius: 55px;
}
#icon{
  height: 20px;
  width: 20px;
}
#btn{
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 17px;
  gap: 12px;
  border: none;
  height: 5px;
  color: black;
  font-weight: 900;
  background-color: cornsilk;
  border-radius: 50px;
  background: linear-gradient(270deg, aquamarine, darksalmon );
  cursor:pointer;
}
#side_img{
  height: 420px;
  width: 420px;
}

#Notice{
    color: crimson;
}
#blog-writer{
    color: cornsilk;
}
.container-leftside textarea{
  height: 150px;
  padding: 50px 50px;
  border radius: 50px;
    
  
  
}
.contact-ipt:focus {
  border: 4px solid black;
}

@media (max-width:768px){
  .contact-ipts{
    width:85vw;
  }
  .contact-rightside{
    display:none;
  }
}
@media only screen and (max-width: 768px) {
  #navbar {
    flex-direction: column; /* Change to vertical layout */
  }
  #navbar {
    margin-bottom: 10px;
  }
    #header{
        padding: 8px 15px;
        box-shadow: 0px 3px 10px
        
    }
    #hero{
        padding: 1em;
        min-height: 450px;
        width: 100%;
        
    }
}


