@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

/* Top Contact Bar Styles */
.top-contact-bar {
    background-color: #8c748c;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f0f0f0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: relative;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 500;
    padding: 5px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #007bff;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .contact-info .info-text {
        display: none; /* Hide text on small screens, show only icons */
    }
    
    .top-contact-bar .container {
        padding: 0 10px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .main-nav ul.show {
        display: flex;
    }
    
    .main-nav ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .top-contact-bar {
        padding: 5px 0;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

.header {
    width: 100%;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-MD {
    min-height: 65vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url();
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 40px;
}

.header-DM {
    min-height: 65vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url();
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 40px;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}


nav img {
    width: 100px;
}

.selective:hover .submenu {
    display: block;
    position: absolute;
    background-color: transparent;
}
  
.submenu {
    display: none;
    list-style: none;
    padding: 0;
    padding-top: 5px;
}
  
.submenu li {
    display: block;
}
  
.submenu li a {
    color: white;
    text-decoration: none;
    padding: 2px 5px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 2px 8px;
    position: relative;
    
}

.nav-links ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
}

.nav-links ul li:hover::after {
    width: 100%;
}

nav .nav-links ul li a:hover {
    color: #5b2ecc;
    transition: .4s;
}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    color: #fff;
    font-size: 62px;
    margin-bottom: 18px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 18px;
    color: #fff;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin-left: 17px;
}

.hero-btn:hover {
    border: 1px solid #cc2eaf;
    background: #c42ecc;
    transition: 1s;
}

nav .fa {
    display: none;
}

@media(max-width: 700px) {
    .hero-btn {
        margin-bottom: 17px;
    }
    .header {
        margin-bottom: 100px;
        overflow: hidden;
        max-width: 100%;
    }
    .text-box h1 {
        font-size: 22px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: fixed;
        background: #fbd3f2;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: #000000;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    nav img {
        width: 90px;
    }
}




body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.softwares {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.softwares h1 {
    color: #000;
}

p, small {
    color: #8f8f8f;
}

p {
    font-size: 0.9em;
    line-height: 23px;
    color: #fff;
}

h1 {
    color: #fff;
    font-size: 37px;
    font-weight: 600;
    margin: 0;
}

.skewed {
    width: 45em;
    color: #f1f1f1;
    display: flex;
    background: #302f2f;
    margin: 2em 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    margin-top: 30px;
}

a {
    color: #fff;
}

.text {
    padding: 1.5em;
    width: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
}

.text h1 {
    font-size: 28px;
    color: #fff;
}

.text p {
    color: #fff;
}

.image {
    width: 50%;
    height: 17em;
    position: relative;
    overflow: hidden;
}

.image::before {
    content: '';
    position: absolute;
    left: -6.1em;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    background: #302f2f;
    width: 40%;
    height: 140%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.skewed-left .image::before {
    transform: translateY(-50%) rotate(-20deg);
    left: initial;
    right: -6.1em;
}

img {
    width: 140%;
}

@media(max-width: 700px) {
    p, small {
        color: #8f8f8f;
        text-align: center;
    }
    .softwares {
        padding: 0px;
    }

    .softwares h1 {
        margin-bottom: 40px;
    }

    .skewed, .skewed-left {
        flex-direction: column;
        margin: 0 0 40px 0; /* Increase space between columns */
        width: 110%; /* Adjust width for mobile view */
    }

    .image {
        display: none; /* Hide images on mobile */
    }

    .text {
        width: 100%; /* Adjust width to full when images are hidden */
        padding: 15px;
    }

    .text h1 {
        font-size: 21px;
    }

    h1 {
        margin-top: 20px;
        font-size: 28px;
        padding-bottom: 5px;
    }

    p {
        text-align: center;
        font-size: 0.8em;
        padding-bottom: 30px;
    }
}



/*--------- footer --------*/

.footer-sr {
    color: #000000;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer-sr p{
    color: #000000;
}

.footer-sr h4 {
    color: #000000;
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons a {
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o {
    color: #f44336;
}


/*--------------------------------- About Us Page -------------------------------*/

.sub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(about\ u.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}

.sub-header h1{
    color: #fff;
}

.sub-header-2 {
    height: 25vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(about\ u.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}

.about-us {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img {
    width: 60%;
    padding-left: 80px;
}

.about-col h1 {
    color: #050505;
    padding-top: 100px;
    font-size: 50px;
}

.about-col h3 {
    color: #fff;
}

.about-col p {
    color: #fff;
    padding: 15px 0 25px;
}

.req {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    margin-bottom: 80px;
}

.req h1{
    color: #fff;
}

.req h4{
    background-color: #929090;
    color: #000;
    margin-bottom: 7px;
}

.req a{
    color: #fff;
    text-decoration: underline;
}

.red-btn {
    border: 1px solid #cc2eaf;
    background: transparent;
    color: #cc2eaf;
}

.red-btn:hover {
    color: #fff;
}

@media(max-width: 700px) {
    .sub-header {
        overflow: hidden;
        max-width: 100%;
    }
    .about-col img {
        width: 100%;
        height: auto;
    }
    .about-col h1 {
        font-size: 30px;
        padding-top: 0;
    }
    .about-col img {
        padding-left: 0;
    }
}


/*----------- btn ------------*/

ul li {
    list-style: none;
    margin-bottom: 12px;
}

ul li a {
    text-decoration: none;
    color: #fff;
}

li {
    align-self: center;
    display: inline-block;
}

li a {
    align-self: center;
    display: inline-block;
    color: #eee;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

li:not(:last-child) a:hover {
    color: #cc2eaf;
    transition: .4s;
}

.btn a {
    position: relative;
    display: inline-block;
    background: transparent;
    border: 3px solid #cc2eaf;
    padding: 8px 25px;
    border-radius: 30px;
    line-height: 1.3;
    color: #cc2eaf;
    font-weight: 500;
}

li.btn:hover a {
    background: #cc2eaf;
    color: #fff;
    border: 2px solid transparent;
    transition: .4s;
}


/*--------------------------------- shop -------------------------------*/

.hod {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(banner.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}

@media(max-width: 700px) {
    .hod h1 {
        padding-top: 50px;
        margin-left: 5%;
        padding-bottom: 25px;
    }
}


/*--------------------------------- contact Us Page -------------------------------*/

.location {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe {
    width: 100%;
}

.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
    color: #929090;
}

.contact-col div {
    display: flex;
    text-align: left;
    margin-bottom: 40px;
}

.contact-col div .fa {
    font-size: 28px;
    color: #cc2eaf;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p {
    color: #030303;
    padding: 0;
}

.contact-col div h5 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #000000;
    font-weight: 400;
}

input[type="text"],
input[type="email"],
input[type="contry"],
input[type="state"],
input[type="city"],
input[type="pincode"],
input[type="number"],
select,
.contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #8d8a8a;
    box-sizing: border-box;
}

label {
    color: #fff;
    font-weight: 200;
    margin-top: 15px;
}

/*-------------------talk---------------------*/

.talk{
    height: 100vh;
    width: 100%;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    text-align: left;
    color: #fff;
    position: relative;
    font-size: 40px;
    font-weight: 600;
}

.gpt{
    padding-left: 50px;
}


.cmd{
    margin-top: 60px;
    color: #fff;
}

.cmd a{
    text-decoration: underline;
}



.header-log{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(login_back.jpg);
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
}





.login-certificate {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
}

.login-container {
    margin-top: 100px;
    background: transparent;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 2);
    text-align: center;
}

.login-container h1 {
    margin-bottom: 20px;
    color: #ffffff;
}

.login-container input {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 5px;
    border: 1px solid #242323;
    border-radius: 5px;
}

.login-container button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #6e6ab0;
    color: rgb(28, 27, 27);
    cursor: pointer;
}

.login-container button:hover {
    background-color: #6e6ab0;
    box-shadow: 5px #6e6ab0;
}

@media (max-width: 600px) {
    .login-container {
        width: 50%;
    }
}




.header-cer{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(login_back.jpg);
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
}



.certificate {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    padding-bottom: 100px;
}

.certificate-container {
    text-align: center;
    margin-top: 50px;
}

.certificate-preview {
    margin-top: 10px;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 2);
}

.actions a i {
    text-decoration: none;
    width: 40px;
    margin: 0 10px;
    cursor: pointer;
}

.actions button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.actions button:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .certificate-preview {
        width: 90%;
    }

    .actions a img {
        width: 30px;
        margin: 5px;
    }

    .actions button {
        width: 100%;
        margin-top: 10px;
    }
}


.checkbox-group {
    display: flex; /* Align items in a row */
    align-items: center; /* Vertically center the checkbox and text */
    justify-content: flex-start; /* Align to the left */
}

input[type="checkbox"] {
    margin-right: 10px; /* Space between checkbox and text */
}

.agree-text {
    color: #ffffff;
    font-size: 14px;
}

.agree-text a {
    color: #007BFF;
    text-decoration: none;
}

.agree-text a:hover {
    text-decoration: underline;
}



:root {
    --primary: #7c3aed;
    --primary-foreground: #ffffff;
    --primary-light: #c4b5fd;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(to right, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.05));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: #a5aee6;
}

.hero-title span {
    color: var(--primary);
}

.hero-title3 {
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.hero-title5 {
    color: rgb(0, 0, 0);
    font-size: 15px;
}

.hero-title2 {
    color: rgba(124, 58, 237, 0.9);
    font-size: 50px;
}

.hero-title4 {
    color: rgba(44, 43, 47, 0.9);
    font-size: 20px;
}

.hero-title2 span2 {
    color: rgb(146, 146, 209);
    font-size: 20px;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: white;
    background-color: var(--primary);
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: rgba(124, 58, 237, 0.9);
}

.btn-outline {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--primary);
    background-color: transparent;
    border: 1px solid var(--primary);
    border-radius: 0.375rem;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: rgba(124, 58, 237, 0.05);
}

.icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.hero-image {
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: white;
}

.section-gray {
    background-color: var(--gray-50);
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Aims Section */
.aims-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.aim-card {
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.aim-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.aim-icon {
    margin-bottom: 1rem;
}

.aim-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
}

.aim-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.aim-text {
    color: var(--gray-600);
}

/* Targets Section */
.targets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.target-card {
    padding: 1.5rem;
    text-align: center;
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.target-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.target-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.target-text {
    color: var(--gray-600);
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.course-card {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.course-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.course-image {
    position: relative;
    height: 12rem;
    width: 100%;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.course-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 9999px;
    background-color: rgba(124, 58, 237, 0.1);
    color: var(--primary);
}

/* Alumni Section */
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.alumni-card {
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.alumni-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.alumni-image {
    width: 100%;
    aspect-ratio: 1/1;
}

.alumni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-info {
    padding: 1rem;
    text-align: center;
}

.alumni-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alumni-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    padding: 1.5rem;
    background-color: var(--gray-50);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-image {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-header p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-600);
}

/* Call to Action */
.cta {
    padding: 5rem 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-white {
    color: var(--primary);
    background-color: white;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-white-outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: var(--gray-900);
    color: var(--gray-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-col {
    max-width: 300px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    margin: 1rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--gray-700);
    border-radius: 9999px;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: white;
    border-color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-address p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (min-width: 640px) {
    .targets-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .alumni-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .aims-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Faculty Cards */
.faculty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 50px;
    padding-bottom: 50px;
}

.faculty-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #e0e0e0;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    text-align: center;
    width: 100%;
}

.profile-info h2 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.profile-info p {
    margin-bottom: 0.7rem;
    color: #555;
}

.profile-info i {
    color: #3f51b5;
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.more-info-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #3f51b5;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.more-info-btn:hover {
    background-color: #1a237e;
}


/* Responsive Design */
@media (max-width: 768px) {
    .faculty-card {
        max-width: 100%;
    }
    
    header h1 {
        font-size: 2rem;
    }
}

.hero-content img {
    width: 50px;
}

/* Section Styles with unique class names */
.academy-section {
    padding: 60px 0;
    overflow: hidden;
}

.academy-section-gray {
    background-color: #f8f9fa;
}

.academy-section-white {
    background-color: #ffffff;
}

.academy-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Flex Row Layout */
.academy-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.academy-row-reverse {
    flex-direction: row-reverse;
}

/* Column Layout */
.academy-col {
    flex: 1;
    padding: 0 15px;
    min-width: 300px;
}

/* Image Styles */
.academy-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.academy-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.academy-image:hover {
    transform: scale(1.02);
}

/* Text Styles */
.academy-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.academy-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #4a6baf;
    position: relative;
    padding-bottom: 10px;
}

.academy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f8b500;
}

.academy-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .academy-row {
        flex-direction: column;
    }
    
    .academy-row-reverse {
        flex-direction: column;
    }
    
    .academy-col {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .academy-image-col {
        order: 1;
    }
    
    .academy-text-col {
        order: 2;
    }
}

@media (max-width: 768px) {
    .academy-section {
        padding: 40px 0;
    }
    
    .academy-title {
        font-size: 28px;
    }
    
    .academy-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .academy-container {
        width: 95%;
    }
    
    .academy-title {
        font-size: 24px;
    }
    
    .academy-text {
        font-size: 14px;
    }
}

/* Section title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Image grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* Image card */
.image-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image container */
.image-container {
    height: 200px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover .image-container img {
    transform: scale(1.1);
}

/* Image heading */
.image-heading {
    padding: 20px 20px 10px;
    font-size: 1.25rem;
    color: #2c3e50;
}

/* Image description */
.image-description {
    padding: 0 20px 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .academy-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
}