/* style.css */
body {
   font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #30f8e1;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-left: 20px;
    position: relative;
}

nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007bff;
}

nav ul ul {
    display: none;
    position: absolute;
    background: #f0f8ff;
    flex-direction: column;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

nav li:hover > ul {
    display: block;
}

nav ul ul li {
    margin: 0;
}

.hero {
    background-image: url('20250412_225039.jpg'); /* Assuming your image is named "my-image.jpg" */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 180px 0;
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #004085;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

.features {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2em;
    margin-bottom: 20px;
    color: #007bff;
}

.courses {
    background: #ffffff;
    padding: 80px 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.courses h2 {
    text-align: center;
    margin-bottom: 50px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-card h3, .course-card p {
    padding: 0 20px;
}

footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 15px 0;
}
/* style.css (Additions) */
.about-section {
    padding: 80px 0;
}

.about-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-content, .about-image {
    width: 48%;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why-section {
    background: #f8f9fa;
}

.why-content ul {
    list-style: none;
    padding: 0;
}

.why-content li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.why-content li::before {
    content: '\f00c'; /* Checkmark icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #007bff;
}

.principal-section {
    background: linear-gradient(135deg, #e0f7fa, #c8e6c9);
}

.principal-content p {
    line-height: 1.8;
}
/* style.css (Additions) */
.courses-hero {
    background: linear-gradient(135deg, #e0f7fa, #c8e6c9);
    text-align: center;
    padding: 100px 0;
}

.courses-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #004085;
}

.courses-hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.course-section {
    padding: 80px 0;
}

.course-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-details, .course-image {
    width: 48%;
}

.course-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.course-details ul {
    list-style: none;
    padding: 0;
}

.course-details li {
    margin-bottom: 10px;
}

.alternate-course {
    background: #f8f9fa;
}

.course-details h2 {
    color: #007bff;
    margin-bottom: 20px;
}
/* style.css (Additions) */
.contact-hero {
    background: linear-gradient(135deg, #e0f7fa, #c8e6c9);
    text-align: center;
    padding: 100px 0;
}

.contact-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #004085;
}

.contact-hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-form, .contact-info {
    width: 48%;
}

.contact-form h2, .contact-info h2 {
    color: #007bff;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
}

.form-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info .info-item i {
    margin-right: 15px;
    font-size: 1.5em;
    color: #007bff;
}

.contact-info .info-item p {
    line-height: 1.6;
}
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mode-toggle {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.mode-toggle input[type="checkbox"] {
    display: none;
}

.mode-toggle .mode-label {
    position: relative;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 5px;
    transition: background-color 0.3s ease;
}

.mode-toggle .mode-label i {
    font-size: 1.2em;
    position: absolute;
    transition: transform 0.3s ease;
}

.mode-toggle .mode-label .fa-sun {
    color: #ffc107;
    left: 5px;
}

.mode-toggle .mode-label .fa-moon {
    color: #e0e0e0;
    right: 5px;
    transform: translateX(30px);
}

.mode-toggle input[type="checkbox"]:checked + .mode-label {
    background: #333;
}

.mode-toggle input[type="checkbox"]:checked + .mode-label .fa-sun {
    transform: translateX(-30px);
}

.mode-toggle input[type="checkbox"]:checked + .mode-label .fa-moon {
    transform: translateX(0);
}

body.dark-mode header, body.dark-mode nav ul ul {
    background-color: #333;
    color: #e0e0e0;
}

body.dark-mode nav a {
    color: #e0e0e0;
}

body.dark-mode .course-card , body.dark-mode .facility-item, body.dark-mode .testimonial-item{
    background-color: #333;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}
.apply-admission {
    background-color: #f0f8ff; /* Light background color */
    padding: 80px 0;
}

.apply-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apply-content, .apply-image {
    width: 48%;
}

.apply-announcement {
    color: #007bff; /* Blue color for announcement */
    font-weight: bold;
    margin-bottom: 10px;
}

.apply-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.apply-description {
    line-height: 1.6;
    margin-bottom: 30px;
}

.apply-button {
    background-color: #00a86b; /* Green button color */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #008053; /* Darker green on hover */
}

.apply-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.features {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light background color */
}

.features-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 25%; /* Adjust width as needed */
}

.feature-icon img {
    width: 50px; /* Adjust icon size */
    height: auto;
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    line-height: 1.6;
    color: #666;
}
.facilities-boxes {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background */
}

.facilities-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.facility-box {
    text-align: center;
    padding: 30px;
    background-color: #e9ecef; /* Light box color */
    border-radius: 8px;
    width: 20%;
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.facility-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    font-size: 2.5em; /* Icon size */
    color: #007bff; /* Icon color */
    margin-bottom: 20px;
}

.facility-box h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2em;
}

.arrow-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5em; /* Arrow size */
    color: #007bff; /* Arrow color */
}

@media (max-width: 992px) {
    .facility-box {
        width: 45%; /* Two boxes per row on smaller screens */
    }
}

@media (max-width: 768px) {
    .facility-box {
        width: 100%; /* One box per row on mobile */
    }
}
.course-boxes {
    padding: 80px 0;
    background-color: #047af0; /* Light background */
    background-image: url(blue-gradient-background.webp);
}

.courses-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.course-box {
    text-align: center;
    padding: 30px;
    background-color: #e9efee; /* Light box color */
    border-radius: 12px;
    width: 25%; /* Slightly smaller width */
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.course-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.course-box h3 {
    margin-bottom: 20px;
    color: #007bff; /* Blue heading */
    font-size: 1.5em;
}

.course-details {
    text-align: left;
    margin-bottom: 20px;
}

.course-details p {
    margin-bottom: 10px;
    color: #333;
}

.course-details strong {
    color: #007bff; /* Blue bold text */
}

.read-more {
    background-color: #00a86b; /* Green button */
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #008053; /* Darker green on hover */
}

@media (max-width: 992px) {
    .course-box {
        width: 45%; /* Two boxes per row on smaller screens */
    }
}

@media (max-width: 768px) {
    .course-box {
        width: 100%; /* One box per row on mobile */
    }
}
.facilities-section {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light background */
}

.facilities-container {
    text-align: center;
}

.facilities-container h2 {
    color: #007bff; /* Primary blue color */
    font-size: 2.5em;
    margin-bottom: 50px;
    font-weight: 600;
}

.facility-item {
    display: inline-block;
    width: 30%;
    margin: 20px 0;
    padding: 40px 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    font-size: 3em;
    color: #00a86b; /* Green accent color */
    margin-bottom: 25px;
}

.facility-item h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.8em;
    font-weight: 600;
}

.facility-item p {
    line-height: 1.7;
    color: #666;
    font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .facility-item {
        width: 48%; /* Two items per row on smaller screens */
    }
}

@media (max-width: 768px) {
    .facility-item {
        width: 100%; /* One item per row on mobile */
    }
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f7fa, #c8e6c9);
}

.contact-info-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-box {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    width: 25%;
    margin: 20px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-box h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2em;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    color: #007bff;
    font-size: 2em;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-group textarea {
    height: 150px;
}

.submit-button {
    background-color: #00a86b;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #008053;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-box {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .contact-box {
        width: 100%;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    /* ... your existing mobile styles ... */
  
    /* Adjust vertical spacing */
    .your-path-section { /* Assuming this is the class of your main content section */
      padding-top: 40px; /* Reduce top padding */
      padding-bottom: 40px; /* Reduce bottom padding */
    }
  
    /* Adjust text size and spacing */
    .your-path-headline { /* Assuming this is the class of your headline */
      font-size: 2.5em; /* Adjust font size */
      line-height: 1.2; /* Adjust line height */
      margin-bottom: 20px; /* Adjust margin */
    }
  
    /* Navigation adjustments */
    .navigation-links { /* Assuming this is the class of your navigation container */
      flex-direction: column; /* Stack links vertically */
      align-items: flex-start; /* Align links to the left */
    }
  
    .navigation-links a { /* Assuming your navigation links are anchor tags */
      margin-bottom: 10px; /* Add spacing between links */
    }
  }