/* FULL WIDTH NAVBAR */
.main-header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
transition:all 0.3s ease;
}

.main-header.scrolled{
background:#000;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:3px;
    background:white;
    margin:4px 0;
}

@media (max-width:768px){
.hero h1 {
    font-size: 32px;
}    

.nav-menu{
    position:fixed;
    top:80px;
    left:0;
    width:100%;
    background:black;
    display:none;
    z-index:999;
}

.nav-menu ul{
    flex-direction:column;
    text-align:center;
    padding:20px 0;
}

.nav-menu li{
    margin:15px 0;
}

.nav-menu.active{
    display:block;
}

.hamburger{
    display:flex;
}

.nav-search{
    display:none;
}

}


/* Flex layout across full width */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    display: block;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

/* Menu */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

/* Push menu slightly toward search */
.nav-menu {
    margin-left: auto;
    margin-right: 30px;   /* controls gap between menu and search */
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
}

.nav-menu a.active {
    background: #cf3a3a;
}

/* Search Bar */
.nav-search input {
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    outline: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #222;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    position: absolute;
    width: 100%;
    padding: 20px 0;
    z-index: 10;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: red;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    background: url('../images/aihomepage.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* TITLE */
.hero-title {
    margin-bottom: 30px;
}

.title-top {
    font-size: 110px;
    font-weight: 900;
    letter-spacing: 6px;
    margin: 0;
    text-transform: uppercase;
}

.title-bottom {
    font-size: 75px;
    font-weight: 900;
    margin: -15px 0 0 0;
    text-transform: uppercase;
}

/* RED LINE */
.title-line {
    width: 140px;
    height: 6px;
    background: #cf3a3a;
    margin: 25px auto 0 auto;
    border-radius: 3px;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 44px;
    font-weight: 800;
    margin: 45px 0 40px 0;
}

/* IMAGE BUTTON */
.comic-btn {
    width: 220px;
    transition: transform 0.3s ease;
}

.comic-btn:hover {
    transform: scale(1.1);
}

.title-top,
.title-bottom {
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* SERVICES SECTION */
.services-section {
    padding: 100px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 60px;
}

/* Grid Layout */
.services-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* Card */
.home-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* Hover Effect */
.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.home-service-card img {
    width: 100%;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.service-content p {
    font-size: 18px;
    line-height: 1.6;
}

/* WHY SECTION - REAL BACKGROUND IMAGE */
.why-section {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Real Background Image Layer */
.why-bg {
    position: absolute;
    inset: 0;
    background: url('../images/whychooseusbg.jpg') center/cover no-repeat;
    z-index: 1;
}

/* Dark Overlay for Readability */
.why-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Content Layer */
.why-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.why-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.why-text p {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/******* FAQ SECTION *******/
.faq-section {
    background: #f4f4f4;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.faq-subtitle {
    text-align: center;
    color: #272626;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 18px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #eee;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 18px;
    transition: max-height 0.3s ease;
    background: white;
    padding: 0 18px;
}

.faq-answer p {
    padding: 15px 0;
}

.faq-icon {
    font-size: 1.7rem;
    font-weight: bold;
}

/******* FOOTER *******/
.main-footer {
    font-family: inherit;
}

/* Top Red Area */
.footer-top {
    background: #cf3a3a;
    padding: 60px 20px;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo img {
    width: 180px;
}

.footer-info {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.footer-column p {
    margin: 0;
    font-size: 17px;
}

.footer-column a {
    color: white;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Social Section */
.footer-social {
    background: #e6e6e6;
    padding: 25px 0;
    text-align: center;
}

.footer-social a {
    display: inline-block;
    margin: 0 30px;
    font-size: 30px;
    color: #555;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #cf3a3a;
    transform: scale(1.2);
}

/* Bottom Bar */
.footer-bottom {
    background: #cf3a3a;
    text-align: center;
    padding: 15px 10px;
    font-size: 16px;
    color: white;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        justify-content: center;
        gap: 30px;
    }
}


/*========= SERVICE PAGE =========*/

html, body{
overflow-x:hidden;
}

/* Active Navigation Link */
nav ul li a.active {
    color: #ffffff;
    font-weight: 600;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 4px;
}


/* HERO SECTION */

.page-hero {
    position: relative;
    height: 45vh;
    background: url('../images/servicehero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 32px;
    letter-spacing: 3px;
}

.underline {
    width: 120px;
    height: 6px;
    background: #e10600;
    margin: 20px auto 0;
}


/* SERVICES SECTION */

.services-page {
    padding: 80px 5%;
    background: #f5f5f5;
}

.services-page .container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:40px;
    max-width:1200px;
    margin:auto;
}


/* SERVICE CARD */

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    width:100%;
    height:auto;
    display:block;

}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: #e10600;
    margin-bottom: 15px;
}


/* SERVICE BUTTON */

.service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #e10600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.service-btn:hover {
    background: #b80000;
}


/* PRICE NOTE SECTION */

.price-note{
    padding: 40px 20px;
    font-size: 20px;
    line-height: 1.6;
}

.price-note-container{
    max-width: 1100px;
    margin: auto;
}

.price-note a{
    color: #ff2b2b;
    font-weight: bold;
    text-decoration: none;
}

.price-note a:hover{
    text-decoration: underline;
}


/* MOBILE OPTIMIZATION */

@media (max-width:768px){

.page-hero{
    height:35vh;
}

.page-hero h1{
    font-size:24px;
}

.services-page{
    padding:60px 20px;
}

.service-card{
    padding:20px;
}

.price-note{
    padding:30px 15px;
    font-size:18px;
}

}


/*========= GALLERY PAGE =========*/

.section-hero {
    position: relative;
    height: 45vh;
    background: url('../images/galleryhero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.557);
}

.video-grid video{
width:100%;
border-radius:10px;
}

.video-gallery{
    padding:80px 20px;
    text-align:center;
}

.video-gallery h2{
    font-size:36px;
    margin-bottom:40px;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.video-grid iframe{
    width:100%;
    height:300px;
    border-radius:8px;
}
.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.video-grid iframe{
    width:100%;
    height:315px;
    border-radius:10px;
}
.photo-gallery{
    padding:80px 20px;
    text-align:center;
}

.photo-gallery h2{
    font-size:36px;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:480px;
    object-fit:cover;
    border-radius:8px;
    transition:transform 0.3s ease;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}
/* LIGHTBOX */

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
}

.close-lightbox{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

/* TABLET */

@media (max-width:900px){

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media (max-width:600px){

.gallery-grid{
grid-template-columns:1fr;
gap:15px;
}

.gallery-grid img{
height:auto;
}

}

/*========= ABOUT PAGE =========*/

.section-abouthero {
    position: relative;
    height: 45vh;
    background: url('../images/abouthero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.section-overlayabout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.557);
}
.our-story{
    padding:80px 20px;
}

.story-container{
    display:flex;
    align-items:center;
    gap:40px;
}

.story-image{
    flex:40%;
}

.story-image img{
    width:100%;
    border-radius:10px;
}

.story-text{
    flex:60%;
}

.story-text h2{
    font-size:36px;
    margin-bottom:20px;
}

.story-text p{
    margin-bottom:15px;
    line-height:1.6;
    font-weight: 600;
}

@media(max-width:768px){

.story-container{
    flex-direction:column;
}

.story-image,
.story-text{
    flex:100%;
}

}
.reviews{
    padding:80px 20px;
    background:#f8f8f8;
}

.review-container{
    display:flex;
    align-items:center;
    gap:40px;
}

.review-text{
    flex:60%;
}

.review-text h2{
    font-size:36px;
    margin-bottom:20px;
}

.review-text p{
    margin-bottom:15px;
    line-height:1.6;
}

.review-image{
    flex:40%;
}

.review-image img{
    width:100%;
    border-radius:10px;
}
@media(max-width:768px){

.review-container{
    flex-direction:column;
}

.review-text,
.review-image{
    flex:100%;
}

}
.review-text p{
    margin-bottom:15px;
    line-height:1.6;
    font-style:italic;
}
.team{
    padding:80px 20px;
    text-align:center;
}

.team-title{
    font-size:36px;
    margin-bottom:50px;
}

/* Founder Card */

.founder-card{
    max-width:500px;
    margin:0 auto 60px;
}

.founder-card img{
    width:300px;
    height:300px;
    object-fit: contain;
    border-radius:25%;
    margin-bottom:20px;
}

.founder-card h3{
    font-size:24px;
}

.role{
    color:red;
    font-weight:bold;
    margin-bottom:10px;
}

/* Team Grid */

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.team-card{
    padding:25px;
    border-radius:10px;
    transition:all 0.3s ease;
}

.team-card img{
    width:300px;
    height:300px;
    object-fit: contain;
    border-radius:25%;
    margin-bottom:15px;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.team-card h3{
    margin-bottom:5px;
}
@media(max-width:768px){

.team-grid{
    grid-template-columns:1fr;
}

}

/*========= CONTACT PAGE =========*/

.section-herocontact {
    position: relative;
    height: 45vh;
    background: url('../images/contact.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.section-overlaycontact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.557);
}
.contact-form-section{
    padding:80px 20px;
    text-align:center;
}

.contact-form-section h2{
    font-size:36px;
    margin-bottom:10px;
}

.contact-intro{
    max-width:600px;
    margin:0 auto 40px;
    line-height:1.6;
}

.form-container{
    max-width:900px;
    margin:0 auto;
}

.form-container iframe{
    width:100%;
    border:none;
    border-radius:10px;
}