*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;

}



body{
    background:rgb(15, 15, 15);
    font-family: sans-serif;
    color: #a0a0a0;
    line-height: 1.6;
    min-height: 100vh;
}

/* for header section */


.head{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;

}



.hero-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Content on the left, image on the right */
    align-items: center;
    padding: 80px 50px;
    gap: 40px;
    min-height: 500px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ff5722; /* Highlighting color for "Afford" */
}

.hero-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

.link1 img{
    height: 30px;
    width: auto;
    display: inline-block;
    margin-left:10px;
    filter: grayscale(1) invert(0.7);
    margin-bottom: 50px;
    
}


.explore-btn {
    background-color: #4b6cb7;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color: #3b5a9a;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Placeholder for the abstract grid/pattern */
.design-grid-overlay {
    position: absolute;
    width: 80%;
    height: 80%;
    /* This creates the faint grid lines */
    background-image: linear-gradient(to right, rgba(0,0,0,.1) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0,0,0,.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.2;
}

.hero-image {
    width: 80%; /* Adjust size as needed */
    height: auto;
    border-radius: 50%; /* To create the circular crop effect */
    object-fit: cover;
    z-index: 2; /* Keep the image above the grid */
    border: 5px solid white; /* Simulating the glow/ring effect */
    box-shadow: 0 0 0 10px rgba(75, 108, 183, 0.1);
}

/* -------------------- */
/* 3. Stats Section */
/* -------------------- */

.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 40px 50px;
    margin: 40px 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-card {
    text-align: center;
    padding: 20px;
    flex: 1;
    /* Adding subtle separation lines */
    border-right: 1px solid #eee; 
}

.stat-card:last-child {
    border-right: none;
}

.stat-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    /* You would need to use your own placeholder images or icons */
}

.stat-card h3 {
    font-size: 24px;
    color: #4b6cb7; /* Match primary color */
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 14px;
    color: #777;
}

/* -------------------- */
/* Optional: Floating Icons (Basic representation) */
/* -------------------- */


@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-container {
        padding-top: 40px;
    }

    .stats-section {
        flex-direction: column;
        margin: 20px;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .stat-card:last-child {
        border-bottom: none;
    }
}

.first{
    display: flex;
    justify-content: space-between;
    background-color: #222020;

}

#lg{
    height: 40px;
    width: auto;
    margin-left: 40px;    
}


#navigation{
      margin:auto;
}

nav {
    display: grid;
    max-width: 500px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: auto;
    gap: 10px;
    
}

nav a{
    text-decoration: none;
    color:#ffffff;
    transition: color 0.2s ease;
    transition: background-color 0.2s ease;
    border: 2px solid #3f3f3f;
    border-radius: 10px;
    text-align: center;
    background-color: #2f2b2b;
}

.active , nav a:hover{
    color: #ffbf00;
    background-color:midnightblue;
}

.reg button{
    justify-content: flex-end;
    margin:  0.6rem;
    font-size: 1rem;
    background-color: #272424;
    color: whitesmoke;
    border-color: #000;
    border: none;
    cursor: pointer;
}

/* main section */
 
.introduction{
    display: grid;
    grid-template-columns: 2fr 1fr;
    max-width :1400px;
    margin: auto;
    height: auto;
    gap: 100px;
    margin-top: 50px;
}

.intro{
    color: white;
    max-width: 80%;
}

.link{
    text-align: center;
    margin:15px;
    
} 

.link img{
    height: 30px;
    width: auto;
    display: inline-block;
    margin-left:10px;
    filter: grayscale(1) invert(0.7);
    transition:filter 0.3s ease;
}

.social img:hover{
    filter: grayscale(0) invert(0);
}
    




#banner{
    display: block;
    height: 150px;
    width: auto;
    margin: 20px;

}

.ban1{
    color: blueviolet;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 10px;

}

.ban3{
    margin-bottom: 80px;
    color: grey;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.span{
    color:white
}

.ban2{
    color: grey;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom:30px;
    
}


.containcourse{
    display: grid;
    width: 1400px;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(80px,1fr));
    gap: 30px;
    margin: auto;

}


.line{
    width: 100px;
    height: 5px;
    background-color: blueviolet;
    margin: auto;
    margin-bottom: 50px;


}



.card{
    display:inline-block;
    background-color:rgb(47, 45, 45);
    border-radius: 10px;
    cursor: pointer;
    margin: 30px;
    border: 2px solid rgb(47, 45, 45);
    transition: transform 0.3s ease;
    transition: box-shadow 0.3s ease;
}

.card:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 8px 8px rgb(84, 84, 235);
}

.card:hover{
    background-color:rgb(58, 55, 58);
    border: 2px solid white;
}

.box{
    display: inline-block;
   
}
.img{
    height: 200px;
    width: 100%;
    border-radius: 10px;
    
    
}

.image{
    position: relative;
}
.off{
    font-size: 15px;
    color:antiquewhite;
    background-color: rgba(220, 20, 60, 0.384);
    position: absolute;
    bottom: 10px;
}

.marg{
    margin-left: 10px;
}

.level{
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}



.courselevel{
    font-size: 15px;
    font-weight: bold;
    color: white;
    background-color:rgb(92, 3, 130);
    border-radius: 10px;
    padding: 5px;

}

.lectnum{
    font-size:medium;
    color: white;
    background-color: black;
    border-radius: 10px;
    position: absolute;
    right: 5px;
    padding: 5px;
}

.coursename{
    font-size:larger;
    font-weight:bolder;
    margin-bottom: 10px;
    color: white;
}

.instructor{
    margin-top: 10px;
    margin-bottom: 10px;
    color: darkgrey;

}

.description{
    font-size:medium;
    margin-top: 10px;
    margin-bottom: 10px;
    color: darkgrey;
}

.des{
    margin-left: 20px;
}

.des1{
    margin-bottom: 7px;
}

.keyword{
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}

.keyword span{
    font-size: 1rem;
    font-weight: normal;
    color:darkgrey;
    background-color:black;
    border-radius: 10px;
    padding: 5px 8px;
    margin-right: 5px;
}


.keyword2{
    font-size: 15px;
    font-weight:normal;
    color: darkgrey;
    background-color:black;
    border-radius: 10px;
    position: absolute;
    left: 80px;
    padding: 5px;
}

.keyword3{
    font-size: 15px;
    font-weight:normal;
    color: darkgrey;
    background-color:black;
    border-radius: 10px;
    position: absolute;
    right: 10px;
    padding: 5px;
}


#instruct{
    display: grid;
    max-width: 1000px;
    height:75vh;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin: auto;
    border-radius: 15px
}


.instruct1{
    height:75vh;
    background-color: #2a2a2a; 
    border: 5px solid #3a3a3a;
    border-radius: 15px;
    transition: transform 0.3s ease;
    transition: box-shadow 0.3s ease;

}

.instruct1:hover{
    border: 5px solid rgb(68, 68, 137);
    transform: scale(1.1);
    box-shadow: 0px 0px 8px 8px rgb(84, 84, 235);
}


.instruct2{
    height: 75vh;
    background-color: #2a2a2a;
    border: 5px solid #3a3a3a;
    border-radius: 15px;
    transition: transform 0.3s ease;
    transition: box-shadow 0.3s ease;

}

.instruct2:hover{
    border: 5px solid rgb(68, 68, 137);
    transform: scale(1.05);
    box-shadow: 0px 0px 8px 8px rgb(27, 89, 214);

}

.profile{
    text-align: center;
    padding-top: 20px;
}

.profile img{
    height: 180px;
    width: 180px;
    border-radius: 50%;
    border: 1px solid #3a3a3a;
    
}

.profile h2{
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 8px;
    color: #e0e0e0;
}
 .profile p{
    background-color: #1e1e1e;
    padding: 5px 15px;
    color: #ffbf00;
    border: 1px solid #3a3a3a;
    font-size: 0.8rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
 }

 .spec p{

    background-color: #1e1e1e;
    padding: 5px 15px;
    color:antiquewhite;
    border: 1px solid #3a3a3a;
    font-size: 0.8rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;

}

 .aboutprofile p{
    justify-content:space-between;
    padding: 20px;
    font-size: medium;
}

.social{
    text-align: center;
     margin:15px;
    
} 

.social img{
    height: 30px;
    width: auto;
    display: inline-block;
    margin-left:10px;
    filter: grayscale(1) invert(0.7);
    transition:filter 0.3s ease;
}

.social img:hover{
    filter: grayscale(0) invert(0);
}


/* Alumni Placement Section */
/* -------------------- */

.alumni-placement-section {
    padding: 80px 0;
    text-align: center;
    background-color: #202023; /* Light background to match the site */
}

.container {
    max-width: 1200px; /* Constrain the width */
    margin: 0 auto;
    padding: 0 20px;
}

.alumni-placement-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a2e; /* Dark text color */
    margin-bottom: 40px;
}

.logos-grid-wrapper {
    background-color: rgb(18, 17, 17);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Subtle shadow around the box */
    margin-bottom: 20px;
}

.logos-grid {
    display: grid;
    /* Create a grid with 7 equal columns */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; /* Spacing between logos */
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 60px; /* Fixed height for consistent rows */
}

.logo-item img {
    /* Make logos scale to fit, maintaining aspect ratio */
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Optional: reduce opacity for a muted, corporate look */
    opacity: 0.85; 
    transition: opacity 0.3s;
}

.logo-item img:hover {
    opacity: 1; /* Full opacity on hover */
}

.hiring-partners-count {
    font-size: 16px;
    color: #c0b3b3;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* -------------------- */
/* Responsive Adjustments */
/* -------------------- */

@media (max-width: 1200px) {
    /* Reduce to 6 columns on slightly smaller screens */
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    /* Reduce to 4 columns on tablets */
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    /* Reduce to 3 columns on mobile phones */
    .logos-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}


/* -------------------- */
/* Contact Section */
/* -------------------- */

#contact-section {
    background-color: #18181c; /* Dark background */
    color: #f0f0f0; /* Light text for contrast */
    padding: 80px 20px;
    text-align: center;
}

#contact-section .container {
    max-width: 900px;
    margin: 0 auto;
}

#contact-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff; /* White for the "Get In" part */
}

#contact-section h2 .highlight {
    color: #8a2be2; /* Purple highlight for "Touch" */
}

#contact-section .subtitle {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    display: flex;
    flex-wrap: wrap; /* Allows rows to wrap */
    gap: 30px; /* Spacing between form groups */
    justify-content: space-between;
}

.form-row {
    display: flex;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap; /* Allows fields within a row to wrap on smaller screens */
}

.form-group {
    flex: 1; /* Allows form groups to take equal width */
    min-width: 280px; /* Minimum width before wrapping */
    text-align: left;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ccc;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: #666; /* Icon color */
    font-size: 16px;
    z-index: 1;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Adjust padding for icon */
    background-color: #2a2a3e; /* Darker input background */
    border: 1px solid #3a3a4e;
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* For inputs without an explicit icon (like Subject) */
.form-group .input-with-icon:not(:has(i)) input {
    padding-left: 15px; /* No icon, so no need for left padding */
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #8a2be2; /* Highlight border on focus */
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing only */
    min-height: 50px;
    padding-top: 15px; /* Adjust for text area icon */
}


.send-message-btn {
    background-image: linear-gradient(to right, #8a2be2, #4b6cb7); /* Gradient button */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    height: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 100px;
    margin-left: auto; /* Center button if it doesn't fill width */
    margin-right: auto; /* Center button */
}

.send-message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

/* -------------------- */
/* Responsive Adjustments */
/* -------------------- */

@media (max-width: 768px) {
    #contact-section h2 {
        font-size: 38px;
    }

    #contact-section .subtitle {
        font-size: 16px;
    }

    .form-row {
        flex-direction: column; /* Stack form groups vertically on smaller screens */
        gap: 20px;
    }

    .form-group {
        min-width: 100%; /* Take full width */
    }

    .contact-form {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 32px;
    }

    .contact-section .subtitle {
        font-size: 14px;
    }

    .send-message-btn {
        width: 100%; /* Full width button on very small screens */
        padding: 15px 20px;
    }
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #ddd;
}

.footer {
  background-color: #0f0f0f;
  padding: 40px 10%;
}

.footer-line {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #a020f0, #ff66cc);
  margin-bottom: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-title span {
  color: #a020f0;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #bcbcbc;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #bcbcbc;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #a020f0;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #1b1b1b;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #a020f0;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom span {
  color: #a020f0;
}


