/*PRE-REQUISITES*/
:root {
    --white: #fff;
    --black: #000;
    --blue: #4CBEFE;
    --off-whitish: #c9c9c9;
    --blackish: #232323;
  }

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

hr {
    width: 85%;
    border-color: var(--lighter-bg-color);
    transition: 0.4s !important;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

body {
    width: 100%;
    overflow-x: hidden;
    background-color: #000;
}   

html {
	scroll-behavior:smooth;
}

/*NAVBAR*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--black);
    color: var(--white);
}

.logo{
    margin-left: 20px;
    height: 42px;
    width: auto;
}

.nav-links {
    background-color: #111;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin:0 auto;
  }
  
  .nav-links a {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    color: var(--off-whitish);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: white;
  }

  .sm-btn {
    font-family: "Montserrat", sans-serif;
    margin-right: 20px;
    background: transparent;
    font-size: 14px;
    color: var(--off-whitish);
    border: 1px solid var(--off-whitish);
    padding: 7px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .sm-btn:hover {
    background-color: white;
    color: black;
  }

  /*SIDE NAV*/
  .hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }
  
  /* Side nav styles */
  .side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 1001;
  }
  
  .side-nav a {
    padding: 12px 24px;
    text-decoration: none;
    color: #fff;
    display: block;
    font-size: 18px;
    transition: 0.2s;
  }
  
  .side-nav a:hover {
    background-color: #333;
  }
  
  .side-nav .close-btn {
    text-align: right;
    font-size: 24px;
    padding-right: 20px;
    display: block;
  }
  
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
  }
  
  .overlay.active {
    display: block;
  }
  
  /* Responsive for mobile */
  @media screen and (max-width: 768px) {
    .nav-links,
    .sm-btn {
      display: none;
    }
  
    .hamburger {
      display: block;
    }
  }


/*HERO SECTION*/
.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    height: 700px;
    width: 1320px;
    background-image: url('lib/bgimg.png');
    border-radius: 20px;
    background-size: cover;
}

.hero .text-wrapper{
    padding: 20px;
    margin-top: 40px;
}

.hero h1{
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
}

.hero p{
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--off-whitish);
    text-align: center;
}

.hero .btn-group{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
    font-size: 13px;
}

.hero .btn1{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    background-color: var(--off-whitish);
    border: none;
    border-radius: 50px;
    height: 40px;
    width: 120px;
    transition: 0.4s;
}

.hero .btn2{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--off-whitish);
    background-color: var(--blackish);
    border: none;
    border-radius: 50px;
    height: 40px;
    width: 120px;
    transition: 0.4s;
}

.hero .btn2:hover{
    background-color: #222;
    color: var(--white);
    border: 1px solid var(--white);
}

.hero .btn1:hover{
    background-color: var(--white);
    color: var(--black);
}

@media screen and (max-width: 500px) {
    .hero {
        width: 100%;
        overflow-x: hidden;
        height: 500px;
        background-image: url('lib/bgimg.png');
        background-size: cover;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero p {
        font-size: 15px;
    }
    .hero .btn-group {
        gap: 10px;
    }
    .hero .btn1, .hero .btn2 {
        height: 35px;
        width: 100px;
        font-size: 12px;
    }
    
}

/*ABOUT SECTION*/
.about{
    display: flex;
    align-items: center;
    margin: 20px auto;
    color: var(--off-whitish);
    font-family: "Montserrat", sans-serif;
}

.about .container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
  }
  
  .about .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 80px;
  }
  
  /* Columns */
  .image-column {
    flex: 0 1 40%; 
    text-align: center;
  }
  
  .text-column {
    flex: 0 1 52%; 
  }
  
  
  .team-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Text styling */
  .heading {
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
  }
  
  .highlight {
    color: #1da1f2;
    font-size: 60px;
  }
  
  .para {
    color: #ccc;
    font-family: poppins, sans-serif;
    font-weight: 200;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    max-width: 600px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
      text-align: center;
    }
  
    .heading {
      font-size: 2.5rem;
    }
  
    .para {
      font-size: 1rem;
    }
  }

/*SERVICES SECTION*/
.what-we-do {
    background-color: #000;
    padding: 20px 0px;
    text-align: center;
  }
  
  .what-we-do .text {
    color: var(--off-whitish);
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    margin-bottom: 30px;
    font-weight: 400;
  }
  
  .services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 15px;
  }
  
  .service p {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    color: var(--off-whitish);
    font-size: 16px;
  }

  /*EVENTS SECTION*/
.events{
    margin: 30px auto;
}
  .events .container {
    display: flex;
    padding: 60px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .left-section {
    max-width: 50%;
  }

  .left-section h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 400;
    color: var(--off-whitish);
    line-height: 1.2;
    margin-top: 12%;
  }

  .left-section h1 span {
    color: var(--blue);
    font-size: 60px;
  }

  .left-section p {
    font-family: poppins, sans-serif;
    font-weight: 200;
    margin-top: 20px;
    color: #ccc;
    font-size: 17px;
    line-height: 1.8;
  }

  .minor{
    margin-top: 15px;
  }

  .view-button:hover {
    background: #33AFFF;
    color: black;
    border: none;
  }

  .right-section {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 20px;
  }

  .card {
    justify-content: center;
    background-color: #111;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    width: 400;
    height: 250px;
    color: white;
    font-size: 0.9rem;
  }

  .pad-card{
    padding: 25px;
  }


  .card img {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  .card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    margin: 10px 0 15px;
    font-weight: 400;
  }

  .card p {
    font-family: poppins, sans-serif;
    font-weight: 200;
    color: var(--off-whitish);
    font-size: 0.85rem;
  }

  @media (max-width: 900px) {
    .container {
      flex-direction: column;
      padding: 40px 20px;
    }

    .left-section {
      max-width: 100%;
      text-align: center;
    }

    .right-section {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      justify-items: center;
      margin-top: 30px;
    }
  }

  /*FUNNI*/
.funni{
    margin-top: 50px;
}

  .funni .line-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }

  .line-row h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--off-whitish);
    font-size: 50px;
    letter-spacing: 0px;
    margin: 0;
    margin: 0 40px;
    flex-shrink: 0;
  }

  .line {
    height: 10px;
    flex-grow: 1;
    border: none;
    background: linear-gradient(to right, gray, #3fa6e0);
  }

  .reverse-line {
    background: linear-gradient(to right, #3fa6e0, gray);
  }

  /*COLLAGE*/
  .smth{
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

  }

  .imgCollage {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 20px;
      max-width: 1200px;
      height: auto;
      width: 90%;
      margin-top: 60px;
    }

    .imgCollage img {
      width: 380px;
      height: 280px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.5);
      transition: transform 0.4s ease;
      opacity: 0.8;
      margin-bottom: 0px !important;
    }

    .imgCollage img:hover {
      transform: scale(1.05);
      opacity: 1;
    }

/* Phone screens */
@media (max-width: 480px) {
  .imgCollage {
    grid-template-columns: 1fr;
    grid-gap: 12px;
  }
  .imgCollage img {
    height: 200px;
    width: 350px;
  }
}

    /*TEAM IMG*/
    .team {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0 auto;
  min-height: 80vh;    
  height: auto;            
  width: 100%;
  background-image: url('lib/grpTeam.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 40px 20px;      
  box-sizing: border-box;  
}

.team h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 5vw, 50px);  
  font-weight: 300;
  color: var(--blue);
  opacity: 0.8;
  text-align: center;
  margin: 5px 20px;
}

.team h1:hover {
  opacity: 1;
}

.team p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2vw, 15px);  
  font-weight: 200;
  color: var(--off-whitish);
  margin: 10px 20px 40px 20px;
  max-width: 700px;     
  line-height: 1.6;
}

/* Phone screens */
@media (max-width: 480px) {
  .team {
    border-radius: 12px;
    padding: 20px 12px;
  }

  .team h1 {
    margin: 5px 10px;
  }

  .team p {
    font-size: 14px;
    margin: 8px 10px 20px 10px;
  }
}

  
/*FOOTER*/
.footer{
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    background-color: var(--black);
    color: var(--off-whitish);
    padding-top: 5%;
    padding-bottom: 2%;
    text-align: left;
}
  
.footer .row{
    padding: 1%;
}
  
.footer .col-md-2{
    padding: 1%;
}
  
.footer h1{
    font-family: "Montserrat", sans-serif;
    color: var(--white);
    font-size: 30px;
    text-align: left;
    font-weight: 500;
}
  
.footer p{
    padding: 1%;
    font-size: 14px;
}

.footer hr{
    margin-top: 30px;
}
  
.footer h2{
    padding: 1%;
    font-size: 18px;
    font-weight: 400;
}
  
.footer img{
    height: 200px;
    width: 200px;
    border-radius: 15px;
    transition: 0.4s;
    padding-bottom: 2%;
    padding: 1%;
}
  
  .footer img:hover{
    transform: scaleX(1.1) scaleY(1.1);
}

.event-main-header {
    text-align: center;
    margin: 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 400;
    color: var(--white);
}

.eventTitle{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #33AFFF;
    margin: 10px;
    text-align: center;
}

.eventDescription{
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    color: var(--off-whitish);
    font-size: 16px;
    line-height: 1.6;
    margin-top:10px;
    margin-bottom: 30px;
    text-align: center;
}

.event-section {
  .grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); 
    gap: 20px;
  }

}

.event-section-header {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    margin: 20px;
}


.carousel-item img {
    width: 100%;
    height: 30rem;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease;
} 

