/* GLOBAL */
body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #111;
    padding-top: 50px; /* navbar height */
}

/* LOGO */
.logo {
    height: 75px;
    width: auto;
    object-fit: contain;
}

/*.logo:hover {
    filter: drop-shadow(0 0 8px rgba(255,0,0,0.6));
}*/

.logo {
    transition: 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo {
    background: transparent !important;
    padding: 0;
}

/* MOBILE SIZE */
@media(max-width:768px){
    .logo {
        height: 40px;
    }
}

/* NAVBAR */
.navbar {
/*    background: rgba(255,255,255,0.9);*/
    backdrop-filter: blur(10px);
/*    box-shadow: 0 5px 20px rgba(0,0,0,0.05);*/
/*    padding: 15px 0;*/
background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.navbar-brand {
    color: #ff0000 !important;
}

.nav-link {
    color: #000 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #ff0000 !important;
}

/* NAV LINKS SPACING */
.navbar-nav .nav-item {
    margin: 0 15px;
}



/* DROPDOWN STYLE */
.dropdown-menu {
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
    animation: fadeIn 0.3s ease;
}

/* ITEMS */
.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.dropdown-item:hover {
    background: #ff0000;
    color: #fff;
    transform: translateX(5px);
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}






/* PREMIUM CTA BUTTON */
.premium-btn {
    position: relative;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255,0,0,0.3);
}

/* HOVER EFFECT */
.premium-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255,0,0,0.5);
    color: #fff;
}

/* CLICK EFFECT */
.premium-btn:active {
    transform: scale(0.95);
}

/* SHINE ANIMATION */
.premium-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    transform: skewX(-25deg);
}

/* SHINE MOVE */
.premium-btn:hover::before {
    animation: shine 0.8s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* PULSE ANIMATION (AUTO ATTENTION) */
.premium-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0);
    }
}


.icon-white {
    color: #fff;
/*    margin-left: 8px;*/
    margin-right: 10px;
    font-size: 18px;
}


.premium-btn svg {
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0% { transform: rotate(0); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(15deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0); }
}



/*...................... HERO SECTION......................... */



.slider-bg {
    height: 92vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 🔥 OVERLAY FIX */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.2)
    );

    z-index: 1;
}

/* 🔥 TEXT LEFT ALIGN */
.slider-content {
    position: absolute;
    top: 60%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 600px;
    width: 100%;

    z-index: 2;
    text-align: left;
}

/* REMOVE BOOTSTRAP CENTER */
.slider-content.text-center {
    text-align: left !important;
}

/* TEXT VISIBILITY */
.slider-content h1 {
    font-size: 40px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.slider-content p {
    font-size: 18px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
}

/* REMOVE WRONG ANIMATION (IMPORTANT) */
.carousel-item.active .slider-content {
    animation: none;
}

/* MOBILE */
@media(max-width:768px){
    .slider-bg {
        height: 70vh;
    }

    .slider-content h1 {
        font-size: 26px;
    }
}


/* BUTTON */
.slider-btn {
    background: #ff0000;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(255,0,0,0.4);
}

/* HOVER */
.slider-btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.6);
    color: #fff;
}

/* OPTIONAL: BUTTON ANIMATION */
.slider-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(255,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}








/*................about SECTION................ */
.about-section {
    background: #fff;
}

/* IMAGE BOX */
.about-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-img-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.5s;
}

/* HOVER EFFECT */
.about-img-box:hover img {
    transform: scale(1.08);
}

/* RED OVERLAY GRADIENT */
.about-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,0,0,0.3), transparent);
}

/* EXPERIENCE BADGE */
.exp-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: #ff0000;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255,0,0,0.4);
}

.exp-badge h3 {
    margin: 0;
    font-size: 28px;
}

.exp-badge span {
    font-size: 14px;
}

/* TEXT */
.about-section h2 {
    font-size: 36px;
}

.about-section p {
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-img-box img {
        height: 280px;
    }

    .exp-badge {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }
}





/*....................Service section here................*/


/* CARD IMAGE */
.service-card-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

/* IMAGE */
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: 0.4s;
}

/* TEXT */
.service-overlay h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.service-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* HOVER EFFECT */
.service-card-img:hover img {
    transform: scale(1.1);
}

.service-card-img:hover .service-overlay {
    background: linear-gradient(to top, rgba(255,0,0,0.55), transparent);
}

/* BUTTON */
.service-btn {
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255,0,0,0.3);
    transition: 0.3s;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.5);
    color: #fff;
}

.heading-line {
    width: 80px;
    height: 4px;
    background: #ff0000;
    border-radius: 10px;
}


.heading-design {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading-design span {
    width: 80px;
    height: 4px;
    background: #ff0000;
    position: relative;
    border-radius: 10px;
}

.heading-design span::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}



/*...................................*/


/* SECTION */
/* SECTION WITH IMAGE */
.work-banner-pro {
    position: relative;
    height: 520px;
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* DARK OVERLAY */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

/* CARD */
.banner-card-pro {
    position: relative;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 45px;
    border-radius: 20px;
    color: #fff;
    max-width: 480px;

    /* RED GLOW */
    border: 1px solid rgba(255,0,0,0.4);
    box-shadow: 0 0 30px rgba(255,0,0,0.3);
}

/* FLOAT ANIMATION */
.banner-card-pro {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* TEXT */
.banner-card-pro h2 {
    font-size: 34px;
    font-weight: 700;
}

.banner-card-pro p {
    margin-top: 10px;
    opacity: 0.9;
}

/* BUTTON */
.banner-btn {
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255,0,0,0.4);
    transition: 0.3s;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,0,0,0.6);
}

/* RESPONSIVE */
@media(max-width:768px){
    .work-banner-pro {
        height: auto;
        padding: 60px 0;
    }

    .banner-card-pro {
        padding: 25px;
    }
}




/*.................Portfolio...................*/


/* CARD */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(255,0,0,0.85), transparent);
}



/*......................testimonials..............*/

/* SECTION */
.testimonial-section {
    background: #f9f9f9;
}

/* CARD */
.testimonial-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: 0.4s;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-10px);
}

/* TEXT */
.testimonial-card p {
    font-style: italic;
    color: #444;
}

/* CLIENT INFO */
.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* NAME */
.client-info h6 {
    margin: 0;
    font-weight: 600;
}

.client-info span {
    font-size: 13px;
    color: #777;
}

/* STARS */
.stars {
    color: #ff0000;
    margin-top: 10px;
    font-size: 18px;
}

/* SWIPER */
.swiper {
    padding-bottom: 30px;
}



/*..................client section.............*/

/* SLIDER WRAPPER */
.logo-slider {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.logo-track {
    display: flex;
    width: calc(200%);
    animation: scroll 20s linear infinite;
}

/* LOGOS */
.logo-track img {
    width: 150px;
    margin: 0 30px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

/* HOVER EFFECT */
.logo-track img {
    width: 220px;     /* same width */
    height: 120px;     /* same height */
    object-fit: contain;  /* 👈 IMPORTANT (no crop, no stretch) */
    
    margin: 0 25px;
    padding: 10px;
    
    background: #fff;   /* clean background */
    border-radius: 10px;

    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .logo-track img {
        width: 100px;
        margin: 0 15px;
    }
}

.logo-track img {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}


/* FOOTER */
.footer-section {
    background: #0d0d0d;
    color: #ccc;
    padding-top: 60px;
}

/* LOGO */
.footer-logo {
    color: #fff;
    font-weight: 700;
}

/* HEADINGS */
.footer-section h5 {
    color: #fff;
    margin-bottom: 15px;
}

/* LINKS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #ff0000;
    padding-left: 5px;
}

/* CONTACT */
.footer-section p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* SOCIAL ICONS */
/* SOCIAL ICONS */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;

    margin-right: 10px;
    transition: 0.3s;
    border: 1px solid #5a5858;
}

/* HOVER EFFECT */
.social-icons a:hover {
    background: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.4);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 30px;
    padding: 15px 0;
    font-size: 14px;
    color: #888;
}



/* COLUMN HOVER (ALL FOOTER BLOCKS) */
.footer-section .col-md-2,
.footer-section .col-md-3,
.footer-section .col-md-4 {
    transition: 0.4s;
    padding: 10px;
    border-radius: 10px;
}

/* HOVER EFFECT */
.footer-section .col-md-2:hover,
.footer-section .col-md-3:hover,
.footer-section .col-md-4:hover {
    background: rgba(255,255,255,0.03);
    transform: translateY(-5px);
}

/* HEADINGS EFFECT */
.footer-section h5 {
    position: relative;
    display: inline-block;
}

.footer-section h5::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ff0000;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.footer-section h5:hover::after {
    width: 100%;
}

/* LINKS ANIMATION */
.footer-section ul li a {
    position: relative;
    display: inline-block;
}

.footer-section ul li a::before {
    content: "➜";
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: 0.3s;
}

.footer-section ul li a:hover::before {
    left: -5px;
    opacity: 1;
}

.footer-section ul li a:hover {
    color: #ff0000;
    padding-left: 10px;
}

/* CONTACT ITEMS */
.footer-section .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.footer-section .contact-item i {
    color: #fff;
    transition: 0.3s;
}

/* CONTACT HOVER */
.footer-section .contact-item:hover {
    transform: translateX(5px);
    color: #ff0000;
}

.footer-section .contact-item:hover i {
    transform: scale(1.2);
}

/* COMPANY TEXT HOVER */
.footer-section p:hover {
    color: #fff;
}

/* SOCIAL ICONS EXTRA GLOW */
.social-icons a:hover {
    box-shadow: 0 0 20px rgba(255,0,0,0.6);
}



.footer-section .col-md-2:hover,
.footer-section .col-md-3:hover,
.footer-section .col-md-4:hover {
    box-shadow: 0 0 20px rgba(255,0,0,0.2);
}

.footer-section ul li {
    transition: 0.3s;
    cursor: pointer;
}

.footer-section ul li:hover {
    color: #ff0000;
    transform: translateX(5px);
}

.social-icons{
    margin-top:40px;
}



















.hero {
    height: 100vh;
    background: linear-gradient(135deg, #fff, #ffe5e5);
}

.glow-text {
    color: #ff0000;
    text-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.sub-text {
    max-width: 700px;
    margin: auto;
    opacity: 0.7;
}

/* BUTTON */
.btn-danger {
    border-radius: 50px;
    font-weight: 500;
}

.btn-danger:hover {
    background: #cc0000;
}

/* SERVICES */
.services {
    background: #ffffff;
}

.service-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #ff0000;
}

/* ABOUT */
.about {
    background: #f9f9f9;
}

.image-box {
    height: 300px;
    background: linear-gradient(135deg, #ff0000, #fff);
    border-radius: 15px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff;
}

/* FOOTER */
footer {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero{
        height:auto;
        padding:100px 0;
    }
}

/* MOBILE FIX */
@media(max-width:991px){
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }
}


/*..................end of nav bar................*/




/*........................*/

/* HERO WRAPPER */
.about-hero {
    width: 100%;
    height: 280px;
    background: url('https://images.unsplash.com/photo-1551703599-6b3e8379aa8c?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-hero {
    margin-top: 20px; /* navbar height ke equal ya thoda zyada */
}

.about-hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 120px;

    /* LEFT FOCUSED DARK OVERLAY */
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.2) 70%,
        rgba(0,0,0,0.0) 100%
    );
}

/* CONTENT */
.about-hero-content {
    text-align: left;
    width: 90%;
    max-width: 1200px;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 15px;
    color: #ddd;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #ffcc00;
}

.breadcrumb span {
    margin: 0 6px;
}

.breadcrumb .active {
    color: #ffcc00;
    font-weight: 500;
}


/*..................................................................*/


/* MAIN SECTION */
.about-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

/* CONTAINER */
.about-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 34px;
    color: #111;
    margin-bottom: 10px;
    position: relative;
}

.section-title h2::after {
    width: 80px;
    height: 4px;
    background: #ff0000;
    position: relative;
    border-radius: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* TEXT */
.about-text p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

/* CARD */
.about-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-top: 4px solid #ff1616;
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.about-card ul {
    padding-left: 18px;
}

.about-card li {
    margin-bottom: 10px;
    color: #555;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 26px;
    }
}



/* MAIN CARD */
.about-card {
    background: linear-gradient(145deg, #ffffff, #f7f9ff);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-left: 5px solid #ff1717;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* HEADER */
.card-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #111;
}

.card-header span {
    font-size: 14px;
    color: #777;
}

/* LIST */
.about-card ul {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.about-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #444;
    border-bottom: 1px dashed #eee;
}

/* ICON BULLET */
.about-card ul li::before {
    content: "✔";
    color: #ff1717;
    font-weight: bold;
}

/* TOP ACCENT GLOW */
.about-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255,204,0,0.15);
    border-radius: 50%;
}



/* SECTION BACKGROUND */
.vm-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fc, #ffffff);
}

/* CONTAINER */
.vm-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD BASE */
.vm-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ICON */
.vm-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* TITLE */
.vm-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

/* TEXT */
.vm-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* VISION ACCENT */
.vm-card.vision {
    border-top: 4px solid #ffcc00;
}

/* MISSION ACCENT */
.vm-card.mission {
    border-top: 4px solid #007bff;
}

/* BACKGROUND GLOW */
.vm-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(0,0,0,0.04);
    border-radius: 50%;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .vm-container {
        grid-template-columns: 1fr;
    }
}






/* SECTION BACKGROUND */
.quality-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

/* CONTAINER */
.quality-container {
    max-width: 1100px;
    margin: auto;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 34px;
    color: #111;
    margin-bottom: 10px;
    position: relative;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

/* GRID */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ITEM CARD */
.quality-item {
    background: #fff;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: 0.3s ease;
    border-left: 4px solid #ff4343;
}

/* HOVER EFFECT */
.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ICON */
/* ICON */
.quality-item .icon {
    width: 40px;
    height: 40px;
    background: #ff1515; /* updated red background */
    color: #fff;         /* icon color white for contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* Hover effect for icons */
.quality-item:hover .icon {
    box-shadow: 0 0 12px rgba(255,21,21,0.5);
    transform: scale(1.1);
}

/* TEXT */
.quality-item p {
    margin: 0;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
}


/* SECTION */
.experience-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

/* CONTAINER */
.exp-container {
    max-width: 1000px;
    margin: auto;
}

/* TIMELINE */
.timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
}

/* LINE */
.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #ff1515;
}

/* ITEM */
.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

/* DOT */
.timeline-dot {
    position: absolute;
    left: -2px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #ff1515;
    border-radius: 50%;
}

/* CONTENT CARD */
.timeline-content {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

/* HOVER */
.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* TEXT */
.timeline-content h4 {
    margin: 0 0 5px;
    font-size: 17px;
    color: #111;
}

.timeline-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }
}

/* TITLE WRAPPER */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* SUBTITLE */
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

/* LINE + DOT DESIGN */
.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: #ddd;
}

/* CENTER DOT */
.section-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #ff1515;
    border-radius: 50%;
}

/* UNDERLINE EFFECT */
.section-title h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff1515;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* DESCRIPTION */
.section-title p {
    margin-top: 10px;
    color: #666;
    font-size: 15px;
}


.section-title h2 {
    background: linear-gradient(to right, #ff1515, #ff7a7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*...........................................*/




/*.................Contact Page here.................*/



.contact-hero {
    width: 100%;
    height: 280px;
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}


/* SECTION */
.contact-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

/* CONTAINER */
.contact-container {
    max-width: 1100px;
    margin: auto;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
}

/* INFO BOX */
.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-left: 4px solid #ff1515;

    /* Animation */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.info-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,21,21,0.15), transparent);
    transform: rotate(25deg);
    opacity: 0;
    transition: 0.5s;
}

.info-box:hover::before {
    opacity: 1;
}

.info-box h4 {
    transition: 0.3s;
}

.info-box:hover h4 {
    color: #ff1515;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.info-box p {
    margin: 0;
    color: #555;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* FORM ROW */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    width: 100%;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff1515;
}

/* BUTTON */
.contact-form button {
    background: #ff1515;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #d91111;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}


/* MAP SECTION */
.map-section {
    padding: 0;
    margin-top: 50px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

/* MAP IFRAME */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/*........................................................................*/




/*.................Services page here........................................*/


.service-hero {
    width: 100%;
    height: 280px;
    background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}


/* SECTION */
.services-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

/* CONTAINER */
.services-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ICON */
.service-card .icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 15px;
    background: #ff1515;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

/* TITLE */
.service-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #111;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



.service-card .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    background: rgba(255,21,21,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* SVG STYLE */
.service-card .icon svg {
    width: 22px;
    height: 22px;
    stroke: #ff1515;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* HOVER */
.service-card:hover .icon {
    background: #ff1515;
}

.service-card:hover .icon svg {
    stroke: #fff;
}

/* BOTTOM LINE */
.hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background: #ff1515;
    transition: 0.4s;
    transform: translateX(-50%);
}

.service-card:hover .hover-line {
    width: 60%;
}


/*......................................................*/




/*.....................Gallery..........................................*/


.gallery-hero {
    width: 100%;
    height: 280px;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}


/* SECTION */
.gallery-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

/* CONTAINER */
.gallery-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

/* ZOOM EFFECT */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    opacity: 0;
    transition: 0.4s;
}

/* SHOW ON HOVER */
.gallery-item:hover .overlay {
    opacity: 1;
}

/* TEXT */
.overlay h4 {
    margin: 0;
    font-size: 16px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* HOVER ZOOM */
.gallery-item:hover img {
    transform: scale(1.12);
}

/* OVERLAY */
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.2)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.4s;
}

/* SHOW */
.gallery-item:hover .overlay {
    opacity: 1;
}

/* TEXT */
.overlay h4 {
    color: #fff;
    margin: 0;
    font-size: 16px;
    transform: translateY(10px);
    transition: 0.4s;
}

.gallery-item:hover .overlay h4 {
    transform: translateY(0);
}

/* ICON (center zoom icon) */
.overlay::before {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: #ff1515;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.gallery-item:hover .overlay::before {
    transform: translate(-50%, -50%) scale(1);
}


/* VIEWER */
.image-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* SHOW */
.image-viewer.active {
    display: flex;
}

/* IMAGE */
.image-viewer img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

/* DEFAULT (Desktop) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* LAPTOP / TABLET */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 per row */
    }
}


/*...............................................................................................*/






/*......................Portfolio...............................................*/


.business-hero {
    width: 100%;
    height: 280px;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}


/* SECTION */
.portfolio-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fc, #ffffff);
}

/* CONTAINER */
.portfolio-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.portfolio-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* HOVER EFFECT */
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

/* TITLE */
.portfolio-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111;
}

/* TAG */
.portfolio-card span {
    font-size: 13px;
    color: #ff1515;
    font-weight: 600;
}

/* TOP ACCENT LINE */
.portfolio-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff1515;
}

/* GLOW EFFECT */
.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,21,21,0.1), transparent);
    opacity: 0;
    transition: 0.4s;
}

.portfolio-card:hover::after {
    opacity: 1;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}



/*.....................................................................................................*/



/*............................University..........................................*/


.university-hero {
    width: 100%;
    height: 280px;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}


/* SECTION */
.university-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

/* CONTAINER */
.uni-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.uni-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.uni-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 14px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
}

/* HOVER */
.uni-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* LOGO */
/* LOGO FIX */
.uni-card img {
    width: 100%;
    height: 100px;              /* fixed height */
    object-fit: contain;        /* image cut nahi hogi */
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: 0.4s;
}

/* COLOR ON HOVER */
.uni-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* TITLE */
.uni-card h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #111;
}

/* TAG */
.uni-card span {
    font-size: 13px;
    color: #ff1515;
    font-weight: 600;
}

/* TOP BORDER */
.uni-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff1515;
    border-radius: 14px 14px 0 0;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .uni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .uni-grid {
        grid-template-columns: 1fr;
    }
}


