/* Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Outfit", sans-serif;
    background-color: rgb(6, 35, 60);
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Transitions */

a, .btn{
    transition: all 300ms ease;
}

/* Desktop NAV */
.logo img {
    width: 3.2rem;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo:hover {
    cursor: pointer;
}

nav, .nav-links {
    display: flex;
}

nav {
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: linear-gradient(135deg, rgba(6, 35, 60, 0.9), rgba(6, 35, 60, 0.8));
    backdrop-filter: blur(5px);
}

.nav-links {
    gap: 3.5rem;
    list-style: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-decoration-color: white;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
#hamburger-nav {
    display: none;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: transparent;
    transition: all 0.3s ease;
}

#hamburger-nav.scrolled {
    background: linear-gradient(135deg, rgba(6, 35, 60, 0.9), rgba(6, 35, 60, 0.8));
    backdrop-filter: blur(5px);
}

.hamburger-menu {
    position: relative;
    display: inline-block;
    margin-right: 0;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-icon span {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.menu-links {
    position: fixed;
    top: 10vh;
    right: 0%;
    background-color: rgba(6, 35, 60, 0.8);
    backdrop-filter: blur(5px);
    width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.menu-links li {
    list-style: none;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.menu-links a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.menu-links a:last-child {
    border-bottom: none;
}

.menu-links a:hover {
    background: linear-gradient(to right, rgba(255, 113, 51, 0.9) 0%, rgba(255, 167, 76, 0.9) 50%, rgba(255, 113, 51, 0.9) 100%);
    padding-left: 25px;
}

.menu-links.open {
    max-height: 350px;
    padding: 10px 0;
}

.hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
}

@media screen and (max-width: 1200px) {
    #desktop-nav {
        display: none;
    }

    #hamburger-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 10vh;
    }
}

@media screen and (max-width: 768px) {
    .rent-hero-content h1 {
        font-size: 3rem;
    }
    
    .rent-hero-content p {
        font-size: 1.1rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .rent-info-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .rent-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .rent-hero-content p {
        font-size: 1rem;
    }
    
    .equipment-info h3 {
        font-size: 1.3rem;
    }
    
    .equipment-price span {
        font-size: 1rem;
    }
}

/* Hero Section */
#hero {
    height: 100vh;
    width: 100%;
    background-image: url('./Assets/MJTemple.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: left;
    padding-top: 40vh;
    padding-left: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    font-size: 4.2rem;
    font-weight: 700;
}

.hero-content h1 .gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.5rem;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #06233C, #105FA2);
    color: white;
    padding: 4rem 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
}

.about-content > p {
    font-size: 1.1rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #06233C;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #105FA2;
    line-height: 1.6;
}

.about-history {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #06233C;
}

.about-history h3 {
    color: #06233C;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.history-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.history-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.history-item:hover {
    transform: translateY(-5px);
}

.history-item .year {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #105FA2;
    margin-bottom: 1rem;
}

.history-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-cta {
    text-align: center;
    margin: 2rem 0;
}

.history-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.history-btn:hover {
    background: transparent;
    color: #FF6B00;
}

.history-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    padding: 2px;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.history-btn:hover::before {
    opacity: 1;
}

/* History Page Styles */
#history {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #06233C, #105FA2);
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
}

.history-container h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.history-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #FF6B00, #FF8C00);
    border-radius: 2px;
}

.founder-section {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #06233C, #105FA2);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.founder-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.founder-content p {
    color: white;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.founder-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .founder-header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .founder-name {
        padding-left: 0;
        width: 100%;
        order: 1;
        text-align: center;
    }

    .founder-image-container {
        max-width: 100%;
        margin: 2rem auto;
        text-align: center;
        order: 2;
    }

    .founder-container {
        order: 3;
        padding: 0 1rem;
    }

    .founder-name h2 {
        font-size: 2rem;
    }

    .founder-name p {
        font-size: 0.9rem;
    }

    .founder-quote {
        margin-top: 1rem;
        padding: 0.75rem;
    }

    .founder-quote p {
        font-size: 0.85rem;
    }

    .founder-quote .hindi-quote {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .founder-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .founder-name {
        padding-left: 0;
    }

    .founder-name h2 {
        font-size: 1.75rem;
    }

    .founder-name p {
        font-size: 0.85rem;
    }

    .founder-image-container {
        margin: 1.5rem auto;
    }

    .founder-quote {
        margin-top: 0.75rem;
        padding: 0.5rem;
    }

    .founder-quote p {
        font-size: 0.8rem;
    }

    .founder-quote .hindi-quote {
        font-size: 0.9rem;
    }
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #FF6B00;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.timeline-item .year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B00;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    top: 0;
}

.timeline-item .content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    width: calc(50% - 30px);
    margin-left: auto;
}

.timeline-item:nth-child(even) .content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item .content h3 {
    background: linear-gradient(135deg, #06233C, #105FA2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.timeline-item .content p {
    background: linear-gradient(135deg, #06233C, #105FA2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline {
        padding: 0 1.5rem;
    }
    .timeline::before {
        left: 30px;
    }

    .timeline-item .year {
        left: 30px;
    transform: none;
    }

    .timeline-item .content {
        width: calc(100% - 100px);
        margin-left: 80px !important;
        margin-right: 20px;
    }

    .history-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #history {
        padding: 4rem 1rem;
    }
    .timeline {
        padding: 0 1rem;
    }
    .timeline-item .content {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        margin-right: 20px;
        padding: 1rem;
    }

    .timeline-item .year {
        left: 20px;
        padding: 0.3rem 1rem;
        font-size: 0.9rem;
    }

    .history-container h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* Projects Section */
#projects {
    padding: 100px 0;
    background-color: white;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects-container h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #06233C, #105FA2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.projects-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, width 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, padding 0.3s;
    max-width: 100%;
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card.expanded {
    grid-column: 1 / -1 !important;
    width: calc(100% - 4rem) !important;
    max-width: calc(100vw - 4rem);
    box-shadow: 0 6px 24px rgba(16, 95, 162, 0.2), 0 0 0 100vw rgba(0,0,0,0.2);
    z-index: 10;
    transform: scale(1.01);
    padding: 0;
    margin: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    min-height: 350px;
}

.project-card.expanded img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
    margin: 0;
}

.project-card.expanded .project-info {
    flex: 1;
    padding: 1.5rem;
}

.project-card.expanded .project-more-details {
    flex: 1;
    margin-top: 1rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.project-more-details {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s, max-height 0.4s;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #06233C;
    border-radius: 0 0 10px 10px;
    margin-top: 1rem;
    padding: 0 1.5rem;
    font-size: 1rem;
}

.project-card.expanded .project-more-details {
    display: block;
    opacity: 1;
    max-height: 300px;
    padding: 1.5rem;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: #06233C;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: #105FA2;
    line-height: 1.6;
}

@media screen and (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .project-card.expanded {
        padding: 1rem 0.5rem;
    }
    .project-card.expanded .project-more-details {
        padding: 1rem 0.5rem;
    }
    .project-card.expanded img {
        display: none;
    }
    .project-card.expanded .project-info {
        padding: 0;
    }
    .project-card.expanded .project-description {
        display: block;
        padding: 1rem 0.5rem;
        margin-top: 1rem;
    }
    .project-card.expanded .project-more-details {
        padding: 0;
        margin-top: 0;
    }
    
    /* Prevent horizontal scrolling on mobile */
    .project-card.expanded {
        width: calc(100vw - 2rem) !important;
        max-width: calc(100vw - 2rem);
        margin: 0 1rem;
        padding: 0;
    }
    
    .projects-container {
        padding: 0 1rem;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

@media screen and (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .project-card.expanded {
        padding: 1rem 0.5rem;
    }
    .project-card.expanded .project-more-details {
        padding: 1rem 0.5rem;
    }
    .project-card.expanded img {
        display: none;
    }
    .project-card.expanded .project-info {
        padding: 0;
    }
    .project-card.expanded .project-description {
        display: block;
        padding: 1rem 0.5rem;
        margin-top: 1rem;
    }
    .project-card.expanded .project-more-details {
        padding: 0;
        margin-top: 0;
    }
    
    /* Prevent horizontal scrolling on small mobile */
    .project-card.expanded {
        width: calc(100vw - 1rem) !important;
        max-width: calc(100vw - 1rem);
        margin: 0 0.5rem;
        padding: 0;
    }
    
    .projects-container {
        padding: 0 0.5rem;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* Careers Section */
#carriers {
    padding: 100px 0;
    background: linear-gradient(135deg, #06233C, #105FA2);
    color: white;
}

.careers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.careers-container h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.careers-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
}

.careers-intro {
    font-size: 1.1rem;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.career-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #06233C;
    display: flex;
    flex-direction: column;
    height: 350px;
    position: relative;
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-card h3 {
    color: #06233C;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.career-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.requirements {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.requirements li {
    color: #105FA2;
    margin-bottom: 0.4rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.apply-btn {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #06233C, #105FA2);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.95rem;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    transform: scale(1.05);
}

.benefits-section {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #06233C;
}

.benefits-section h3 {
    text-align: center;
    color: #06233C;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #06233C;
    border-radius: 8px;
}

.benefit h4 {
    color: #105FA2;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit p {
    color: #666;
}

@media (max-width: 768px) {
    .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .careers-container h2 {
        font-size: 2rem;
    }
    
    .benefits-section {
        padding: 2rem;
    }
}

/* Contact Section */
#contact {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
}

#contact h2 {
    font-size: 2.5rem;
    color: #06233C;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

#contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
}

.contact-intro {
    text-align: center;
    color: #105FA2;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 2fr);
    gap: 3rem;
    align-items: start;
    width: 100%;
}

.contact-info,
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #06233C;
    box-sizing: border-box;
    width: 100%;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    color: #06233C;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.info-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #06233C, #105FA2);
}

.info-item p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #06233C;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input {
    padding-top: 1.2rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-group textarea {
    height: 320px;
    resize: vertical;
    padding-top: 1.2rem;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.95rem;
    background: white;
    padding: 0 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #105FA2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(16, 95, 162, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #105FA2;
}

.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #105FA2;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #06233C, #105FA2);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: minmax(300px, 1fr) minmax(300px, 1.5fr);
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 3rem 1rem;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container h2 {
        font-size: 2rem;
    }
    
    .contact-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
        margin: 0;
    }
    
    .info-item {
        margin-bottom: 1.5rem;
    }

    .info-item h3 {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .form-group textarea {
        height: 270px;
    }
}

@media (max-width: 480px) {
    #contact {
        padding: 2rem 0.8rem;
    }

    .contact-container {
        padding: 0 0.8rem;
    }

    .contact-container h2 {
        font-size: 1.8rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-content {
        width: 100%;
    }

    .contact-info,
    .contact-form {
        padding: 1.2rem;
        margin: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 0.9rem;
        padding: 0.7rem;
    }

    .form-group input {
        padding-top: 1rem;
    }

    .form-group textarea {
        padding-top: 1rem;
        height: 220px;
    }

    .form-group label {
        font-size: 0.9rem;
        top: 1rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .info-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }
}

#founder {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #06233C, #105FA2);
}

.founder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-name {
    padding-left: 2rem;
}

.founder-name h2 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
}

.founder-name p {
    color: white;
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.founder-quote {
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 3px solid #FF6B00;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 8px 8px 0;
}

.founder-quote p {
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.founder-quote .hindi-quote {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-style: normal;
}

.founder-image-container {
    max-width: 450px;
    margin: 0;
    text-align: right;
    position: relative;
    z-index: 1;
    padding-right: 0;
}

.founder-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-container {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.founder-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.founder-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    padding: 1rem 2rem;
    border-radius: 0;
    display: block;
    width: 100%;
    box-shadow: 0 4px 8px rgba(255, 107, 0, 0.2);
}

.founder-info {
    padding: 0 3rem 3rem 3rem;
}

.founder-text {
    position: relative;
}

.founder-text h3 {
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.founder-text p {
    background: linear-gradient(135deg, #06233C, #105FA2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.founder-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #founder {
        padding: 4rem 1.5rem;
    }

    .founder-content {
        padding: 0;
    }

    .founder-content h2 {
        font-size: 2rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .founder-info {
        padding: 0 2rem 2rem 2rem;
    }

    .founder-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    #founder {
        padding: 3rem 1rem;
    }

    .founder-content {
        padding: 0;
    }

    .founder-content h2 {
        font-size: 1.6rem;
        padding: 0.6rem 1rem;
        margin-bottom: 1.2rem;
    }

    .founder-info {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .founder-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #06233C, #105FA2);
    color: white;
    padding: 4rem 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 1rem;
}

.footer-divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    background: linear-gradient(to right, #FF6B00, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translateY(-2px);
}

.footer-section p {
    color: white;
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .footer-content {
        gap: 1.5rem;
        padding: 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.footer-logo {
    position: relative;
    max-width: 50px;
    width: 100%;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo::before,
.footer-logo::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #FFFFFF;
    margin: 0 1rem;
    min-width: 150px;
}

.footer-logo img {
    width: 100%;
}

.footer-logo p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FF6B00;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom .credit {
    font-size: 0.70rem;
    opacity: 0.3;
    margin-top: 0.5rem;
}

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 3rem 0 0 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-logo p {
        font-size: 1rem;
    }
}

.mj-logo-section {
    padding: 2rem 0;
    background: white;
}

.mj-logo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
    text-align: center;
}

.mj-quote {
    text-align: center;
    flex: 0 1 auto;
}

.mj-quote p {
    font-size: 1.5rem;
    color: #06233C;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

.mj-logo {
    max-width: 150px;
    height: auto;
    display: inline-block;
    margin: 0;
    flex: 0 1 auto;
}

@media screen and (max-width: 768px) {
    .mj-logo-container {
        flex-direction: column;
        gap: 1rem;
    }

    .mj-quote {
        text-align: center;
    }

    .mj-quote p {
        font-size: 1.2rem;
    }
}

.mj-quote hr {
    width: 100%;
    border: none;
    height: 2px;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    margin: 0.5rem 0;
}

.mj-quote .quote {
    font-size: 1.2rem;
    color: #06233C;
    font-weight: 500;
    font-style: italic;
    margin: 0.5rem 0;
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-more-btn:hover {
    background: transparent;
    border-color: #FF6B00;
    color: #FF6B00;
}

@media screen and (max-width: 768px) {
    .projects-cta {
        margin-top: 2rem;
    }
    .view-more-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .projects-cta {
        margin-top: 1.5rem;
    }
    .view-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

#projects-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./Assets/MJTemple.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.projects-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.projects-hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    border-radius: 2px;
}

.projects-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

#all-projects {
    padding: 4rem 0;
    background: linear-gradient(135deg, #06233C 0%, #105FA2 100%);
    color: white;
}

.project-details {
    margin-top: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
}

.project-card.expanded .project-details {
    display: flex;
}

.project-details span {
    font-size: 0.9rem;
    color: #666;
}

@media screen and (max-width: 768px) {
    .projects-hero-content h1 {
        font-size: 3rem;
    }
    .projects-hero-content p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .projects-hero-content h1 {
        font-size: 2.5rem;
    }
    .projects-hero-content p {
        font-size: 1rem;
    }
}

.map-container {
    margin-top: 2rem;
}

.map-container iframe {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-container iframe:hover {
    transform: scale(1.02);
}

@media screen and (max-width: 768px) {
    .map-container {
        margin-top: 1.5rem;
    }
    
    .map-container iframe {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .map-container {
        margin-top: 1rem;
    }
    
    .map-container iframe {
        height: 160px;
    }
}

#rent {
    padding: 4rem 2rem;
    background: white;
    color: #06233C;
}

.rent-container {
    max-width: 1200px;
    margin: 0 auto;
}

#rent .section-title {
    color: #06233C;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#rent .section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00 0%, #FFA500 100%);
    margin: 0.5rem auto;
}

.rent-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.equipment-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    background-color: #ffffff;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .equipment-card img {
        height: 180px;
        padding: 8px;
    }
}

@media screen and (max-width: 480px) {
    .equipment-card img {
        height: 160px;
        padding: 5px;
    }
}

.equipment-card h3 {
    color: #06233C;
    margin: 1rem;
    font-size: 1.5rem;
}

.equipment-card p {
    color: #666;
    margin: 0 1rem 1rem;
}

.equipment-details {
    list-style: none;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.equipment-details li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.equipment-details li:before {
    content: "✓";
    color: #105FA2;
    position: absolute;
    left: 0;
}

.rent-btn {
    background: linear-gradient(to right, rgba(16, 95, 162, 0.9) 0%, rgba(6, 35, 60, 0.9) 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(16, 95, 162, 0.3);
    width: 70%;
    margin: 20px auto 20px auto;
    display: block;
    text-decoration: none;
    text-align: center;
}

.rent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 113, 51, 0.4);
    background: linear-gradient(to right, rgba(255, 113, 51, 0.9) 0%, rgba(255, 167, 76, 0.9) 50%, rgba(255, 113, 51, 0.9) 100%);
}

/* Rent page specific styles */
#all-equipment .equipment-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-bottom: 4rem;
}

#all-equipment .equipment-card img {
    height: 250px;
}

#all-equipment .equipment-info {
    padding: 1.5rem;
}

#all-equipment .equipment-info h3 {
    margin: 0 0 0.5rem 0;
}

#all-equipment .equipment-info p {
    margin: 0 0 1rem 0;
}

#all-equipment .equipment-details {
    padding: 0;
    margin-bottom: 1.5rem;
}

#all-equipment .equipment-price {
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    text-align: center;
}

#all-equipment .equipment-price span {
    color: #105FA2;
    font-weight: 600;
    font-size: 1.1rem;
}

#all-equipment .rent-btn {
    width: 100%;
    margin: 0;
    font-weight: 600;
}

.rent-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    color: #06233C;
    margin-bottom: 1rem;
}

.info-card ul, .info-card ol {
    padding-left: 1.5rem;
}

.info-card li {
    color: #666;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
    .rent-info {
        grid-template-columns: 1fr;
    }
}

#rent-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./Assets/equipment/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.rent-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.rent-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

#all-equipment {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.equipment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

#rent-info {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #06233C 0%, #105FA2 100%);
    color: white;
}

.rent-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rent-info-container .info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.rent-info-container .info-card h3 {
    color: #06233C;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.rent-info-container .info-card ul,
.rent-info-container .info-card ol {
    padding-left: 1.5rem;
}

.rent-info-container .info-card li {
    color: #666;
    margin-bottom: 0.8rem;
}

.rent-info-container .info-card i {
    color: #105FA2;
    margin-right: 0.5rem;
    width: 20px;
}

@media screen and (max-width: 768px) {
    .rent-hero-content h1 {
        font-size: 3rem;
    }
    
    .rent-hero-content p {
        font-size: 1.1rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .rent-info-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .rent-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .rent-hero-content p {
        font-size: 1rem;
    }
    
    .equipment-info h3 {
        font-size: 1.3rem;
    }
    
    .equipment-price span {
        font-size: 1rem;
    }
}

.main-rent-btn-container {
    text-align: center;
    margin: 2rem 0 4rem 0;
}

.main-rent-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.main-rent-btn:hover {
    background: transparent;
    border-color: #FF6B00;
    color: #FF6B00;
}

@media screen and (max-width: 768px) {
    .main-rent-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .main-rent-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    #desktop-nav {
        display: none;
    }

    #hamburger-nav {
        display: flex;
    }

    .rent-hero-content h1 {
        font-size: 3rem;
    }
    
    .rent-hero-content p {
        font-size: 1.1rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .rent-info-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .rent-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .rent-hero-content p {
        font-size: 1rem;
    }
    
    .equipment-info h3 {
        font-size: 1.3rem;
    }
    
    .equipment-price span {
        font-size: 1rem;
    }
}

#projects-description {
    padding: 2.5rem 2rem;
    background: white;
    color: #06233C;
    text-align: center;
}

.projects-desc-container {
    max-width: 1000px;
    margin: 0 auto;
}

.projects-desc-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #06233C 0%, #105FA2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.projects-desc-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
}

.projects-desc-container p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .projects-desc-container h2 {
        font-size: 1.8rem;
    }
    
    .projects-desc-container p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    #projects-description {
        padding: 2rem 1rem;
    }
    
    .projects-desc-container h2 {
        font-size: 1.6rem;
    }
}

/* Buy Section Styles */
#buy {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #06233C 0%, #105FA2 100%);
    color: white;
}

.buy-container {
    max-width: 1200px;
    margin: 0 auto;
}

#buy .section-title {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#buy .section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00 0%, #FFA500 100%);
    margin: 0.5rem auto;
}

.buy-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.material-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid;
    border-image: linear-gradient(135deg, #06233C 0%, #105FA2 100%) 1;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.material-card:hover {
    transform: translateY(-5px);
}

.material-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f8f9fa;
}

.material-card h3 {
    color: #06233C;
    margin: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.material-card p {
    color: #666;
    margin: 0 1rem 1rem;
    text-align: center;
    flex-grow: 1;
}

.material-card .price {
    color: #105FA2;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 1rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.price-disclaimer {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 1rem 0 2rem 0;
    padding: 0 1rem;
}

.price-disclaimer-container {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.price-disclaimer-container .price-disclaimer {
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
    font-style: italic;
    margin: 0;
    padding: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.material-details {
    list-style: none;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.material-details li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.material-details li:before {
    content: "✓";
    color: #105FA2;
    position: absolute;
    left: 0;
}

.buy-btn {
    background: linear-gradient(to right, rgba(16, 95, 162, 0.9) 0%, rgba(6, 35, 60, 0.9) 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(16, 95, 162, 0.3);
    width: 70%;
    margin: 20px auto 20px auto;
    display: block;
    text-decoration: none;
    text-align: center;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 113, 51, 0.4);
    background: linear-gradient(to right, rgba(255, 113, 51, 0.9) 0%, rgba(255, 167, 76, 0.9) 50%, rgba(255, 113, 51, 0.9) 100%);
}

.main-buy-btn-container {
    text-align: center;
    margin: 3rem 0;
}

.main-buy-btn {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.main-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FF6B00 100%);
}

.buy-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.buy-info .info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
}

.buy-info .info-card h3 {
    color: #06233C;
    margin-bottom: 1rem;
}

.buy-info .info-card ul, .buy-info .info-card ol {
    padding-left: 1.5rem;
}

.buy-info .info-card li {
    color: #666;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .buy-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #buy .section-title {
        font-size: 2rem;
    }
    
    .main-buy-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .material-card {
        margin: 0 1rem;
    }

    .material-card h3 {
        font-size: 1.3rem;
        margin: 0.8rem;
    }

    .material-card p {
        font-size: 0.9rem;
        margin: 0 0.8rem 0.8rem;
    }

    .buy-btn {
        width: 80%;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    #buy {
        padding: 3rem 1rem;
    }

    .buy-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    #buy {
        padding: 2rem 0.5rem;
    }
    
    #buy .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .buy-intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .material-card {
        margin: 0 0.5rem;
        border-radius: 8px;
    }

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

    .material-card p {
        font-size: 0.85rem;
        margin: 0 0.6rem 0.6rem;
    }
    
    .main-buy-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .buy-btn {
        width: 85%;
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .buy-info .info-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .buy-info .info-card h3 {
        font-size: 1.1rem;
    }

    .buy-info .info-card li {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 360px) {
    #buy .section-title {
        font-size: 1.6rem;
    }

    .material-card h3 {
        font-size: 1.1rem;
    }

    .material-card p {
        font-size: 0.8rem;
    }

    .buy-btn {
        width: 90%;
        font-size: 0.7rem;
    }

    .main-buy-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .material-card {
        margin: 0 0.5rem;
    }

    #buy .section-title {
        font-size: 2.2rem;
    }

    .buy-intro {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1025px) {
    .materials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .material-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}

.project-description {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(16, 95, 162, 0.05);
    border-left: 3px solid #105FA2;
    border-radius: 0 5px 5px 0;
}

.project-card.expanded .project-description {
    display: block;
}

.project-description p {
    color: #06233C;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.carousel {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 0;
}

.carousel-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    border-radius: 0;
}

.carousel-image.active {
    opacity: 1;
    z-index: 2;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 95, 162, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }

.carousel-btn:hover {
    background: #105FA2;
}

@media screen and (max-width: 768px) {
    .carousel {
        height: 200px;
    }
}

.project-card.expanded .carousel {
    height: 350px;
}

.carousel-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .project-card.expanded .carousel {
        max-width: 40%;
        height: 220px;
    }
}

@media screen and (max-width: 768px) {
    .project-card.expanded {
        flex-direction: column;
        min-height: unset;
        padding: 0.5rem;
    }
    .project-card.expanded .carousel {
        max-width: 100%;
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .project-card.expanded .project-info {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .project-card.expanded .carousel {
        height: 100px;
    }
}
