
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    background: #000; /* or your theme background */
}



/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary)!important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-dark)!important;
    color: var(--bs-light) !important;
}

.btn.btn-dark {
    background: var(--bs-dark)!important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark)!important;
}

.btn.btn-light {
    background: var(--bs-primary)!important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark)!important;
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-dark)!important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

/* NORMAL STATE */
.navbar .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    position: relative;
}

/* NAV ITEM SPACING */
.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 10px !important;
   
}

/* BORDER ANIMATION */
.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0 solid #00c8ff;
    transition: 0.4s ease;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}

/* HOVER & ACTIVE BORDER */
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item.active::before,
.navbar .navbar-nav .nav-item.active::after {
    width: 100%;
    border-width: 1px;
}

/* HOVER & ACTIVE TEXT COLOR (HOME JAISE) */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #00c8ff !important;
}

/* 🌟 MOBILE MENU */
@media (max-width: 991px) {

    #navbarMenu {
        background: #0d1f3c!important; /* dark same as header */
    }

    .navbar-nav .nav-link {
        color: #ffffff !important;
        font-size: 18px;
        margin: 18px 0;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #00c8ff !important;
    }
}

/* 
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px !important;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }

}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary)!important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    margin-top: 20px !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-primary);
} */

/* 🌟 RESET BOOTSTRAP COLLAPSE */
#navbarMenu {
    display: none;
}

/* 🌟 MOBILE SLIDE MENU */
@media (max-width: 991px) {

    #navbarMenu {
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 260px;
        background: #ffffff;
        padding: 40px 20px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.20);
        transition: 0.35s ease-in-out;
        z-index: 9999;
        display: block !important; /* important for slide panel */
    }

    #navbarMenu.active {
        right: 0;
    }

    /* NAV ITEMS */
    .navbar-nav .nav-link {
        margin: 18px 0;
        font-size: 18px;
        color: #fff !important;
    }

    /* CALL BUTTON POSITION FIX */
    .navbar .d-flex {
        margin-top: 20px;
    }

    /* DROPDOWN FIX FOR MOBILE */
    .navbar-nav .dropdown-menu {
        position: relative !important;
        box-shadow: none;
        background: #f7f7f7;
        margin-top: 5px;
    }
}

/* 🌟 DESKTOP DROPDOWN ANIMATION */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: 0.3s ease-in-out;
    }

    .navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }
}

/* 🌟 TOGGLER BUTTON */
.navbar-toggler {
    background: #00c8ff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
}


#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark)!important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -400px;}
    50%   {right: -200px;}
    75%   {top: -200px;}
    100%  {top: -400px;}
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0%   {left: 0px;}
    50%   {left: 70px;}
    100%  {left: 0px;}
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0%   {left: -240px;}
    50%   {left: -300px;}
    100%  {left: -240px;}
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }
    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 40px !important;
    }

    .owl-prev {
        left: 65%;
    }
}

/* Reduce navbar height */
/* .navbar {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
} */
/* Logo Size */
.navbar img {
    width: 200px;          /* Increase logo size */
    height: auto;
}

/* Responsive logo sizes */
@media (max-width: 992px) {
    .navbar img {
        width: 130px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 6px 0;   /* Smaller navbar on mobile */
    }
    .navbar img {
        width: 110px;
    }
}
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 200px;
    border: 80px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -200px;}
    50%   {right: -100px;}
    75%   {top: -100px;}
    100%  {top: -200px;}
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .text {
    position: relative;
}

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}
/*** About End ***/

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item .service-img::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.service .service-item:hover .service-img::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content {
    position: relative;
}

.service .service-item .service-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover .service-content .service-content-inner a.h4 {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner a.h4:hover {
    color: var(--bs-primary)!important;
}
/*** Service End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
    height: 100%;
}

.project .project-carousel .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-carousel .project-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
    height: 100%;
}

.project .project-carousel .project-item .project-img img {
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img {
    transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
    position: relative;
    width: 75%;
    height: 100%;
    bottom: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px !important;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project .project-carousel .project-item .project-content .project-content-inner {
    position: relative;
    z-index: 2;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner p,
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4,
.project .project-carousel .project-item:hover .project-content .project-content-inner .project-icon i {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4:hover {
    color: var(--bs-primary)!important;
}

.project .project-carousel .project-item:hover .project-content::after {
    height: 100%;
}

.project-carousel .owl-dots {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    border: 8px solid var(--bs-primary);
}
/*** Project End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item-post a {
    transition: 0.5s;
}

.footer .footer-item-post a:hover {
    color: var(--bs-primary)!important;
}

.footer .footer-item-post .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
    color: var(--bs-dark);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark)!important;
}
/*** copyright end ***/


body {
    font-family: Poppins, sans-serif;
    background: #f2f7ff;
    padding: 50px 20px;
}

h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: #002b66;
    margin-bottom: 40px;
}

/* GRID */
.circle-container {
    display: grid;
    gap: 40px;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.circle-card {
    text-align: center;
    cursor: pointer;
    animation: floatUp 3s ease-in-out infinite;
}

/* MULTI-LAYER 3D CIRCLE */
.circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin: auto;
    position: relative;
    transition: 0.45s ease;
    background: radial-gradient(circle at top left, #0095ff, #0048a8 70%);
    box-shadow: 0 10px 45px rgba(0, 150, 255, 0.35);
    overflow: hidden;
}

/* Inner dark core */
.circle::after {
    content: "";
    position: absolute;
    inset: 14px;
    background: #002755;
    border-radius: 50%;
    box-shadow: inset 0 0 25px rgba(0, 195, 255, 0.4);
}

/* Gloss shine */
.circle::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 25px;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    filter: blur(18px);
}

/* ICON */
.circle i {
    position: absolute;
    z-index: 3;
    font-size: 48px;
    color: #eaffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

/* HOVER EFFECTS */
.circle:hover {
    transform: scale(1.14) rotate(4deg);
    box-shadow: 0px 0px 30px #00e1ff, 0px 0px 55px #007bff;
}

.circle:hover i {
    transform: translate(-50%, -50%) scale(1.25);
    text-shadow: 0 0 22px #00eaff;
}

/* Floating */
@keyframes floatUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* TITLE */
.circle-card p {
    font-weight: 700;
    margin-top: 15px;
    color: #002b66;
    font-size: 18px;
    letter-spacing: 0.2px;
}

/* --------------------------- */
/* RESPONSIVE DESIGN BELOW     */
/* --------------------------- */

/* Tablets */
@media (max-width: 1024px) {
    .circle {
        width: 150px;
        height: 150px;
    }
    .circle i {
        font-size: 42px;
    }
    .circle-card p {
        font-size: 16px;
    }
}

/* Small Tablets / Large Mobiles */
@media (max-width: 768px) {
    h2 {
        font-size: 30px;
    }

    .circle-container {
        gap: 30px;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .circle {
        width: 130px;
        height: 130px;
    }

    .circle i {
        font-size: 36px;
    }

    .circle-card p {
        font-size: 15px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    h2 {
        font-size: 26px;
    }

    .circle-container {
        gap: 25px;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    .circle i {
        font-size: 32px;
    }

    .circle-card p {
        font-size: 14px;
    }
}



.vmc-section {
    padding: 80px 20px;
}

.vmc-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: #002b66;
    margin-bottom: 50px;
}

/* Container */
.vmc-container {
    display: grid;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Card */
.vmc-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 35px 25px;
    border-radius: 22px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 140, 255, 0.25);
    box-shadow: 0 10px 35px rgba(0, 110, 255, 0.15);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Glow border animation */
.vmc-card::before {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;
    background: conic-gradient(#00d2ff, #007bff, #00d2ff);
    top: -30%;
    left: -30%;
    z-index: -1;
    border-radius: 20px;
    animation: rotateGlow 6s linear infinite;
    opacity: 0;
}

.vmc-card:hover::before {
    opacity: 1;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Icon */
.vmc-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 140, 255, 0.4);
    transition: 0.3s;
}

.vmc-icon i {
    font-size: 38px;
    color: white;
}

/* Hover Effects */
.vmc-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 90, 255, 0.25);
}

.vmc-card:hover .vmc-icon {
    transform: scale(1.12);
    box-shadow: 0 0 20px #00c8ff;
}

/* Text */
.vmc-card h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #002b66;
    font-weight: 700;
}

.vmc-card p {
    margin-top: 12px;
    font-size: 15px;
    color: #003a7a;
    line-height: 1.6;
}


/* Tablets (max-width 992px) */
@media (max-width: 992px) {
    .vmc-container {
        gap: 30px;
    }
    .vmc-card {
        padding: 30px 22px;
    }
    .vmc-card h3 {
        font-size: 20px;
    }
    .vmc-card p {
        font-size: 14px;
    }
}

/* Mobiles (max-width 768px) */
@media (max-width: 768px) {
    .vmc-section {
        padding: 60px 15px;
    }
    .vmc-section h2 {
        font-size: 30px;
    }
    .vmc-icon {
        width: 75px;
        height: 75px;
    }
    .vmc-icon i {
        font-size: 32px;
    }
}

/* Small Mobiles (max-width 480px) */
@media (max-width: 480px) {
    .vmc-section h2 {
        font-size: 26px;
        margin-bottom: 35px;
    }
    .vmc-container {
        grid-template-columns: 1fr;
    }
    .vmc-card {
        padding: 25px 20px;
    }
    .vmc-card p {
        font-size: 13.5px;
    }
}

.dm-services {
    width: 100%;
    padding: 70px 20px;
    background: #f7faff;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 34px;
    color: #002b6b;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #4d4d4d;
    max-width: 650px;
    margin: 0 auto 50px;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 20px;
    border-left: 4px solid #0aa4f6;
    max-width: 800px;
}

.service-box {
    position: relative;
    padding: 25px 20px 30px;
    margin-bottom: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    border-left: 6px solid #002b6b;
}

.service-box:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(0, 91, 173, 0.2);
    border-left-color: #0aa4f6;
}

.icon {
    width: 20px;
    height: 20px;
    background: #002b6b;
    border: 4px solid #0aa4f6;
    border-radius: 50%;
    position: absolute;
    left: -47px;
    top: 30px;
    box-shadow: 0 0 15px #0aa4f6;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px #0aa4f6; }
    to   { box-shadow: 0 0 20px #0aa4f6; }
}

.service-box h3 {
    font-size: 22px;
    color: #002b6b;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 15px;
    color: #4d4d4d;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .timeline {
        border-left: none;
        padding-left: 0;
    }

    .service-box {
        border-left: none;
        padding-left: 20px;
    }

    .icon {
        display: none;
    }
}

/* =======================
       SERVICES SECTION
    ======================== */
    .services-section {
        padding: 60px 20px;
        max-width: 1100px;
        margin: auto;
    }

    .services-title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #1976d2; /* Darker blue */
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }

    .services-list {
        font-size: 18px;
        line-height: 32px;
        color: #333;
        max-width: 900px;
        margin: auto;
    }

    .services-list strong {
        color: #0d47a1; /* Dark blue highlights */
    }

    /* =======================
       DROPSHIPPING HIGHLIGHT
    ======================== */
    .dropshipping-box {
        margin-top: 60px;
        padding: 30px;
        border-left: 6px solid #0d47a1; /* Dark blue border */
        background: linear-gradient(135deg, #e3f2fd, #bbdefb); /* Light blue gradient */
        border-radius: 12px;
        color: #222;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .dropshipping-box h3 {
        margin-top: 0;
        font-size: 26px;
        font-weight: 700;
        color: #0d47a1; /* Dark blue header */
    }

    .dropshipping-box p {
        font-size: 17px;
        color: #333;
        line-height: 28px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 30px; }
        .hero p { font-size: 16px; }
        .services-title { font-size: 26px; }
        .services-list { font-size: 16px; }
    }

        /* SERVICES SECTION */
    .dm-services {
        padding: 60px 20px;
        max-width: 1200px;
        margin: auto;
    }

    .section-title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1976d2;
    }

    .section-subtitle {
        text-align: center;
        font-size: 18px;
        max-width: 900px;
        margin: 0 auto 40px;
        color: #333;
        line-height: 28px;
    }

    .timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .service-box {
        background: #e3f2fd;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .service-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .service-box .icon {
        font-size: 32px;
        color: #0d47a1;
        margin-bottom: 15px;
    }

    .service-box h3 {
        font-size: 22px;
        color: #0d47a1;
        margin-bottom: 10px;
    }

    .service-box p {
        font-size: 16px;
        color: #333;
        line-height: 26px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 30px; }
        .hero p { font-size: 16px; }
        .section-title { font-size: 26px; }
        .section-subtitle { font-size: 16px; }
        .service-box h3 { font-size: 20px; }
        .service-box p { font-size: 15px; }
    }

    .event-video img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}