/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0; 
    background-color: rgb(248,236,231);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.logo{
    padding-left: 0;
    margin: 0;
    
}

/* Target the elements you want to scroll to */
#services, #founders, #contact {
    scroll-margin-top: 7rem; /* Adjust this value to match your navbar height + desired offset */
  }

#pictureSlide{
    scroll-margin-top: 5rem  !important;
}
#testimonials{
    scroll-margin-top: 5rem;
}



.navBar {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 0 2rem;
    height: 6rem;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white;   
}

.logo img{
    padding: 0;
    margin: 0;
    height: 100px;
    max-width: 200px; /* or 120px, depending on your layout */
    height: auto;
    object-fit: contain;
}


.rightNav .navUL {
    display: flex;
    gap: 1rem;
    list-style: none;
  }


.navListItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 8rem;
    color: #000000; 
    position: relative; 
    transition: color 0.3s ease;
    font-weight: lighter;
    text-align: center;
}


.navULtext {
    font-size: 1rem;
    text-align: center;
}
.navULtext a{
    text-decoration: none;
    color: #000000; 
}


.navULredbar {
    background-color: rgb(136, 24, 24); 
    position: absolute;
    bottom: -5px; 
    left: 50%; 
    transform: translateX(-50%);
    height: 3px;
    width: 0; 
    transition: width 0.3s ease; 
}

.navListItem:hover {
    color: rgb(0, 0, 0);
    font-weight: normal;
}

.navListItem:hover .navULredbar {
    width: 3rem; 
}
.navListItem:hover .navULtext a {
    color: black; 
    cursor: pointer;
}
.navBar {
    transition: background-color 0.3s ease-in-out;
}
.navBar.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navListItem.dropdown {
    position: relative;
  }
  .navBar, .navBar.scrolled {
    background-color: #ffffff !important; /* Forces white background */
    opacity: 1 !important;                /* Ensures it’s fully opaque */
    backdrop-filter: none !important;     /* Removes any blur effect */
    transition: background-color 0.3s ease-in-out;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #800020, #a0002a);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, white, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #800020;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #800020;
    transform: translateY(-2px);
}

.btn-outline {
    background: #f5f5f5;
    color: #800020;
    border: 1px solid #e0e0e0;
}

.btn-outline:hover {
    background: #e0e0e0;
}

  /* Dropdown menu styling */
  .dropdown-menu {
    display: none; /* Hide by default */
    position: absolute;
    top: 120%; /* Position directly below the parent */
    left: 0;
    background-color: white;
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;

    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  /* Dropdown menu items */
  .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  /* Change background on hover */
  .dropdown-menu li a:hover {
    background-color: #f2f2f2;
  }

  .navListItem.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  
  /* Show the dropdown when hovering over the parent */
  .navListItem.dropdown:hover .dropdown-menu {
    display: block;
  }
    
  .pictureSlide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
    padding: 5rem 3rem;
    background-color: #f9eae5;
}

.pictureSlide.visible {
    opacity: 1;
    transform: translateY(0);
}

.pictureSlideText {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1rem;
    max-width: 760px;
    margin-bottom: 2rem;
}

#relevantTalent {
    color: #000;
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
}

#delivered {
    color: #ad2a24;
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0.3rem 0;
    animation: slideIn 10s infinite;
    animation-fill-mode: forwards;
}

.belowPunchline .oneLiner {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #222;
    letter-spacing: 0.5px;
    line-height: 1.7;
    text-align: justify;
    max-width: 95%;
}

.getInTouch {
    display: flex;
    align-items: center;
    }

.getInTouchButton {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ad2a24;
    margin-right: 0.5rem;
}

.getInTouch a img {
    height: 30px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.getInTouch a img:hover {
    transform: translateY(-4px);
}

/*pictureSlideImage {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
*/
.pictureSlideImage img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@keyframes slideIn {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    90% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pictureSlide {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .pictureSlideText {
        align-items: flex-start;
        padding: 0;
        margin-top: 2rem;
    }

    #relevantTalent {
        font-size: 1.8rem;
    }

    #delivered {
        font-size: 2.5rem;
    }

    .belowPunchline .oneLiner {
        width: 100%;
        font-size: 1rem;
    }

    .pictureSlideImage {
        padding: 1rem 0;
        width: 100%;
    }

    .getInTouch {
        flex-wrap: wrap;
        gap: 10px;
    }

    .getInTouchButton {
        width: auto;
        padding: 0;
        height: auto;
    }
}




@keyframes blink {
    0% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
#currentOpeningsButton{
    padding: 2px;
    margin-left: 70px;
    background-image: radial-gradient(circle, rgba(173,42,36,255), rgb(255, 31, 6));
    height: 65px;
    width: 150px;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    animation: blink 2s infinite;
    transform: translateY(2px);
}

#currentOpeningsButton {
    box-shadow: 0 5px 15px rgba(173, 42, 36, 0.4);
    transition: transform 0.3s ease-in-out;
}
#currentOpeningsButton:hover {
    transform: translateY(-5px);
}


/*.belowPunchline{
    display: flex;
}*/
.imageCarousel {
    width: 65%;
    height: 450px;
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 3rem;
    background-color: rgba(0, 0, 0, 0);

}

/* Smooth transition for fade effect */
.imageCarousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out; /* Smooth fade */
}

/* Navigation Buttons */
.imageCarousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
}
.ourTeamTitleRedBar{
    background-color: rgb(165, 28, 28);
    position: absolute;
    transform: translateY(40px);
    height: 3px;
    width: 7%;
    transition: width 0.3s ease;
    margin-top: 0;
    margin-bottom: 15px;
}

#prevButton {
    left: 10px;
}

#nextButton {
    right: 10px;
}

/* Button Images */
.imageCarousel button img {
    width: 30px;
    height: 30px;
    filter: invert(1); /* Make icons visible */
}

.currentOpeningsAndServices {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    /*background-color: rgb(173,42, 36);*/
}



.founders{
    padding-top: 80px;
    padding-right: 40px;
    padding-left: 40px;
    margin-bottom: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.founderCards{
    display: flex;
    transform: translateY(30px);
}
.founderContent{
    align-items: center;
    width: 300px;
    padding-right: 20px;
    padding-left: 20px;
    color: rgb(0, 0, 0);
}

.founderTitle{
    font-size: 2rem;
    color: rgb(42, 72, 100);
    font-weight:500;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* Ensures the red bar positions relative to this container */
    margin-bottom: 20px;
}

.founderName{
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 1.3rem;
    font-weight: 500;
}
.founderBG{
    text-align: justify;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding-bottom: 7rem;
}

.serviceIcon{
    height: 50px;
}

.services {
    width: 100%; /* Adjust the width to fit next to the side panel */
    padding: 0 1rem; /* Adds spacing for better readability */
}


.lateralHiring, .campusHiring, .projectHiring {
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    border-radius: 7px;
    display: flex;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7); /* Subtle shadow */
    backdrop-filter: blur(60px) ; /* Stronger blur and saturation */
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    padding: 0 20px; /* Added some inner padding for better spacing */
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Adds a subtle border for definition */
}

.lateralHiringContent, .campusHiringContent, .projectHiringContent{
    background-color: white;
    width: 90%;
    padding: 20px 30px;
    margin: 20px;
    border-radius: 10px;
    color: rgb(55, 55, 55);
    
}
.lateralHiringTitle p, .campusHiringTitle p, .projectHiringTitle p{
    font-size: 1.7rem;
    color: rgb(58, 100, 139);
    font-weight: 600;
}
.lateralHiringText, .campusHiringText, .projectHiringText{
    color: rgb(55, 55, 55);
    text-align: justify;
    letter-spacing: 1px;
}
.lateralHiringContent ul, .campusHiringContent ul, .projectHiringContent ul{
    text-align: justify;
    letter-spacing: 1px;
}
.lateralHiringContent button, .campusHiringContent button, .projectHiring button{
    margin: 20px 0;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    background-color:rgba(173,42,36,255);
    border: 1px solid var(--button-border);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    color: white;
    font-weight: lighter;
    height: 50px;
    cursor: pointer;
    width: 120px;
    transition: all var(--transition-speed);
    transform:translateY(-10px);
    transition: transform 0.2s ease-in-out, background-color 0.3s;
    
}
.lateralHiringContent button:hover, .campusHiringContent button:hover, .projectHiringContent button:hover{
    background-color: rgb(138, 34, 34);
    color: white;
    border: 1px solid var(--button-hover-border);
    transform: translateY(-15px);
    padding: 2rem;
}

.hiringCard {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 70%;
    left: 0;
}
.bgImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('iMAGES/your-background.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; /* Controls how subtle the background looks */
    z-index: 0;
    filter: brightness(0.9) blur(1px);
}
.bgImage img{
    width: 100%;
}
.hiringContent {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9); /* Optional: semi-transparent card feel */
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.testimonials {
    width: 95%;
    top: 100px;
    
    padding: 2rem 0;
    text-align: center;
}

/* Title */
.testimonialTitle {
    padding-top: 20px;
    font-size: 2rem;
    color: rgb(42, 72, 100);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

/* Red Bar Under Title */
.testimonialTitleRedBar {
    background-color: rgb(165, 28, 28);
    position: absolute;
    transform: translateX(43vw);
    height: 3px;
    width: 8.5%;
    transition: width 0.3s ease;
    margin-top: 0;
    margin-bottom: 15px;
}
/* Main Container for Testimonials */
.testimonialsContent {
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness */
    justify-content: center;
    gap: 2rem; /* Adds spacing between testimonial cards */
    padding: 2rem;
}

/* Testimonial Card */
.testimonialCard {
    background-color: rgb(170, 45, 37);
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    min-width: 300px; /* Ensures it wraps on smaller screens */
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

/* Testimonial Text */
.testimonialText, .testimonialName, .testimonialPost {
    text-align: center;
    letter-spacing: 1px;
    color:white;
}

/* Name and Post Styling */
.testimonialName {
    font-weight: 600;
    margin-top: 10px;
}

.testimonialPost {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}


.contact{
   display: flex;
   margin-top: 7.5rem;
   padding: 30px;
   background-color: rgba(173, 42, 36, 255);
}
.disclaimer{
    width: 50%;
}
.disclaimerTitle, .contactUsTitle, .quickEnquiryTitle{
    text-align: center;
    font-size: 1.2rem;
    color:  rgb(42,72,100);
    font-weight: 500;
}
.disclaimerText{
    padding: 0 1rem;
    color: white;
    
    text-align: center;
}

.contactUs{
    width: 50%;
    align-items: center;
}

.contactUs .address,
.contactUs .emailID,
.contactUs .phoneNumber {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  letter-spacing: 0.3px;
  text-align: center;
  color: white;
}

.contactUs img {
  margin-right: 10px;
  height: 20px;
}
@media (max-width: 768px) {
    .navBar {
      flex-direction: column;
      height: auto;
      padding: 10px;
      position: static;
    }
    .navUL {
      flex-direction: column;
      gap: 10px;
    }
    .founderCards {
      flex-direction: column;
      align-items: center;
    }

    .ourTeamTitleRedBar{
        visibility: hidden;
    }
    .imageCarousel{
        width: 120%;
    }
    .contact{
        display:flex;
        flex-direction: column;
        align-items: center;
    }
    .disclaimer{
        width: 100%;
    }
    .currentOpeningsAndServices{
        transform: translateY(12rem);
        padding: 4rem 0;
        margin: 2rem 0;
        display: flex;
        align-items: centers;
    }
    .services{
        width: 100%;
    }
    .imageCarousel{
        background-color: black;
        width: 100vw;
        height: 400px;
    }
    .imageCarousel img{
        width: 90%;
    }
    
  }

  .slides{
    width: 80%;
    height: 100%;
    position: absolute;
    align-self: auto;
  }
  
  

  .navBar.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pictureSlide h1, .pictureSlide p {
    animation: fadeInUp 1s ease-in-out;
}
#relevantTalent {
    font-size: 3.5rem;
    font-weight: 700; /* Bolder impact */
    letter-spacing: -0.5px;
}
/*.lateralHiring, .campusHiring, .projectHiring {
    transition: all 0.7s ease-in-out;
}
.lateralHiring:hover, .campusHiring:hover, .projectHiring:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}*/

.testimonials {
    padding: 20px;
    padding-top: 5rem;
}
.testimonialCard:hover{
    transform: scale(1.05);
}

/*.lateralHiring, .campusHiring, .projectHiring {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}
.lateralHiring:hover, .campusHiring:hover, .projectHiring:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.lateralHiring, .campusHiring, .projectHiring {
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}
.lateralHiring::before, .campusHiring::before, .projectHiring::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #A52A2A, #d16161);
    z-index: -1;
    border-radius: 12px;
}*/
.services {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hiringCard {
    width: 80%;
    background: rgba(255, 0, 0, 0.2); /* Subtle red glass effect */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hiringCard:hover {
    transform: scale(1.05);
}

.bgImage {
    width: 100%;
    height: 70px;
    background: url('your-image.jpg') center/cover no-repeat;
    border-radius: 10px;
}

.hiringContent {
    padding: 15px;
    letter-spacing: 1px;
}
.hiringContent h2{
    color: rgba(42,72,100);
    font-size: 2rem;
}

.hiringText {
    font-size: 1rem;
    color: #333;
}

.hiringEdv {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    color: #d32f2f;
}

ul {
    padding-left: 15px;
}

button {
    background: #d32f2f;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background: #b71c1c;
    transform: translateY(-5px);
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #ccc;
    background: #1a1a1a;
    padding-bottom: 1.5rem;
}
