/* HERO SECTION */
.zeetius-hero {
    position: relative;
    max-width: 100%;
    /* height: 800px; */
    background: url("../Logo/zeetiusherosection.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; /* Center vertically */
}
/* LOGO */
.hero-logo {
    width: 300px; /* Adjust as needed */
}



/* HERO TEXT */
.hero-text {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    max-width: 85%;
    line-height: 1.5;
}

/* CUSTOM BUTTON */
.custom-btn-zeetius {
    display: inline-block;
    font-size: 24px; /* Adjust based on design */
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border: 1px solid white; /* White border */
    position: relative; /* Add positioning for pseudo-element */
    transition: all 0.3s ease-in-out;
    overflow: hidden; /* Ensures the pseudo-element is clipped when necessary */
  }
  
  /* ::after Pseudo-element */
  .custom-btn-zeetius::after {
    content: ""; /* Make sure pseudo-element has content */
    position: absolute; /* Positioning it inside the button */
    height: 100%;
    left: -33%;
    top: 0;
    transform: skew(50deg);
    width: 0;
    background-color: rgb(253, 249, 248); /* The color of the effect */
    transition: width 0.3s ease-in-out;
    z-index: 3;
  }
  
  .custom-btn-zeetius:hover::after {
    width: 150%; /* Expand the width on hover */
  }
  
  .custom-btn-zeetius span {
    position: relative;
    z-index: 5;
  }
  
  /* Arrow Styling */
  .custom-btn-zeetius span.arrow {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    margin-left: 5px; /* Keeps the arrow slightly spaced */
  }
  
  /* Move Arrow on Hover */
  .custom-btn-zeetius:hover .arrow {
    transform: translateX(8px); /* Moves arrow slightly to the right */
  }
  .custom-btn-zeetius:hover {
    color: rgba(7, 20, 86, 1); /* Change text color for visibility */
}
/* RESPONSIVENESS */
@media (max-width: 768px) {
    .hero-logo {
        width: 100px;
    }
    .hero-text {
        font-size: .8rem;
    }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------- */
/* overview section */
.overviewheading h2{
    font-family: "Urbanist"sans-serif;
    font-weight: 300;
    color:rgba(7, 20, 86, 1);
    font-size: 70px;
}

.overviewcontent p{
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 18px;
    color:rgba(152, 151, 151, 1);
    ;
}

/* image */
/* Background Image Section */
.overview-section {
    position: relative;
    background: url("../Logo/overviewcontent.svg") center/cover no-repeat;
    color: white;
    padding: 120px 0;
}

/* Dark Overlay for Better Readability */
.overview-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Adjust darkness */
}

/* Text Content Styling */
.text-section {
    position: relative;
    z-index: 2; /* Ensures text is above the overlay */
    max-width: 600px;
}

/* Heading & Paragraph Styling */
.overview-title {
    font-family: "Urbanist", sans-serif;
    font-weight: 300;
    font-size: clamp(30px, 5vw, 70px);
    color: white;
}

.overview-text {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .text-section {
     
        max-width: 100%;
    }
}



/* ---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* zeetius offer section */
.zeetiusofferheading h2{
    font-family: "Urbanist",sans-serif;
    font-size: 50px;
    font-weight: 400;
    color:rgba(7, 20, 86, 1);
    max-width: 690px;

}
.gridsection h2{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    color:rgba(7, 20, 86, 1);
    font-size: 28px;
    
}
.gridsection p{
    font-family: "Poppins",sans-serif;
    font-weight:300 ;
    color:rgba(152, 151, 151, 1);
    font-size: 18px;
    max-width: 90%;

}
.zlogo{
    width: 40px;
    margin-right: 1%;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/* academics and association */
.acadamicsandassociationimage img{
    width: 615px;
}

.acadamicsandassociationheading h2{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 50px;
    color:rgba(7, 20, 86, 1);

}
.acadamicsandassociationcontent p{
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 18px;
    color:rgba(152, 151, 151, 1);       
    max-width: 615px;

}

/* mobile view */
.mobacadamicsandassociationheading h2{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 30px;
    color:rgba(7, 20, 86, 1);
    margin-top: 2% ;

}
.mobacadamicsandassociationcontent p{
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 16px;
    color:rgba(152, 151, 151, 1);       
    max-width: 615px;

}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* bottomherosection */

.bottomherosection{
    background-color: (255, 255, 255, 1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leftsidebottomherosection h2{
    display: block;
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size:50px;
    max-width: 540px;
}
.leftsidebottomherosectionimage img{
    width: 315px;
}






/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .zeetiusherosection {
        text-align: center;
        justify-content: center;
        padding: 20px;
    }
    .zeetiusherosectionlogo img {
        width: 150px;
    }
    .zeetiusheadingimage img {
        max-width: 80%;
    }
    .zeetiusherosectioncontent p {
        font-size: 16px;
    }
    .custom-btn-zeetius {
        font-size: 12px;
        padding: 10px 30px;
    }
}


  
  /* Small Screens (320px - 425px) */
  @media (max-width: 425px) {
    .zeetiuscontainer {
      margin-top: 16% ;
    }
  }

  @media (max-width:768px){
    .overviewheading h2,.zeetiusofferheading h2,.acadamicsandassociationheading h2   {
        font-size: 30px;
    }
    .gridsection h2,.acadamicsandassociationcontent p{
        font-size: 18px;
    }
    .overviewcontent p{
        font-size: 16px;
    }
    .gridsection p{
        font-size: 14px;
    }
    .gridsection img{
        width: 20px;
    }
    .overview-text{
        font-size: 12px ;
    }
  }