*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative; 
    background-image: url(bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}




.logo{
    color: #fff;
    font-size: 2em;
    font-weight: bold;
}

.nav-links{
    display: flex;
    list-style-type: none;
}

.nav-links li{
    margin-left: 20px;
}

.nav-links a{
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 20px;
}

.nav-links a:hover{
background-color: #0a296a;
border-radius: 5px;
}

.hamburger{
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1;
}

@media (max-width:768px) {
    
    .nav-links{
       flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        width: 80%;
        background-color: #181456;
        display: none;
        border-bottom-left-radius: 50px ;
        z-index: 2;

    }
    
    .nav-links li{
    text-align: end ;   
    margin: 10px 20px; 
}
    
    .nav-links a{
        width: 100%;
        display: block;
        
    }

    .toggle:checked ~.nav-links{
        display: flex;
    }
    
    .hamburger{
       display: block;
    }


}

.toggle{
    display: none;
}


.secondary-navbar {
    background-color: #181456;
    color: #fff;
    padding: 10px 10px 10px 20px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.secondary-navbar .contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.secondary-navbar .contact-info div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.secondary-navbar .contact-info div i {
    color: #ffcc00;
}

.secondary-navbar .enrollment-alert {
    animation: alert-blink 1.5s infinite;
    font-weight: bold;
}

@keyframes alert-blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .secondary-navbar {
        flex-direction: column;
        font-size: 0.8rem;
    }

    .secondary-navbar .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Container for the hero section */
.hero-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333; /* Fallback color */
    color: white;
    text-align: center;
}

/* Sliding background image */
.background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%; /* Makes the background wider to allow sliding */
    height: 100%;
    display: flex;
    animation: slideBackground 60s linear infinite;
}

.background-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Static hero content */
.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button {
    padding: 15px 30px;
    font-size: 1rem;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.hero-button:hover {
    background-color: #0056b3;
}

/* Keyframes for sliding background */
@keyframes slideBackground {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.666%); /* Moves the background from 0 to -66.666% */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-button {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
}



.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero button {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero button {
        font-size: 0.8rem;
    }
}


.cards-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 50px;
    max-width: 1200px;
    margin: auto;

}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #007BFF;
}

.card h3 {
    font-size: 1.4rem;
    color: #333333;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #666666;
}

@media (max-width: 1024px) {
    .cards-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .cards-section {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .cards-section {
        padding: 20px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.9rem;
    }
}

.what-we-do-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 20px;
    background-color: #f0f0f0;
    align-items: center;
}

.what-we-do-image {
    flex: 1;
    padding: 20px;
}

.what-we-do-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.what-we-do-content {
    flex: 1;
    padding: 20px;
}

.what-we-do-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.what-we-do-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

@media (max-width: 768px) {
    .what-we-do-section {
        flex-direction: column;
    }

    .what-we-do-content,
    .what-we-do-image {
        padding: 10px;
    }

    .what-we-do-content h2 {
        font-size: 1.5rem;
    }

    .what-we-do-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .what-we-do-content h2 {
        font-size: 1.3rem;
    }

    .what-we-do-content p {
        font-size: 0.8rem;
    }
}

.enroll-section {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.enroll-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.enroll-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.enroll-card {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enroll-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.enroll-card .icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px
}

.enroll-card h3 {
font-size: 1.5rem;
margin-bottom: 10px;
color: #333;
}

.enroll-card p {
font-size: 1rem;
color: #666;
}

@media (max-width: 768px) {
.enroll-cards {
    grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.enroll-card h3 {
    font-size: 1.2rem;
}

.enroll-card p {
    font-size: 0.9rem;
}
}

.marquee-container {
    background-color: #ffcc00;
    padding: 10px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    color: #333;
}

.marquee-text {
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.footer {
    background-color: #181456;
    color: #fff;
    padding: 50px 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer p,
.footer a {
    color: #bbb;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer .social-icons {
    margin-top: 20px;
}

.footer .social-icons a {
    margin-right: 10px;
    color: #bbb;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #007BFF;
}

.footer .subscribe-form {
    margin-top: 20px;
}

.footer .subscribe-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 70%;
    outline: none;
}

.footer .subscribe-form button {
    padding: 10px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer .subscribe-form button:hover {
    background-color: #0056b3;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.contact-us-section {
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-us-form,
.contact-us-info {
    flex: 1;
    min-width: 300px;
    margin: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-us-form h2,
.contact-us-info h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-us-form input,
.contact-us-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-us-form button {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-us-form button:hover {
    background-color: #555;
}

.contact-us-info p {
    margin: 10px 0;
    font-size: 1rem;
    color: #666;
}

.contact-us-info i {
    color: #181456;
    margin-right: 10px;
}

.contact-us-info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-us-map {
    margin-top: 20px;
    border: none;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-us-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-us-form input,
    .contact-us-form textarea,
    .contact-us-form button {
        font-size: 0.9rem;
    }
}

.reusebtn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reusebtn {
    background-color: #181456;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.reusebtn:hover {
    background-color: #555;
}

.reusebtn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
}

.pricing-table-section {
    padding: 50px 20px;
    background-color: #f8f8f8;
    text-align: center;

}

.pricing-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    margin: 20px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.pricing-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 20px;
}

.real-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 1.1rem;
}

.selling-price {
    color: #ff3333;
    font-size: 1.5rem;
    font-weight: bold;
}

.enroll-btn {
    background-color: #ffcc00;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.enroll-btn:hover {
    background-color: #ff9933;
}

/* Explore More Button (Reuse) */
.reusebtn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.reusebtn {
    background-color: #333;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.reusebtn:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .pricing-card p,
    .price .real-price,
    .price .selling-price {
        font-size: 0.9rem;
    }

    .enroll-btn {
        font-size: 0.9rem;
    }
}
/* About Section */


.techalpha-container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Section */
.techalpha-header {
    background-color: #181456;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.techalpha-header h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.techalpha-header p {
    font-size: 1.2rem;
}

/* Mission Statement Section */
.techalpha-mission {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.techalpha-mission h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.techalpha-mission p {
    font-size: 1.1rem;
}

/* Team Section */
.techalpha-team {
    padding: 50px 0;
    background-color: #f0f0f0;
}

.techalpha-team h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.techalpha-team-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.techalpha-team-member {
    text-align: center;
    margin: 20px;
    max-width: 300px;
}

.techalpha-team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.techalpha-team-member h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.techalpha-team-member p {
    font-size: 1rem;
    color: #666;
}

/* History Section */
.techalpha-history {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.techalpha-history h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.techalpha-history p {
    font-size: 1.1rem;
}

/* tech a community */

.coming-soon-section {
    background-color: #f4f4f4;
    padding: 80px 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f4f4f4;
}

.coming-soon-content h2 {
    font-size: 2.5em;
    color: #0056b3;
    margin-bottom: 20px;
}

.coming-soon-content p {
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    
}

.Tech-a-Community{
    background-color: #f4f4f4;
    z-index: 2;
}

.coming-soon-note p {
    font-size: 1.5em;
    color: #0056b3;
    font-weight: bold;
    background-color: #e8e8e8;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
}
/* tech a school */



.header-section {
    background-color: #0056b3;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.header-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header-section p {
    font-size: 1.2em;
}

.introduction-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
}

.intro-content {
    flex: 1;
    padding-right: 40px;
}

.intro-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0056b3;
}

.intro-content p {
    font-size: 1.1em;
    line-height: 1.6;
}

.intro-image {
    flex: 1;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    border-radius: 15px;
}

.mission-highlights-section {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.mission-statement,
.program-highlights {
    margin-bottom: 40px;
}

.mission-statement h2,
.program-highlights h2 {
    font-size: 1.8em;
    color: #0056b3;
    margin-bottom: 15px;
}

.program-highlights ul {
    list-style-type: disc;
    margin-left: 20px;
}

.gallery-section {
    margin: 60px 0;
}

.gallery-section h2 {
    font-size: 1.8em;
    color: #0056b3;
    margin-bottom: 20px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item p {
    margin-top: 10px;
    font-weight: bold;
}

.cta-section {
    background-color: #0056b3;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}



.container2{

        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
   
}

/* Admissions */

.admissions-hero-section {
    background-image: url('admissions-hero.png'); 
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.admissions-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.admissions-hero-container h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.admissions-hero-container p {
    font-size: 1.5em;
    line-height: 1.6;
    margin-bottom: 40px;
}

.reusebtn-container {
    text-align: center;
}

.admission-process-section {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.admission-process-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #0056b3;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.step {
    flex: 1 1 30%;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.step h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #666;
}
.admission-form-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.admission-form-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #0056b3;
}

.admission-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-btn {
    background-color: #0056b3;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #003f8a;
}
/* For smaller screens */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .step {
        margin-bottom: 20px;
    }

    .admission-form-section,
    .admission-process-section,
    .admissions-hero-section {
        padding: 40px 15px;
    }

    .admission-form-section h2,
    .admission-process-section h2,
    .admissions-hero-container h1 {
        font-size: 2em;
    }

    .reusebtn {
        padding: 10px 20px;
        font-size: 1em;
    }
}

.faq-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-container h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #0073e6;
}

.faq-answer {
    font-size: 1em;
    color: #555;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 10px;
    }

    .faq-question {
        font-size: 1.1em;
    }

    .faq-answer {
        font-size: 0.95em;
    }
}
.services-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.services-section .intro-text {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}

.service-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4em;
    color: #0073e6;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1em;
    color: #555;
}

.reusebtn-container {
    text-align: center;
    margin-top: 40px;
}

.reusebtn {
    background-color: #0073e6;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reusebtn:hover {
    background-color: #005bb5;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section h2 {
        font-size: 2em;
    }
}

/* FontAwesome icon styling for service cards */
.service-icon {
    font-size: 40px;
    color: #1528b7;
    margin-bottom: 10px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin: 20px;
    flex: 1 1 calc(33.333% - 40px); /* 3 cards per row with spacing */
}

.service-card h3 {
    font-size: 24px;
    margin: 10px 0;
}

.service-card p {
    font-size: 16px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        flex: 1 1 calc(50% - 40px); /* 2 cards per row on medium screens */
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 1 1 100%; /* 1 card per row on small screens */
    }
}
