
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333333;
    overflow-x: hidden;
}



  
  .blurred {
    filter: blur(40px);
    pointer-events: none;
    user-select: none;
  }
  

  
  #mainContent {
    padding: 40px 20px;
    
  }
  
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.523);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  #dialogBox {
    position: relative;
    background: white;
    padding: 0px 28px 25px 25px;
    border-radius: 14px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 300px;
    max-width: 90%;
  }
  
  #dialogBox p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
  }
  
  #applyBtn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
  }
  
  #applyBtn:hover {
    background-color: #094ec1;
  }
 
  .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 22px;
    color: #000000;
    cursor: pointer;
    font-weight: bold;
  }
  
  .close-btn:hover {
    color: #f00a0a;
  }
  

h3 {
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(white, white, rgb(0, 140, 255), blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header {
    background: linear-gradient(150deg, #ffffff, #f7f6f6, #ffffff);
    color: #060606;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
    
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 1.5px;
    position: relative;
}

header .logo img {
    height: 50px;
    margin-left: 10px;
    margin-right: 5px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #000000;
    /* text-decoration: none; */
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
    
}

header nav ul li a:hover {
    color: #246bc7;
    border-bottom: 2px solid rgb(255, 0, 0);

}
/* ===== MOBILE MENU STYLES ===== */
.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 9999;
    background-color: transparent;
    border: none;
    margin-right: 15px;
    font-family: 'Playfair Display', serif;}
  
  @media (max-width: 768px) {
    .menu-btn {
      display: block;
      
    }
  
    header nav ul {
      position: absolute;
      top: 60px; /* below the header */
      right: 10px;
      width: 220px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
      display: none;
      flex-direction: column;
      gap: 16px;
      padding: 20px;
      z-index: 9998;
    }
  
    header nav ul.active {
      display: flex;
    }
  
    header nav ul li {
      list-style: none;
    }
  
    header nav ul li a {
      text-decoration: none;
      color: #111;
      font-size: 16px;
      border-bottom: 1px solid #eee;
      padding-bottom: 5px;
      display: block;
    }
  
    /* Ensure hero section doesn't move */
    .hero-section {
      position: relative;
      z-index: 1;
    }
  }
  
/* Hero Section */
#hero {
    background-image: url('./12.png'); /* Update to the relative path */
    background-size: cover;
    /* background-position: center; */
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    /* text-align: center; */
    border-radius: 0 0 0 0px;
    

}

/* Hero Content Styling */
.hero-content {
   /* Translucent background for better readability */
    padding: 20px;
    border-radius: 10px;
    max-width: 80%; /* Content width control */
    margin: 0 auto; /* Center content */
    margin-left: 80px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Button Styling */
.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    
}
.btn:hover {
    background-color: #03039d;
}
h2{
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 0;
}
p{
    font-size: 20px;
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #hero {
        height: 400px; /* Let the section adjust height on smaller screens */
        padding: 40px 20px;
        border-radius: 0 0 0 60px;
        background-position: right;
    }
    .hero-content {
        max-width: 95%; /* Expand content width on smaller screens */
        padding: 15px;
        margin-left: 0px;
    }
    h2 {
        font-size: 35px;
        margin-left: 20px; /* Adjust heading font size */
    }
    p {
        font-size: 20px; 
        margin-left: 20px; /* Adjust paragraph font size */
    }
    .btn {
        padding: 8px 16px; /* Adjust button padding */
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 30px;
        margin-left: 20px; /* Further reduce heading size */
    }
    p {
        font-size: 0.9rem;
        margin-left: 20px; /* Further reduce paragraph size */
    }
    .btn {
        padding: 6px 12px; /* Further adjust button padding */
        margin-left: 20px;
    }
    
    
}


/* Base styles */
.section {
    padding: 60px 0;
    animation: fadeInUp 1s ease-in-out;
}

.section h2 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    color: #1c1c1e;
}

/* Internship List */
.internship-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Common Styles for Internship Cards */
.internship-card {
    background-color: #ffffff;
    color: #ffffff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 40%;
    min-height: 300px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1.971);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: slideIn 1s ease-in-out;
    position: relative;
    overflow: hidden; /* Ensure background image does not overflow */
}

/* Background Images for Each Card */
.internship-card.web-dev {
    background-image: url('./premium_photo-1675793715030-0584c8ec4a13.avif');
    background-size: cover;
    background-position: center;
}

.internship-card.java {
    background-image: url('./java.avif');
    background-size: cover;
    background-position: center;
}

.internship-card.python {
    background-image: url('./network-3424070_640.jpg');
    background-size: cover;
    background-position: center;
}

.internship-card.android {
    background-image: url('./andr.jpg');
    background-size: cover;
    background-position: center;
}

.internship-card.c-programming {
    background-image: url('./C.avif');
    background-size: cover;
    background-position: center;
}

.internship-card.data-science {
    background-image: url('./android1.avif');
    background-size: cover;
    background-position: center;
}

.internship-card h3 {
    font-size: 29px;
    margin-bottom: 10px;
}

.internship-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.internship-card .btn {
    padding: 10px 20px;
    background-color: #246bc7;
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}



.internship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1.1);
}



/* Form Styles */
form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input,
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form .btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffffff, #ffffff, #ffffff);
    color: rgb(86, 86, 103);
    border-radius: 25px;
}

.btn:hover {
    background: linear-gradient(135deg, rgb(7, 7, 169));
    color: rgb(251, 251, 255);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .internship-card {
        width: 90%;
        min-height: 250px;
    }

    .internship-card h3 {
        font-size: 24px;
    }

    .internship-card p {
        font-size: 14px;
    }

    .form {
        padding: 20px;
    }

    form .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .internship-card {
        width: 100%;
        min-height: 200px;
    }

    .internship-card h3 {
        font-size: 20px;
    }

    .internship-card p {
        font-size: 12px;
    }

    form {
        padding: 10px;
    }

    form .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* About Us Section */
/* Base styles */
.section {
    background-color: #ffffff;
    padding: 10px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;

    /* Animation on page load */
    opacity: 0;
    animation: slideDown 0.6s ease forwards;
}

.why {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.why-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 20px;
    text-align: left;
    mix-blend-mode: multiply;

    /* Animation on page load */
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.3s;
}

.why-image img {
    width: 100%;
    height: auto;
}

.why-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin: 20px;
    text-align: left;

    /* Animation on page load */
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.5s;
}

.why-text p {
    font-size: 20px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Keyframes for animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}




/* About Us Section */
/* Base Styles */
.about1 {
    height: 450px; /* Fixed height */
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center; /* Center content vertically */
    padding-top: 40px;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center; /* Center items vertically */
    height: 100%; /* Full height of the section */
}
.content1, .image1 {
    flex: 1;
    min-width: 300px;
    height: 100%; /* Full height of the container */
}

.content1 {
    padding: 20px; /* Add some padding */
    
}

.content1 h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.content1 h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #ff6f61;
    left: 0;
    bottom: -10px;
}

.content1 p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    color: #000000;
    margin-bottom: 20px;
}

.button1 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #246bc7;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.button1:hover {
    background-color: #0c09c4;
    color: #ffffff;
}

.image1 {
    display: flex;
    align-items: center; /* Center image vertically */
    justify-content: center; /* Center image horizontally */
    mix-blend-mode: multiply;
}

.image1 img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

/* Main Container */
.main-container9 {
    display: flex;
    align-items: center;
    gap: 150px;
    max-width: 1600px;
    margin: auto;
    background: transparent;
    background-color: rgba(255, 255, 255, 0.061);
    height: 650px;
}

.container9 {
    position: relative;
    width: 500px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: transparent;
    mix-blend-mode: multiply;
    padding-left: 120px;
}

.background-image9 {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    padding: 90px 0;
}

.icon9 {
    position: absolute;
    transition: transform 0.3s ease;
}

@keyframes moveLeft {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-5px, 0); }
}

@keyframes moveTowardsCenter {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20px, -20px); }
}

@keyframes moveAwayFromCenter {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes move {
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

@keyframes rotateBackAndFront {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes rotateLeftRight {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(155deg); }
    100% { transform: rotateY(160deg); }
}

.icon19 {
    top: 50%;
    left: 1%;
    width: 150px;
    height: 180px;
    animation: move 10s infinite alternate;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about1 {
        height: auto; /* Adjust height for smaller screens */
        padding: 20px 10px; /* Reduce padding */
        
    }

    .container1 {
        flex-direction: column;
        height: auto; /* Adjust height for smaller screens */

    }

    .content1, .image1 {
        min-width: 100%;
        margin-bottom: 20px; /* Add margin to separate sections */

    }

    .content1 h2 {
        font-size: 28px;
    }

    .content1 p {
        font-size: 1rem;
    }

    .button1 {
        font-size: 14px;
        padding: 8px 16px;
    }

    .main-container9 {
        flex-direction: column;
        gap: 50px;
        height: auto; /* Adjust height for smaller screens */
    }

    .container9 {
        width: 90%;
        padding-left: 0;
    }

    .background-image9 {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .content1 h2 {
        font-size: 24px;
    }

    .content1 p {
        font-size: 1rem;
    }

    .button1 {
        font-size: 12px;
        padding: 6px 12px;
        margin-left: 20px;
    }

    .main-container9 {
        gap: 30px;
    }

    .container9 {
        width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .content1 h2 {
        font-size: 20px;
    }

    .content1 p {
        font-size: 1rem;
    }

    .button1 {
        font-size: 10px;
        padding: 5px 10px;
    }

    .main-container9 {
        gap: 20px;
    }

    .container9 {
        padding-left: 0;
    }
}

/* .icon29 {
    top: 10%;
    right: -1%;
    width: 150px;
    height: 160px;
    animation: rotateBackAndFront 5s infinite alternate;
} */

/* Icon Styles */
.icon39 {
    bottom: 1%;
    right: -3%;
    width: 150px;
    height: 180px;
    animation: rotateLeftRight 3s infinite alternate;
}

.icon49 {
    right: 30%;
    top: -4%;
    width: 150px;
    height: 180px;
    animation: rotateLeftRight 3s infinite alternate;
}

.container9:hover .icon39 {
    animation: moveTowardsCenter 0.3s forwards, rotateLeftRight 2s infinite alternate;
}

.container9:hover .icon19 {
    animation: moveAwayFromCenter 0.3s forwards, move 10s infinite alternate;
}

.container9:hover .icon29 {
    animation: moveLeft 0.3s forwards, rotateBackAndFront 5s infinite alternate;
}

.container9:hover .icon49 {
    animation: moveAwayFromCenter 0.3s forwards, rotateLeftRight 3s infinite alternate;
}

/* Text Content Styles */
.text-content {
    max-width: 500px;
    font-size: 19px;
    flex: 1;
}

.text-content h2 {
    margin-top: 0;
}

/* Contact Button Styles */
.contact-button {
    padding: 10px 20px;
    background-color: #246bc7;
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    margin-left: 30%;
}

.contact-button:hover {
    background-color: #0c3ab9;
    color: #fbfcfd;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .icon39, .icon49 {
        width: 120px;
        height: 150px;
    }

    .text-content {
        font-size: 16px;
        max-width: 90%;
    }

    .contact-button {
        padding: 8px 16px;
        margin-left: 20%;
    }
}

@media (max-width: 768px) {
    .icon39, .icon49 {
        width: 100px;
        height: 120px;
    }

    .text-content {
        font-size: 14px;
        max-width: 100%;
    }

    .contact-button {
        padding: 6px 12px;
        margin-left: 10%;
    }
}

@media (max-width: 480px) {
    .icon39, .icon49 {
        width: 80px;
        height: 100px;
    }

    .text-content {
        font-size: 12px;
        max-width: 100%;
    }

    .contact-button {
        padding: 5px 10px;
        margin-left: 5%;
    }
}
/* Footer Style */
footer {
    background-color: #246bc7;
    color: #d3d7da;
    padding: 25px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #ff6f61;
    left: 0;
    bottom: -5px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bcbec2;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d3d7da;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: #ff6f61;
}

.footer-section a {
    color: #d3d7da;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section a:hover {
    color: #ff2d2d;
}

.social-icons a {
    font-size: 20px;
    color: #d3d7da;
    margin-right: 15px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: #ff1500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #bcbec2;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .why {
        flex-direction: column;
        align-items: center;
    }

    .why-image,
    .why-text {
        max-width: 90%;
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .why-image,
    .why-text {
        max-width: 100%;
        margin: 10px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section p {
        font-size: 12px;
    }

    .footer-section ul li a {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .why-image,
    .why-text {
        margin: 5px 0;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section p {
        font-size: 10px;
    }

    .footer-section ul li a {
        font-size: 10px;
    }

    .social-icons a {
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}


.why-text p {
    position: relative;
    z-index: 1; /* Ensure text is above the shadow */
    font-size: 1.2rem; /* Use a relative unit for font size */
    padding: 1rem; /* Add some padding for spacing */
}

.why-text p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    /* Adjust opacity and color for shadow effect */
    z-index: -1; /* Place shadow behind text */
    filter: blur(5px); /* Adjust blur level as needed */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .why-text p {
        font-size: 1rem; /* Smaller font size for tablets and mobile */
        padding: 0.5rem; /* Reduced padding */
    }

    .why-text p::before {
        filter: blur(3px); /* Less blur on smaller screens */
    }
}

@media (max-width: 480px) {
    .why-text p {
        font-size: 0.9rem; /* Even smaller font size for mobile */
        padding: 0.3rem; /* Further reduced padding */
    }

    .why-text p::before {
        filter: blur(2px); /* Less blur on mobile devices */
    }
}




/* Scroll to Top Button Style */

.section-title {
      text-align: center;
      font-size: 2.5rem;
      margin: 30px 0;
      color: #000000;
      letter-spacing: 2px;
      font-weight: bold;
      opacity: 0;
      transform: translateY(-100%);
    }

    .team-section {
      padding: 60px 20px;
    }

    .team-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 70px;
      margin-bottom: 50px;
    }

    .team-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 30px 20px;
      width: 300px;
      height: 300px;
      text-align: center;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      opacity: 0;
      transform: translateY(100%);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(0) scale(1.03);
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    }

    .team-card img {
      width: 160px;
      height: 160px;
      margin-bottom: 15px;
      transition: transform 0.3s ease;
      margin-top: 20px;
    }

    .team-card:hover img {
      transform: scale(1.1);
    }

    .team-card h3 {
      margin: 10px 0 5px;
      font-size: 18px;
      color: #ffffff;
    }

    .team-card p {
      margin: 0;
      font-size: 14px;
      color: #000000;
    }

    @keyframes slideInBottom {
      0% {
        transform: translateY(100%);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideInTop {
      0% {
        transform: translateY(-100%);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .team-card.animate {
      animation: slideInBottom 1s forwards;
    }

    .section-title.animate {
      animation: slideInTop 1s forwards;
    }

    /* hero animation */
    /* Common animation effects */
    @keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
    @keyframes slideIn { from {transform: translateX(-100%);} to {transform: translateX(0);} }
    @keyframes zoomIn { from {transform: scale(0.5);} to {transform: scale(1);} }
    @keyframes bounce {
      0%, 100% {transform: translateY(0);}
      50% {transform: translateY(-30px);}
    }
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }


    .sec7 {
      background: #ffffff;
      position: relative;
      overflow: hidden;
      height: 450px;
      padding-top: 40px;
    }

    /* Circles */
    .sec7 .circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(95, 223, 223, 0.634);
      animation: floatCircle 6s ease-in-out infinite;
    }
    .circle:nth-child(1) {
      width: 100px; height: 100px; top: 20%; right: 10%;
      animation-delay: 0s;
    }
    .circle:nth-child(2) {
      width: 110px; height: 100px; top: 100%; left: 30%;
      animation-delay: 0s;
    }
    .circle:nth-child(3) {
      width: 500px; height: 60px; top: 100%; left: 70%;
      animation-delay: 1s;
    }

    @keyframes floatCircle {
      0% { transform: translateY(0) rotate(0deg); }
      100% { transform: translateY(-100vh) rotate(360deg); }
    }

    /* Squares */
    .sec7 .square {
      position: absolute;
      width: 50px;
      height: 50px;
      background: rgba(45, 199, 199, 0.598);
      animation: moveSquare 10s linear infinite;
    }
    .square:nth-child(4) { top: 100%; left: 15%; animation-delay: 0s; }
    .square:nth-child(5) { top: 100%; left: 50%; animation-delay: 1s; }
    .square:nth-child(6) { top: 100%; left: 80%; animation-delay: 2s; }

    @keyframes moveSquare {
      0% { transform: translateY(0) rotate(0deg); }
      100% { transform: translateY(-100vh) rotate(360deg); }
    }


/*scroll up button animation*/

/* Scroll to Top Button */
#scrollBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 24px;
  font-weight: bolder;
  background-color: #0c5bdb;
  color: white;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

#scrollBtn:hover {
  background-color: #060a54;
}
