
h5 {
	font-size: 28px;
}


p {
	font-size: 20px;
}


.shape-3, .shape-4, .shape-5, .shape-6, .shape-line {
    transition: transform .3s ease-out;
}

/* Text animation initial state */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 4rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #007bff; /* Bootstrap primary color, adjust as needed */
    border-radius: 2px;
}


/* Modern Burger Button */
.mobile-menu-btn {
    width: 40px;
    height: 32px;
    padding: 0;
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger-line {
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all 0.4s ease;
    border-radius: 10px;
    
}

/* Animation: burger → X */
.mobile-menu-btn.active .burger-line:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}
.mobile-menu-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active .burger-line:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

/* Offcanvas Animation */
.offcanvas {
    transform: translateX(100%);
    transition: transform 0.45s ease;
}
.offcanvas.show {
    transform: translateX(0);
}


/*hero section*/

  body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
        }

        /* HEADER */
        header {
            width: 100%;
            padding: 20px 0;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
            transition: 0.3s ease;
        }
        header.sticky {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        header.sticky .nav-link {
            color: #000 !important;
        }

        header.sticky img {
            filter: invert(1);
        }

        header.sticky .burger-line {
    background: #000;
}
        header .nav-link {
            color: #fff;
            font-weight: 500;
            margin-left: 25px;
        }


.hero-section-slider {
	 position: relative;
}

.hero-section-slider::before {
   position: absolute;
   content: "";
   background: #000;
   opacity: 0.2;
   width: 100%;
   height: 100%;
}

.hero-section {
    position: relative;
}

.hero-section::after {
     position: absolute;
   content: "";
   background: #000;
   opacity: 0.3;
   width: 100%;
   height: 100%;
}

.hero-title, .hero-subtitle, .hero-tagline {
    color: #fff;
}

        /* Remove default link underline + set color */
#mainHeader .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 8px 15px;
}

#mainHeader .nav-link:hover {
    color: #007bff;
}

/* Mobile menu button */
.mobile-menu-btn {
    background: none;
    border: none;
    padding: 5px;
}


.menu-text {
    color: #fff;
}

.sticky-7 .menu-text {
    color: #000;
}

.sticky-7 .header__logo-2 img {
    filter: invert(1);
}


.header__logo-2 img {
    width: 50%;
}

/* Hamburger icon */
.menu-icon,
.menu-icon::before,
.menu-icon::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    background: #000;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-icon::before {
    transform: translateY(-8px);
}

.menu-icon::after {
    transform: translateY(5px);
}

/* Smooth slide effect already built-in from Bootstrap */
.offcanvas {
    transition: transform 0.35s ease-in-out !important;
}


        /* HERO SECTION */
        .hero-section {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            background: url('hero-bg.jpg') no-repeat center center/cover;
        }
        
        @media only screen and (max-width: 767px) {
    .hero-section {
            height: 70vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            background: url('hero-bg.jpg') no-repeat center center/cover;
        }
}

        .hero-title {
            font-size: 70px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-family: "Brush Script MT", cursive;
            font-size: 60px;
            
        }

        .hero-tagline {
            font-size: 50px;
            font-weight: 700;
            
        }

        .hero-btn {
            margin-top: 30px;
        }
        .hero-btn .btn {
            padding: 10px 30px;
            border-radius: 30px;
            margin: 0 10px;
            font-size: 16px;
            font-weight: 600;
        }

        /* SLIDER DOTS */
        .hero-dots {
            position: absolute;
            bottom: 10px;
            width: 100%;
            text-align: center;
             
   
    z-index: 9999;
        }
        
        .hero-dots button {
            width: 10px;
             height: 10px;
    border-radius: 20px;
    background: #fff;
        }
        
        .hero-dots span {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: rgba(255,255,255,0.5);
            margin: 0 5px;
            border-radius: 50%;
        }
       .hero-dots .active {
    background: #4d92ce;
    width: 10px;
    height: 10px;
    border-radius: 20px;
}

        @media (max-width: 768px) {
            .hero-title { font-size: 60px; }
            .hero-subtitle { font-size: 45px; }
            .hero-tagline { font-size: 35px; }
            
            .carousel-item {
                height: 70vh !IMPORTANT;
            }
        }
        
        
        .header__area-7 .menu-icon-2 img {
            filter:invert(1);
        }
        
        .header__area-7.sticky-7 .menu-icon-2 img {
            filter:invert(0);
        }


/* FIX CLIENT LOGO SLIDER: allow Swiper to control slide width */


/* Correct Width For Logo Slider */


.client-slider {
	background: #000;
}



.customer-logos .slick-slide {
    margin: 0px 20px;
}

.customer-logos .slick-slide img {
    width: 100%;

}


.customer-logos .slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.customer-logos .slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.customer-logos .slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* Center the slide content */
.customer-logos .slick-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Control logo size (IMPORTANT FIX) */
.customer-logos .slick-slide img {
    height: 50px;            /* fixed height, consistent logos */
    object-fit: contain;
    display: block;
}

/* Remove weird spacing from Slick */
.customer-logos .slick-track {
    display: flex !important;
    align-items: center !important;
}

/* Remove unwanted slide width behaviors */
.customer-logos .slick-slide {
    float: none !important;
}





/*our story*/

.our-story {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 100%;
	padding-bottom: 10%;
}

.our-story::before {
    content: "";
    position: absolute;
    width: 24%;
    height: 100%;
    top: 0;
    right: -5%;
    background: url("../elements/decor-1.png");
    background-repeat: no-repeat;
    background-size: 83%;
}


.team-area {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    bottom: -50%;
    left: -2%;
}

.team-area img {
    width: 90%;
    margin-left: 5%;
}


.team-area::before {
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    background: #4d93cd;
    bottom: 0%;
    left: 0%;
}

.circle {
	width:100%;
	height:320px;
	background:url('../elements/Shape-circle-1.png');
	border-radius:50%;
	position:absolute;
	top: 37%;
	right: -34%;
	transform:translate(-50%, -50%);
	z-index:0;
	background-repeat: no-repeat;
}


.shape-3 {
    width: 50%;
    height: 100%;
    position: absolute;
    bottom: -87%;
    left: -5px;
    background: url(../elements/Shape-3.png);
    background-repeat: no-repeat;
    z-index: 1;
}


.shape-line {
	 width: 50%;
    height: 100%;
    position: absolute;
    top: 5%;
    left: -5px;
    background: url(../elements/shape-line.png);
    background-repeat: no-repeat;
    z-index: 1;
}


.out-story-area h2 {
	font-size: 45px !important;
    font-weight: 800;
    line-height: 1.2;
    width: 65%;
    text-align: left;
    color: #000 !important;
    margin-top: -10%;
}

/* OUR-STORY responsive fix */
.out-story-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

   .experise-section {
       margin-top: 15% !important;
   }



/* MOBILE: stack items */
@media (max-width: 768px) {
    .out-story-area {
        flex-direction: column !important;
        text-align: center;
        gap: 25px;
    }

    .out-story-area h2 {
        font-size: 26px;
        width: 100%;
        line-height: 1.4;
    }

    .team-area {
        margin-top: 15px;
        bottom: -15% !important;
    }

   .experise-section {
       margin-top: 60% !important;
   }

   .our-story .shape-line {
    width: 78%;
    height: 100%;
    position: absolute;
    top: 31%;
    left: 57%;
    background: url(../elements/shape-line.png);
    background-repeat: no-repeat;
    z-index: 0;
    
}

    .shape-3 {
        display: none;
    }

    .our-story .text-end {
        text-align: center !important;
        padding-top: 20px;
    }
}


/*serices section*/


.services {
	position: relative;
	width: 100%;
	height: 100%;
}

.service-card img {
    height: auto;
    
}
.services .swiper-slide {
    padding: 10px;
    height: 500px;
}

.service-card {
    position: relative;
    padding: 0 10px;

}

/* wrapper ensures correct height reference */
.service-img-wrapper {
    position: relative;
    width: 100%;
    padding: 0 0 0 10px;
}

/* left rotated label aligned perfectly to image bottom */
.service-card::before {
    content: attr(data-title);
    position: absolute;
    left: 10px;          /* distance from left of image */
    bottom:0px;         /* align with bottom of image */
    transform: rotate(270deg);
    transform-origin: left bottom;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    opacity: 1;
    white-space: nowrap;
    pointer-events: none;
}

.service-card .shadow {
    position: absolute;
    z-index: 9999999;
    bottom: -10%;
    width: 75%;
    height: 110px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    left: 13%;
 
}

.shape-4 {
    width: 19%;
    height: 100%;
    position: absolute;
    top: -15%;
    left: -10px;
    background: url(../elements/shape-decore-2.png);
    background-repeat: no-repeat;
    z-index: 1;
    transform: rotate(174deg);
}

.shape-5 {
    width: 19%;
    height: 100%;
    position: absolute;
    top: -27%;
    left: -5px;
    background: url(../elements/shape-line.png);
    background-repeat: no-repeat;
    z-index: 1;
    transform: rotate(212deg);
}

.shape-6 {
    width: 12%;f
    height: 100%;
    position: absolute;
    top: -21%;
    left: -20%;
    background: url(../elements/shape-line-3.png);
    background-repeat: no-repeat;
    z-index: 1;
    transform: rotate(156deg);
}



/*faq-news*/

.faq-news {
	background: url("../background/background.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}


.faq-answer {
	color: #fff;
}

.faq-item {
	color: #fff;
}

.news-item h5 {
	color: #fff;
}

.news-item small {
	color: #4d92ce;
}

.news-item p {
    color: #fff;
    font-size: 14px;
}

/*get-started*/

.get-started {
	background: url("../background/background-2.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}


.counter-section {
	position: relative;
	background: url("../background/background-3.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}


.counter-section p {
	color: #fff;
}


.project-mind {
	position: relative;
	background: url("../background/background-4.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

/*testimonials*/

/* FIX TESTIMONIAL SLIDER – SHOW ONLY ONE slide 100% width */
.testimonialSlider .swiper-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.testimonialSlider .swiper-wrapper {
    display: flex !important;
    align-items: center !important;
}

.testimonialSlider {
    overflow: hidden !important;
    padding: 20px 0;
}

.certificate_slider {
    padding: 20px 0;
}


.swiper-pagination-bullet-active {
    background: #4d92ce !important;
} 


/*gallery section*/

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    background: #e5e5e5;
    font-weight: 500;
}
.filter-btn.active {
    background: #4d92ce !important;
    color: #fff;
}
.gallery-item { transition: all 0.3s ease; }


/*common*/

.section_heading-1 h2{
color: #4d92ce;
font-size: 48px;
}

.certificate_section h2 {
   color: #4d92ce;
font-size: 48px; 
}

.section_heading-1 h6{
color: #000;
}


.sec-title {
    font-weight: 600;

    color: #4d92ce;
}



h2 {
    padding: 20px 0;
}

.section_heading-2 h2 {
	 color: #fff;
	 position: relative;
}

.section_heading-2 h6 {
	 color: #fff;
	 position: relative;
}

/* about us page */

.pivora-section {
    background: #fff;
    position: relative;
}

.mission-line,
.vision-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #4d92ce !important;
}

.timeline-item {
    position: relative;
    padding-left: 15px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #4d92ce !important;
    border-radius: 50%;
}

.timeline-date {
    min-width: 80px;
}


.advantages-section {
    background: #000; 
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

/* Advantage Cards */
.adv-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.adv-card:hover {
    background: #eef4ff;
    cursor: pointer;
      background: #4d92ce !important;
    color: #fff;
    border-color: #4d92ce !important !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.adv-card:hover .text-muted {
    color: #fff !important;
}

.adv-card:hover .adv-icon{
      filter: brightness(1000%);
}

.adv-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Tight grid like screenshot */
.advantages-grid .col-md-3,
.advantages-grid .col-6 {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.advantages-grid .col-md-3:nth-child(4),
.advantages-grid .col-md-3:nth-child(8) {
    border-right: none;
}

@media (max-width: 768px) {
    .advantages-grid .col-md-3 {
        border-right: none !important;
    }

    .header__logo-2 img {
    width: 20%;
}
}

.px-4 {
    margin-top: 10%;
}



/* services */

.hero-award-section {
    position: relative;
    height: 80vh;
    min-height: 550px;
    background: url('/mnt/data/Screenshot 2025-11-21 144114.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */
.hero-award-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.hero-award-section .container {
    position: relative;
    z-index: 2;
}



/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-award-section {
        height: auto;
        padding: 120px 0;
    }
}


.services-cards-section {
    position: relative;
    padding: 80px 0;
}

/* Card Design */
.service-card {
    background: #f2f4f7;
  
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
   
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
     background: #4d92ce !important;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.bg-white h5{
  color: #000 !important;   
}

.service-card:hover .text-muted{
    color: #fff !important;
}

.service-card:hover .btn-primary {
    background: #000 !important;
}

.service-card:hover .service-icon {
    filter: brightness(1000%);
}

.service-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Text Adjustments */
.service-card h5 {
    min-height: 50px;
}

.service-card p {
    min-height: 85px;
    margin-bottom: 20px;
}

/* Button */
.service-card a.btn {
    padding: 5px 15px;
    font-size: 13px;
}


.process-section {
    position: relative;
    overflow: hidden;
}

/* Step Layout */
.process-step {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    width: 42px;
    height: 42px;
    border: 2px solid #4d92ce !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d92ce !important;
    font-weight: bold;
    font-size: 15px;
}

/* Right Image Styling */
.main-girl {
    position: relative;
    z-index: 2;
}

/* Floating Bubble */
.idea-bubble {
    position: absolute;
    top: 50px;
    right: 30px;
    background: #4d92ce !important;
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    
    /* Animation */
    animation: bubbleJump 3s ease-in-out infinite;
}

@keyframes bubbleJump {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .idea-bubble {
        right: 50%;
        transform: translateX(50%);
        margin-top: 20px;
    }

    .pt-120 
    {
        padding-top: 180px !important;
    }

    .px-4 {
    margin-top: 10%;
    margin-bottom: 10%;
}

.pivora-section .row {
    gap: 25px;
}
}


.section_heading-3 h6 {
    color: #fff;
}

.section_heading-3 h2 {
    font-size: 48px;
    color: #4d92ce;
}


.hero-award-section {
    background:  url(../services/individual-is-receiving-prestigious-trophy-cup.webp);
}

.hero-subtext {
   color: #fff !important;
}



.services-cards-section .service-card {
    padding: 15px;
}

.section_heading-1 h5 {
    font-size: 20px;
    font-weight: 800;
}

.adv-card h6 {
    font-size: 22px;
}

.adv-card p {
    font-size: 15px;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #4d92ce !important;
    --bs-btn-border-color: #4d92ce !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #4d92ce !important;
    --bs-btn-disabled-border-color: #4d92ce !important;
}


.text-primary {
    --bs-text-opacity: 1;
    color: #4d92ce !important;
}

h2 span{
    font-weight: 800;
}

.process-step h6 {
    font-size: 22px;
}

.process-step p {
    font-size: 18px;
}

.faq-question span {
    font-size: 20px;
}

.project_card {
    position: relative;
    transition: 0.6s;
    overflow: hidden;
}

.project_card span {
    position: absolute;
    padding: 5px 10px;
    right: 5px;
    top: 5px;
    width: auto;
    height: auto;
    background: #fff;
    z-index: 9999;
    text-align: center;
    border-radius: 25px;
    font-size: 15px;
}

.project_card h2 {
    font-size: 22px;
    position: absolute;
    bottom: -40%;
     width: 100%;
    transition: 0.6s;
    opacity:0;
}

.project_card:hover h2 {
    font-size: 22px;
    bottom: 0%;
    opacity:1;
    text-align: center;
    background:#4d92ce;
    color: #fff;
}



.btn-white {
    background: #fff;
}


.hero-video-wrapper {
    position: relative;
    width: 100%;
}

.hero-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Text on Video */
.hero-video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    color: #fff;
    width: 90%;
    max-width: 900px;
    z-index: 2;
}

/* Optional styling for better readability */
.hero-video-text h6 {
    color: #fff;
    margin-bottom: 15px;
}

.hero-video-text h2 {
    color: #fff;
    line-height: 1.3;
}


.masonry-grid {
    column-count: 4;
    column-gap: 20px;
}

@media(max-width: 991px) {
    .masonry-grid { column-count: 3; }
}
@media(max-width: 767px) {
    .masonry-grid { column-count: 2; }
}
@media(max-width: 480px) {
    .masonry-grid { column-count: 1; }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-media {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.masonry-item a {
    display: block;
    position: relative;
    overflow: hidden;
}

.masonry-item img,
.masonry-item video {
    transition: transform 0.4s ease;
}

.masonry-item:hover img,
.masonry-item:hover video {
    transform: scale(1.05);
}

.feature-box {
    transition: 0.6s;
}

.feature-box:hover {
    background: #4d92ce;
    color:#fff;
}

.feature-box:hover .text-muted {
    color: #fff !important;
}


/* Modern Masonry/Grid */
.modern-gallery {
    column-count: 3;
    column-gap: 25px;
}

@media(max-width: 991px) {
    .modern-gallery { column-count: 2; }
}

@media(max-width: 575px) {
    .modern-gallery { column-count: 1; }
}

.modern-item {
    position: relative;
    margin-bottom: 25px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image + Video styling */
.modern-item img,
.modern-item video {
    width: 100%;
    display: block;
    border-radius: 14px;
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.modern-item:hover img,
.modern-item:hover video {
    transform: scale(1.07);
}

/* Dark overlay on hover */
.modern-item:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

/* Video play button */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: rgba(255,255,255,0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-overlay img {
    width: 26px;
}

/* Smooth fade animation on load */
.modern-item {
    animation: fadeIn 0.7s ease forwards;
    opacity: 0;
}
@keyframes fadeIn {
    to { opacity: 1; }
}


/* Wrapper */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* desktop height */
    overflow: hidden;
    background: #000;
}

/* Centered Text */
.hero-video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 3;
    color: #fff;
    padding: 0 20px;
}

/* Video */
.hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-video-wrapper {
        height: 70vh !important;
    }
    .hero-video-text {
        transform: translate(-50%, -45%); /* adjust text higher */
        padding: 0 12px;
    }
}


.testimonial__pagination-dots {
    margin-top: 25px;
    text-align: center;
}

.testimonial__pagination-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonial__pagination-dots .swiper-pagination-bullet-active {
    background: #0d6efd;
    transform: scale(1.4);
}

.testimonial__btn-4 {
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;
    bottom: 0;
}

.swipper-btn {
    position: absolute;
    bottom: 0%;
    width: auto;
    height: 50px;
}

.next-button {
    left: 0;
}

.prev-button {
    right: 0;
}

.swipper-btn i {
    font-size: 30px;
}


.testimonial-fraction {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    letter-spacing: 1px;
    position: absolute;
    bottom: 10px;
    left: 50%;
}

.swipper-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -1% !important;
    left: 0;
    width: 100%;
    z-index: 99999;
}

