/* Header and Navigation Styles */
.header {
    background: linear-gradient(135deg, #fff4d9);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.tagline{
    color: #000000 !important;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.nav-link{
    color: #000 !important;
}

.logo-container {
    text-align: center;
}

.logo {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.logo-letter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.tilt-G
{
    display:block; transform: rotate(-25deg);
display: flex;
    align-items: center;
    justify-content: center;
}


.tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    font-weight: 600;
}

.top-nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.contact-info-top {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    margin-top: 120px;
    transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Responsive Header */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .top-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-content {
        margin-top: 160px;
    }
}

@media (max-width: 480px) {
    .logo-letter {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .main-content {
        margin-top: 180px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    margin-top: 0;
    background: linear-gradient(135deg, #FF751F 0%, #ECB186 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #FFFFFF;
    color: #FF751F;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    background: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

/* Color only the 'US' part in the ABOUT heading */
.about h2 .about-us-part {
    color: #FF751F;
}

/* Color the 'GROWW ?' part in the WHY DGROWW heading */
.about h2 .dgroww-part {
    color: #FF751F;
}

/* Color the 'Domains' part in the Our Internship Domains heading */
.programs h2 .domains-part {
    color: #FF751F;
}

.about p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Programs Section */
.programs {
    background: #F8F9FA;
    padding: 80px 0;
}

.programs h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.program-card h3 {
    color: #FF751F;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.program-card p {
    color: #666;
    line-height: 1.6;
}

/* Application Section */
.FAQs {
    background: linear-gradient(135deg, #F66363 0%, #FF751F 100%);
    padding: 80px 0;
    color: white;
}

.FAQs h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.faq-group {
    margin-bottom: 25px;
}

.faq-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.faq-group input,
.faq-group select,
.faq-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.faq-group input:focus,
.faq-group select:focus,
.faq-group textarea:focus {
    outline: none;
    border-color: #FF751F;
}

.faq-group textarea {
    resize: vertical;
    min-height: 100px;
}



.submit-btn:hover {
    background: #e56600;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FF751F" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23F66363" opacity="0.1"/><circle cx="50" cy="70" r="1.5" fill="%23ECB186" opacity="0.1"/></svg>');
    pointer-events: none;
}

.contact h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.contact-item {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 280px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF751F, #ECB186);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.contact-item h3 {
    color: #FF751F;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 700;
}

.contact-item p {
    color: #FF751F;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-detail {
    color: #666 !important;
    font-size: 0.9em !important;
    font-weight: 400 !important;
    font-style: italic;
}

.contact-extra {
    position: relative;
    z-index: 1;
}

.contact-extra h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF751F, #ECB186);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,117,31,0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,117,31,0.4);
    background: linear-gradient(135deg, #ECB186, #FF751F);
}

/* Contact Link Styles */
.contact-link {
    color: #FF751F !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #e56600 !important;
    text-decoration: underline;
}

/* Program Modal Styles */
.program-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, #FF751F, #ECB186);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    color: #333;
}

.modal-body h3 {
    color: #FF751F;
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 2px solid #FF751F;
    padding-bottom: 10px;
}

.modal-body h4 {
    color: #333;
    margin: 20px 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    text-align: center;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.apply-btn {
    background: linear-gradient(135deg, #FF751F, #ECB186);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,117,31,0.3);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,117,31,0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body h3 {
        font-size: 18px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
    
    .apply-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Program Cards Clickable */
.program-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Chat Bot Styles */
.chat-bot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF751F, #ECB186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255,117,31,0.4);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255,117,31,0.5);
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-bot.open .chat-container {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #FF751F, #ECB186);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 16px;
}

.chat-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close:hover {
    background: rgba(255,255,255,0.3);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 80%;
    word-wrap: break-word;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: #e9ecef;
    color: #333;
    margin-right: auto;
}

.user-message {
    background: linear-gradient(135deg, #FF751F, #ECB186);
    color: white;
    margin-left: auto;
}

.chat-input-container {
    padding: 20px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
}

.chat-input-container input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.chat-input-container input:focus {
    border-color: #FF751F;
}

.chat-input-container button {
    background: linear-gradient(135deg, #FF751F, #ECB186);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-input-container button:hover {
    transform: scale(1.05);
}

/* Responsive Chat Bot */
@media (max-width: 768px) {
    .chat-container {
        width: 300px;
        height: 450px;
        right: -10px;
    }
    
    .chat-bot {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Footer */
.footer {
    background: #fff4d9;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo .logo {
    margin-bottom: 10px;
}

.footer-logo .tagline {
    color: #000;
}

.tagline{
    color: #000 !important;
}

.footer-info p {
    margin: 5px 0;
    color: #000;
}

/* Provided CSS Elements */
.rectangle-33 {
    position: absolute;
    width: 1268px;
    height: 3698px;
    left: 0px;
    top: 136px;
    background: #FF751F;
}

.macbook-air-1 {
    position: relative;
    width: 1280px;
    height: 4440px;
    background: #FFFFFF;
}

.rectangle-6 {
    position: absolute;
    width: 1280px;
    height: 5187px;
    left: 0px;
    top: 153px;
    background: #ECB186;
}

.rectangle-7 {
    position: absolute;
    width: 1280px;
    height: 6487px;
    left: 0px;
    top: 153px;
    background: #F66363;
}

.macbook-air-2 {
    position: relative;
    width: 1280px;
    height: 2560px;
    background: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-letter {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .hero-content p {
        font-size: 1.1em;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2em;
    }
    
    .programs,
    .about,
    .application {
        padding: 60px 0;
    }
}
