/* Inora Technologies - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #ff6f00;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --sky: #23c1ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

/* WhatsApp & Call Buttons */
.contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.call-btn {
    background: #ff6f00;
}

.call-btn:hover {
    background: #e65100;
    transform: scale(1.1);
}

.navbar {
    background: var(--primary-color);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand i {
    font-size: 24px;
    color: var(--accent-color);
}

.navbar-brand span {
    color: var(--accent-color);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px !important;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* logo */
.logo-img {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.brand-text .highlight {
    color: #f5b041; /* gold color */
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #e65100;
}

.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.carousel-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(30, 236, 68, 0.85) 0%, rgba(152, 243, 143, 0.75) 100%); */
}

.carousel-item .carousel-container {
    display: flex;
    align-items: center;
    height: 80%;
    position: relative;
    z-index: 1;
}

.carousel-content {
    max-width: 600px;
}

.carousel-content h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.carousel-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 1.0;
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.about-section .row {
    margin-top: 40px;
}

.about-section .col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section .col-md-4 i {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-section .col-md-4:hover i {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(26,35,126,0.3);
}

.about-section .col-md-4 h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-section .col-md-4 p {
    color: var(--text-light);
    font-size: 15px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.services-section {
    padding: 80px 0;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 20px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(255, 111, 0, 0.05) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-card:hover i {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
}

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.choose-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.choose-card > i {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff8f00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.choose-card:hover > i {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255,111,0,0.4);
}

.choose-card > div {
    flex: 1;
}

.technologies-section {
    padding: 80px 0;
}

.tech-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.tech-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tech-item i {
    font-size: 45px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.tech-item:hover i {
    color: var(--accent-color);
    transform: scale(1.2);
}

.projects-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.project-card .project-img {
    position: relative;
    overflow: hidden;
}

.project-card .project-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.3s;
}

.project-card:hover .project-img::after {
    opacity: 1;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 10px;
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.courses-section {
    padding: 80px 0;
}

.course-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.course-card h3 {
    margin-bottom: 15px;
}

.course-card ul {
    list-style: none;
    padding: 0;
}

.course-card ul li {
    padding: 8px 0;
    color: var(--text-light);
}

.course-card ul li::before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 10px;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--primary-color);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.footer-brand i {
    font-size: 24px;
    color: var(--accent-color);
    background: rgba(255,111,0,0.2);
    padding: 10px;
    border-radius: 8px;
}

.footer-brand span {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 50%, #ff6f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255,111,0,0.3);
}

.footer-about p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer .row {
    align-items: flex-start;
}

.footer .col-lg-4, 
.footer .col-lg-2, 
.footer .col-lg-3 {
    margin-bottom: 30px;
}

.footer h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: var(--accent-color);
    opacity: 0;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 18px;
    color: #a0a0a0;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 4px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    color: #666;
}

.footer-bottom p {
    margin: 0;
    color: #888;
}

.footer-bottom a {
    color: var(--accent-color);

    color: var(--accent-color);
    margin-right: 10px;
}


.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #ccc;
}

.page-header {
    background: linear-gradient(135deg, var(--sky) 0%, var(--white) 100%);
    padding: 80px 0;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .carousel-content h1 {
        font-size: 32px;
    }
    
    .carousel-item {
        height: 450px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar.scrolled {
    padding: 8px 0;
    background: var(--primary-color);
}

/* Enhanced buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e65100 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e65100 0%, #bf360c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.4);
}

/* Card hover effects */
.service-card, .course-card, .tech-item {
    cursor: pointer;
}

/* Testimonial images */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    object-fit: cover;
    margin-bottom: 15px;
}

/* Internship Section Styles */
.internship-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: #fff;
}

.internship-section .section-title h2 {
    color: #fff;
}

.internship-section .section-title p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
}

.internship-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.internship-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.internship-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6f00, #ff8f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    transition: all 0.3s ease;
}

.internship-card:hover .internship-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255,111,0,0.5);
}

.internship-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.internship-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.internship-badge {
    display: inline-block;
    background: #ff6f00;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.internship-highlight {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid rgba(255,255,255,0.2);
}

.internship-highlight h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.internship-highlight h3 i {
    color: #ff6f00;
}

.internship-highlight p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.internship-highlight .btn-light {
    background: #fff;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

.internship-highlight .btn-light:hover {
    background: #ff6f00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,111,0,0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .carousel-content h1 {
        font-size: 32px !important;
    }
    
    .carousel-content p {
        font-size: 16px !important;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .about-section .col-md-4 {
        margin-bottom: 30px;
    }
    
    .services-section,
    .why-choose-section,
    .technologies-section,
    .projects-section,
    .courses-section,
    .testimonials-section {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .choose-card {
        padding: 20px;
    }
    
    .choose-card > i {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
    
    .choose-card h4 {
        font-size: 16px;
    }
    
    .choose-card p {
        font-size: 14px;
    }
    
    .internship-section {
        padding: 50px 0;
    }
    
    .internship-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .internship-card h3 {
        font-size: 16px;
    }
    
    .internship-highlight {
        text-align: center;
    }
    
    .internship-highlight h3 {
        justify-content: center;
    }
    
    .internship-highlight .btn-light {
        width: 100%;
        margin-top: 20px;
    }
    
    .course-card {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-brand {
        font-size: 26px;
    }
    
    .footer h3 {
        margin-top: 25px;
    }
    
    .contact-bar .row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-bar .col-md-4 {
        margin-bottom: 0;
    }
}