/* General Styles */
body {
   

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    font-family: "Raleway", sans-serif;
  
    
    background-color: rgb(244,245,255);
   
}
.raleway-unique {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200; /* Example weight, you can change it as needed */
    font-style: normal;
  }

a {
    text-decoration: none;
    color: inherit;
}


.section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f50;
    padding: 10px;
}
.text {
    color: white;
    font-size: 20px;
    margin-right: 20px;
}
.button {
    background-color: white;
    color: #f50;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #ff7043;
}
@media (max-width: 600px) {
    .text {
        font-size: 16px;
    }
    .button {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* Navbar Styles */
.navbar {
    background-color: #fdfeff;
    color: rgb(5, 5, 5);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    color: #060606;
    font-size: large;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
  
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #e87a05;
}

/* Add caret to dropdown */
.navbar ul li.dropdown > a::after {
    content: '\f0d7'; /* Font Awesome down arrow (caret) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
}

.navbar ul li ul {
    position: absolute;
    top: 70%;
    left: 0;
    background-color: #fbfcfd;
    display: none;
    list-style: none;
    z-index: 998;
}

.navbar ul li:hover ul {
    display: block;
}

.navbar ul li ul li a {
    padding: 0.5rem 1rem;
    width: 200px;
    text-align: left;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgb(12, 12, 12);
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column; /* Keep this to stack items vertically */
        position: absolute;
        top: 60%;
        left: 0;
        background-color: #fdfefe;
        color: #000;
        width: 100%;
    
        display: none;
        z-index: 100;
        padding: 1rem 0; /* Add padding for better spacing */
    }

    .navbar ul.active {
        display: flex;
        flex-direction: column; /* Ensure items stack vertically */
        align-items: flex-start; /* Align items to the left */
    }

    .navbar ul li {
        width: 100%; /* Make each item full width */
    }

    .navbar ul li a {
        width: 100%; /* Make links full width for easier clicking */
        text-align: left; /* Align text to the left */
    }

    .navbar ul li ul {
        position: static; /* Ensure dropdowns are aligned properly */
    }

    .navbar ul li ul li a {
        padding: 0.5rem 1rem; /* Keep padding for dropdowns */
    }

    .menu-toggle {
        display: block;
    }
}


.leadership-description h2, h3, p {
    line-height: 1.5;
}

.leadership {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    width: 70%;
    margin: 50px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.leader {
    display: flex;
    flex-direction: column; /* Default for mobile */
    align-items: center;
    padding: 20px;
}

.leader-image {
    
    width: 100%;
    max-width: 300px; /* Max size for larger screens */
    
    margin-bottom: 15px;
}

.leader-description {
    text-align: left;
    justify-content: left;
    max-width: 600px; /* Limit the width for readability */
}

h2 {
    margin-bottom: 20px;
    font-size: 2rem; /* Responsive heading */
}

h3 {
    font-size: 1.5rem; /* Responsive subheading */
}

p {
    font-size: 1rem; /* Responsive paragraph */
}

@media (min-width: 768px) {
    

    .leader {
        flex-direction: row; /* Change to row for tablets and larger */
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .leader-image {
        margin-right: 20px; /* Space between image and description */
    }

    h2 {
        font-size: 2rem; /* Larger heading on bigger screens */
    }

    h3 {
        font-size: 2rem;
    }

    p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
   

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.2rem;
    }
}

/* Responsive Styles */

/* Tablets (Portrait, 768px and up) */
/* Tablets (Portrait, 768px and up) */
@media (max-width: 768px) {
    
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
    }



.contact{
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: rgb(78,90,246);
    color: rgb(254,74,10);
    font-size: 40px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
}

    












    


    .global-presence {
        text-align: center;
        padding: 50px 20px;
        background-color: rgb(254,74,10);
        width: 78%;
        margin: 40px auto;
    }
    
    .global-presence h2 {
        font-size: 2.5rem;
        color: #fefdfd;
        margin-bottom: 10px;
    }
    
    .global-presence p {
        color: #fefcfc;
        font-weight: 500;
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .location {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
     width: 100%;
     max-width: 1100px;
     margin: 20px auto;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }
    
    .location-image {
        width: 100%;
        max-width: 900px;
        height: auto;
        margin-bottom: 20px;
    
    }
    
    .location-info {
        max-width: 600px;
        color: black;
    }
    
    .location-info h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .location-info p {
        font-size: 1rem;
        color: #000;
        margin: 5px 0;
    }
    
    /* Responsive design */
    
    @media (min-width: 768px) {
        .location {
            flex-direction: row;
            justify-content: center;
            align-items: flex-start;
        }
    
        .location-image {
            margin-right: 20px;
            max-width: 300px;
        }
    
        .location-info {
            text-align: left;
        }
    }
    
    @media (min-width: 1024px) {
        .global-presence h2 {
            font-size: 3rem;
        }
    
        .global-presence p {
            font-size: 1.2rem;
        }
    
        .location-info h3 {
            font-size: 2rem;
        }
    
        .location-info p {
            font-size: 1.1rem;
        }
    }
    
    
    @media (min-width: 480px) {
        
        .global-presence h2 {
            font-size: 1.5rem;
        }
    
        .global-presence p {
            font-size: 1rem;
        }
    
        .location-info h3 {
            font-size: 1.4rem;
        }
    
        .location-info p {
            font-size: 1rem;
        }
    }
    
    
    
    



 .containerr {
        display: flex;
        justify-content: space-around; /* Space between CEO and CTO sections */
        background-color:rgb(249, 249, 248);
        width: 80%;
        align-items: center;
        margin: 30px auto;
        height: 80vh; /* Full screen height */
    }
    
    .contentt {
        text-align: center;
    }
    
    /* Lines with Image */
    .lines {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    
    /* Center Image */
    .center-image {
        width: 250px; /* Fixed size for image */
        height: 250px;
        border-radius: 50%; /* To make the image circular */
    }
    
    /* Title and Description */
    .title {
        font-size: 1.5rem;
        margin-top: 10px;
    }
    
    .description {
        font-size: 1.2rem;
        color: rgb(2, 2, 2);
        margin-top: 5px;
    }
    
    /* Responsiveness */
    @media (max-width: 768px) {
        .title {
          font-size: 1.2rem;
        }
    
        .description {
          font-size: 0.9rem;
        }
    
        .center-image {
          width: 200px;
          height: 200px;
        }
    }
    
    @media (max-width: 480px) {
        .containerr {
            flex-direction: column; /* Stack CEO and CTO vertically */
        }
    
        .title {
          font-size: 1rem;
        }
    
        .description {
          font-size: 0.8rem;
        }
    
        .center-image {
          width: 150px;
          height: 150px;
        }
    }
    