* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.header {
    background: #f5f5f5;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 24px;
}

.logo span {
    color: #C40000;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu li {
    cursor: pointer;
    font-weight: 500;
}

.menu li:hover {
    color: #C40000;
}

/* HERO */

.hero {
    padding: 50px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #C40000;
}

.hero-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.btn {
    background: #C40000;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #a30000;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .menu {
        display: none;
    }
}
/* SERVICES */

.services {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}

.section-title {
    font-size: 34px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 50px;
}

.service-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #C40000;
}

.service-card p {
    color: #555;
}
/* STATS */

.stats {
    background: #0f0f2d;
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat h3 {
    font-size: 32px;
    color: #C40000;
    margin-bottom: 10px;
}

.stat p {
    font-size: 14px;
}
@media (max-width: 768px) {

    .service-grid {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

}
/* WHY CHOOSE */

.why {
    padding: 100px 0;
    background: #ffffff;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-text p {
    color: #555;
    margin-bottom: 40px;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature h4 {
    color: #C40000;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    color: #555;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 10px;
}
@media (max-width: 768px) {

    .why-content {
        flex-direction: column;
        text-align: center;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

}
/* PORTFOLIO */

.portfolio {
    padding: 100px 0;
    background: #f8f8f8;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: 0.4s;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(196, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin-bottom: 5px;
}
@media (max-width: 768px) {

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

}
/* TESTIMONIALS */

.testimonials {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: #C40000;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 13px;
    color: #777;
}
@media (max-width: 768px) {

    .testimonial-grid {
        flex-direction: column;
    }

}
/* CLIENTS */

.clients {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}

.client-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.client img {
    max-width: 140px;
    opacity: 0.6;
    transition: 0.3s;
}

.client img:hover {
    opacity: 1;
    transform: scale(1.05);
}
@media (max-width: 768px) {

    .client-logos {
        justify-content: center;
    }

    .client img {
        max-width: 100px;
    }

}
/* CONTACT */

.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #555;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
    color: #444;
}

.contact-details li {
    margin-bottom: 10px;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

.contact-form button {
    background: #C40000;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #a30000;
}
@media (max-width: 768px) {

    .contact-content {
        flex-direction: column;
    }

}
/* FOOTER */

.footer {
    background: #0f0f2d;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: #C40000;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li:hover {
    color: #fff;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #aaa;
}
@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

}
/* PAGE HERO */
.page-hero {
    background: #C40000;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

/* SERVICE DETAIL */
.service-detail {
    padding: 80px 0;
}

.service-box {
    margin-bottom: 60px;
}

.service-box h2 {
    color: #C40000;
    margin-bottom: 15px;
}

.service-box p {
    color: #555;
    margin-bottom: 15px;
}

.service-box ul {
    padding-left: 20px;
}

.service-box li {
    margin-bottom: 8px;
}

/* CTA */
.cta {
    background: #0f0f2d;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

/* FOOTER LINKS FIX */
.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .page-hero h1 {
        font-size: 28px;
    }

}
/* PORTFOLIO PAGE */

.portfolio-page {
    padding: 100px 0;
    background: #f8f8f8;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: 0.4s;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(196, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* ABOUT PAGE */

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #C40000;
}

.about-text p {
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-stats {
    background: #f8f8f8;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
}
/* CONTACT PAGE */

.contact-page {
    padding: 100px 0;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    margin-bottom: 20px;
}

.contact-info-box p {
    color: #555;
    margin-bottom: 20px;
}

.contact-info-box ul {
    list-style: none;
}

.contact-info-box li {
    margin-bottom: 10px;
}

.contact-form-box {
    flex: 1;
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

.contact-form-box button {
    background: #C40000;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box button:hover {
    background: #a30000;
}

/* MAP */
.map-section iframe {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .contact-grid {
        flex-direction: column;
    }

}
.header-intro {
    font-size: 14px;
    color: #555;
    margin-left: 20px;
}

.header-intro strong {
    color: #C40000;
}
/* HEADER TEXT LOGO */
.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.logo-text span {
    color: #C40000;
}

/* FOUNDER HERO */
.founder-hero {
    padding: 100px 0;
    text-align: center;
}

.founder-hero h1 {
    font-size: 48px;
}

.founder-hero span {
    color: #C40000;
}

.roles {
    color: #C40000;
    margin: 15px 0;
}

.tagline {
    color: #555;
}

/* MAIN SECTION */
.founder-main {
    padding: 100px 0;
}

.founder-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.founder-details ul {
    margin: 20px 0;
    padding-left: 20px;
}

.founder-details h3 {
    color: #C40000;
}

/* VISION */
.founder-vision {
    padding: 80px 0;
    text-align: center;
    background: #f9f9f9;
}

.founder-vision h2 {
    color: #C40000;
}

/* CTA */
.founder-cta {
    background: #C40000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.white-btn {
    background: #fff;
    color: #C40000;
}

/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #C40000;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

/* Responsive */
@media(max-width:768px){
    .founder-grid{
        flex-direction: column;
        text-align: center;
    }
    .footer-content{
        flex-direction: column;
        text-align: center;
    }
}
.founder-portfolio{
  padding:100px 8%;
  background:#ffffff;
  text-align:center;
}

.founder-top h4{
  color:#e60023;
  letter-spacing:3px;
}

.founder-top h1{
  font-size:48px;
  margin:10px 0;
}

.founder-top p{
  color:#555;
  margin-bottom:40px;
}

/* Top Gallery */
.top-gallery{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:50px;
}

.top-gallery img{
  width:250px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:0.4s;
}

.top-gallery img:hover{
  transform:scale(1.05);
}

/* Main Layout */
.founder-main{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
}

.center-image img{
  width:350px;
  filter:drop-shadow(0 20px 40px rgba(230,0,35,0.3));
}

/* Skill Cards */
.skill-card{
  background:#fff5f5;
  padding:20px;
  border-radius:15px;
  margin-bottom:20px;
  text-align:left;
  width:250px;
  box-shadow:0 10px 20px rgba(230,0,35,0.1);
  transition:0.3s;
}

.skill-card:hover{
  transform:translateY(-5px);
}

.skill-card h3{
  color:#e60023;
  margin-bottom:10px;
}

.skill-card ul{
  padding-left:18px;
  color:#444;
}
.founder-portfolio{
  overflow:hidden;
}

.founder-main{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-start;
  gap:40px;
}

.skills-left,
.skills-right{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.center-image{
  display:flex;
  justify-content:center;
  align-items:center;
}
/* ===============================
   UNIVERSAL MOBILE RESPONSIVE FIX
=================================*/

@media (max-width: 1024px){
  section{
    padding:60px 5%;
  }
}

/* Tablet */
@media (max-width: 768px){

  /* Header */
  header{
    padding:15px 5%;
    flex-direction:column;
    gap:10px;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
  }

  nav a{
    margin:0;
  }

  /* Founder Section */
  .founder-main{
    flex-direction:column;
    align-items:center;
  }

  .skills-left,
  .skills-right{
    width:100%;
    align-items:center;
  }

  .skill-card{
    width:90%;
  }

  .center-image img{
    width:250px;
  }

  .top-gallery{
    flex-direction:column;
    align-items:center;
  }

  .top-gallery img{
    width:90%;
  }

  /* Services (agar hai) */
  .services-container{
    flex-direction:column;
    align-items:center;
  }

  .service-box{
    width:90%;
  }

  /* Footer */
  footer{
    text-align:center;
  }
}

/* Small Mobile */
@media (max-width: 480px){

  h1{
    font-size:26px;
  }

  h2{
    font-size:22px;
  }

  p{
    font-size:14px;
  }

  .logo{
    font-size:20px;
  }

  .center-image img{
    width:200px;
  }

}
/* ===== Default Menu Desktop ===== */
.menu{
    list-style:none;
    display:flex;
    gap:25px;
}

.menu li a{
    text-decoration:none;
    color:#111;
    font-weight:500;
}

.menu li a:hover{
    color:#e60023;
}

/* ===== Hamburger Hidden Desktop ===== */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ===== Mobile ===== */
@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .menu{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#ffffff;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:20px 0;
        display:none;
        box-shadow:0 10px 20px rgba(0,0,0,0.1);
    }

    .menu.active{
        display:flex;
    }
}
.founder-about{
    padding:80px 8%;
    background:#ffffff;
}

.about-container{
    max-width:900px;
    margin:auto;
}

.founder-about h2{
    font-size:36px;
    color:#e60023;
    margin-bottom:20px;
}

.founder-about h3{
    margin-top:40px;
    margin-bottom:15px;
    color:#111;
    border-left:4px solid #e60023;
    padding-left:10px;
}

.founder-about p{
    line-height:1.8;
    color:#444;
    margin-bottom:20px;
    font-size:16px;
}

.brand-list{
    margin-top:15px;
    padding-left:20px;
}

.brand-list li{
    margin-bottom:10px;
    line-height:1.6;
}
.interview-gallery{
    padding:80px 8%;
    background:#fff5f5;
    text-align:center;
}

.gallery-container{
    max-width:1100px;
    margin:auto;
}

.interview-gallery h2{
    font-size:36px;
    color:#e60023;
    margin-bottom:10px;
}

.gallery-subtitle{
    color:#555;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover{
    box-shadow:0 15px 35px rgba(230,0,35,0.2);
}

/* Mobile Responsive */
@media (max-width:768px){
    .gallery-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:480px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}

.hero{
    padding:130px 8% 100px;
    background:linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    position:relative;
    overflow:hidden;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:52px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text h1 span{
    color:#e60023;
}

.hero-text p{
    font-size:18px;
    color:#555;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#e60023;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#b8001c;
    transform:translateY(-3px);
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:520px;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* Subtle Red Glow */
.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(230,0,35,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    z-index:0;
}

.hero-content{
    position:relative;
    z-index:2;
}

/* Mobile */
@media(max-width:768px){
    .hero{
        text-align:center;
        padding:100px 6%;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:16px;
    }
}
/* ================= PREMIUM HEADER ================= */

.header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(0,0,0,0.05);
    transition:all 0.3s ease;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:5px 8%;
}

.logo a{
    text-decoration:none;
    font-size:30px;
    font-weight:700;
    color:#111;
}

.logo strong{
    color:#e60023;
}

/* NAV LINKS */
.navbar{
    display:flex;
    gap:30px;
}

.navbar a{
    position:relative;
    text-decoration:none;
    color:#111;
    font-weight:500;
    transition:0.3s;
}

/* Hover underline animation */
.navbar a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#e60023;
    transition:0.3s;
}

.navbar a:hover::after{
    width:100%;
}

/* Founder Button Style */
.nav-btn{
    background:#e60023;
    color:#fff !important;
    padding:8px 18px;
    border-radius:6px;
}

.nav-btn:hover{
    background:#b8001c;
}

/* Sticky Effect on Scroll */
.header.scrolled{
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* MOBILE */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:768px){

    .navbar{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#ffffff;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:20px 0;
        display:none;
    }

    .navbar.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }
}
/* ===== Premium Logo Glow Effect ===== */

.logo{
    position:relative;
    display:inline-block;
}

.logo-text{
    position:relative;
    font-size:22px;
    font-weight:700;
    color:#111;
    text-decoration:none;
    z-index:2;
}

.logo-text strong{
    color:#e60023;
}

/* Soft Red Glow Behind Logo */
.logo::before{
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    background:#e60023;
    border-radius:50%;
    top:-45px;
    left:-40px;
    filter:blur(60px);
    opacity:0.18;
    z-index:0;
    animation:logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(8px); }
    100%{ transform:translateY(0px); }
}
/* ===== SERVICES HERO PREMIUM ===== */

.services-hero{
    padding:160px 8% 120px;
    background:linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    position:relative;
    overflow:hidden;
}

.services-hero-content{
    max-width:900px;
}

.services-hero-text h1{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
}

.services-hero-text h1 span{
    color:#e60023;
}

.services-hero-text p{
    font-size:18px;
    color:#555;
    margin-bottom:35px;
    line-height:1.7;
}

/* Soft Background Glow */
.services-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(230,0,35,0.07);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(60px);
}

/* Mobile */
@media(max-width:768px){
    .services-hero{
        padding:130px 6% 90px;
        text-align:center;
    }

    .services-hero-text h1{
        font-size:32px;
    }

    .services-hero-text p{
        font-size:16px;
    }
}
/* ===== SERVICES VISUAL SECTION ===== */

.services-visual{
    padding:100px 8%;
    background:#fafafa;
    text-align:center;
}

.visual-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    margin-top:50px;
}

.visual-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.visual-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(230,0,35,0.15);
}

.visual-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.visual-content{
    padding:25px;
}

.visual-content h3{
    margin-bottom:12px;
    color:#e60023;
}

.visual-content p{
    font-size:15px;
    color:#555;
    line-height:1.6;
}

/* Mobile */
@media(max-width:768px){
    .services-visual{
        padding:80px 6%;
    }
}
/* ===== PORTFOLIO HERO PREMIUM ===== */

.portfolio-hero{
    padding:160px 8% 120px;
    background:linear-gradient(135deg,#fff5f5 0%,#ffffff 100%);
    position:relative;
    overflow:hidden;
}

.portfolio-hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.portfolio-text{
    flex:1;
}

.portfolio-text h1{
    font-size:50px;
    font-weight:700;
    margin-bottom:25px;
}

.portfolio-text h1 span{
    color:#e60023;
}

.portfolio-text p{
    font-size:18px;
    color:#555;
    margin-bottom:35px;
    line-height:1.7;
}

.portfolio-image{
    flex:1;
    text-align:center;
}

.portfolio-image img{
    width:100%;
    max-width:520px;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
    transition:0.4s ease;
}

.portfolio-image img:hover{
    transform:scale(1.03);
}

/* Soft Glow Effect */
.portfolio-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(230,0,35,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(60px);
}

/* Mobile */
@media(max-width:768px){
    .portfolio-hero{
        text-align:center;
        padding:130px 6% 90px;
    }

    .portfolio-text h1{
        font-size:32px;
    }

    .portfolio-text p{
        font-size:16px;
    }
}
/* ===== CLEAN PREMIUM PORTFOLIO GRID ===== */

.portfolio-grid-section{
    padding:120px 8%;
    background:#ffffff;
    text-align:center;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:30px;
    margin-top:50px;
}

.portfolio-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    transition:0.4s ease;
    background:#fff;
}

.portfolio-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.5s ease;
}

/* Info Section */
.portfolio-info{
    padding:20px;
    text-align:left;
}

.portfolio-info h3{
    color:#e60023;
    margin-bottom:8px;
    font-size:18px;
}

.portfolio-info p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* Hover Effect */
.portfolio-item:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(230,0,35,0.15);
}

.portfolio-item:hover img{
    transform:scale(1.05);
}

/* Mobile */
@media(max-width:768px){
    .portfolio-grid-section{
        padding:100px 6%;
    }
}

/* ===== CONTACT HERO PREMIUM ===== */

.contact-hero{
    padding:160px 8% 120px;
    background:linear-gradient(135deg,#fff5f5 0%,#ffffff 100%);
    position:relative;
    overflow:hidden;
}

.contact-hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.contact-hero-text{
    flex:1;
}

.contact-hero-text h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
}

.contact-hero-text h1 span{
    color:#e60023;
}

.contact-hero-text p{
    font-size:18px;
    color:#555;
    margin-bottom:35px;
    line-height:1.7;
}

/* Contact Info Card */
.contact-hero-card{
    flex:1;
    background:#ffffff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.contact-hero-card h3{
    margin-bottom:20px;
    color:#e60023;
}

.contact-hero-card p{
    margin-bottom:12px;
    color:#555;
}

/* Soft Glow Effect */
.contact-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(230,0,35,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(60px);
}

/* Mobile */
@media(max-width:768px){
    .contact-hero{
        text-align:center;
        padding:130px 6% 90px;
    }

    .contact-hero-text h1{
        font-size:32px;
    }

    .contact-hero-text p{
        font-size:16px;
    }

    .contact-hero-card{
        margin-top:40px;
    }
}
/* ===== CONTACT FORM SECTION ===== */

.contact-form-section{
    padding:100px 8%;
    background:#ffffff;
}

.contact-form-container{
    display:flex;
    gap:60px;
    flex-wrap:wrap;
    align-items:flex-start;
}

.contact-form-box{
    flex:1;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

.contact-form-box h2{
    margin-bottom:30px;
    color:#e60023;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:14px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#e60023;
    box-shadow:0 0 0 3px rgba(230,0,35,0.1);
}

/* Right Side Info */
.contact-side-info{
    flex:1;
    padding:40px;
}

.contact-side-info h3{
    margin-bottom:20px;
    color:#111;
}

.contact-side-info p{
    margin-bottom:12px;
    color:#555;
}

/* Mobile */
@media(max-width:768px){
    .contact-form-section{
        padding:80px 6%;
    }

    .contact-form-container{
        flex-direction:column;
    }
}
/* ===== ULTRA PREMIUM FOOTER ===== */

.premium-footer{
    background:linear-gradient(135deg,#0f0f0f,#1a1a1a);
    color:#fff;
    padding:50px 8% 40px;
    position:relative;
    overflow:hidden;
}

/* Subtle Red Glow */
.premium-footer::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(230,0,35,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(80px);
}

.footer-top{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:50px;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.footer-brand h2{
    font-size:24px;
    margin-bottom:20px;
}

.footer-brand span{
    color:#e60023;
}

.footer-brand p{
    color:#bbb;
    line-height:1.7;
    font-size:14px;
}

/* Social */
.footer-social{
    margin-top:20px;
}

.footer-social a{
    display:inline-block;
    margin-right:15px;
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    color:#e60023;
}

/* Links */
.footer-links h4,
.footer-contact h4{
    margin-bottom:20px;
    color:#e60023;
}

.footer-links a{
    display:block;
    margin-bottom:12px;
    text-decoration:none;
    color:#bbb;
    transition:0.3s;
}

.footer-links a:hover{
    color:#e60023;
}

.footer-contact p{
    margin-bottom:10px;
    color:#bbb;
}

/* Bottom */
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #222;
    padding-top:20px;
    font-size:13px;
    color:#888;
    position:relative;
    z-index:2;
}

/* Back to top */
.back-top{
    background:#e60023;
    color:#fff;
    border:none;
    padding:8px 12px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.back-top:hover{
    background:#b8001c;
}

/* Mobile */
@media(max-width:768px){
    .premium-footer{
        padding:80px 6% 30px;
        text-align:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
    }
}

/* ===== HOME PREMIUM CONTACT CTA ===== */

.home-contact-cta{
    padding:120px 8%;
    background:linear-gradient(135deg,#0f0f0f,#1c1c1c);
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Subtle Red Glow */
.home-contact-cta::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(230,0,35,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(80px);
}

.home-cta-content{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
}

.home-cta-content h2{
    font-size:40px;
    margin-bottom:20px;
}

.home-cta-content p{
    font-size:18px;
    color:#ccc;
    margin-bottom:35px;
    line-height:1.7;
}

/* Buttons */
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#e60023;
    color:#fff;
}

.primary-btn:hover{
    background:#b8001c;
}

.secondary-btn{
    background:transparent;
    border:1px solid #e60023;
    color:#e60023;
}

.secondary-btn:hover{
    background:#e60023;
    color:#fff;
}

/* Mobile */
@media(max-width:768px){
    .home-contact-cta{
        padding:100px 6%;
    }

    .home-cta-content h2{
        font-size:28px;
    }

    .home-cta-content p{
        font-size:16px;
    }
}
