/* Project: Roy Packers & Movers
    Color Palette: 
    - Royal Blue: #004aad
    - Red Accent: #d20000
    - Amber Gold: #ff9d00
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* --- Global Reset --- */
a {
    text-decoration: none !important; /* Removes all underlines */
    transition: 0.3s ease-in-out;
}

body {
    color: #494b51;
    font-family: 'Roboto', sans-serif !important;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* --- Fixed Header --- */
.header-area {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- Logo & Branding --- */
.logobox {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logobox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #004aad;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 11px;
    color: #d20000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Top Header & Gradient Icons --- */
.top-header {
    background-color: #004aad;
}

/* Updated: Icon colors now match button hover gradient */
.contact-info i {
    background: linear-gradient(45deg, #d20000, #ff9d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    display: inline-block;
}

.phone-no, .emailid {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 500;
}

.phone-no:hover, .emailid:hover {
    color: #ff9d00 !important;
}

/* --- Navigation --- */
.navbar-nav .nav-link {
    color: #004aad !important;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #d20000 !important;
}

/* --- Buttons & Social --- */
.btn1 {
    background: linear-gradient(90deg, #004aad 0%, #002a63 100%);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}

.btn1::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: linear-gradient(90deg, #d20000, #ff9d00);
    transition: 0.4s ease;
    z-index: -1;
}

.btn1:hover::before {
    width: 100%;
}

.social_icons .icons {
    color: #fff !important;
    background: rgba(255,255,255,0.15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: 0.4s ease;
}

.social_icons .icons:hover {
    background: linear-gradient(45deg, #d20000, #ff9d00);
    transform: translateY(-3px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .logobox { 
        width: 60px !important; 
        height: 60px !important; 
    }
    .brand-name { 
        font-size: 17px; 
    }
    .brand-tagline {
        font-size: 9px;
    }
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}



/*Whatsapp Icon*/
.phone-call {
    width: 50px;
    height: 50px;
    right: 13px;
    bottom: 15px;
    background: #10b418;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 115;
    display: block;
    line-height: 65px;
}

.phone-call img {
    vertical-align: baseline !important;
}

/*.phone-call:after {
    position: absolute;
    content: "Order On Whatsapp";
    z-index: -1;
    top: -15px;
    left: -15px;
    background-color: #10b418;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}*/

.phone-call::after {
    position: absolute;
    content: "Drop Your Message";
    z-index: -2;
    top: 11px;
    left: -150px;
    background-color: #fff;
    border-radius: 100%;
    line-height: 18px;
    color: #0c9212;
    font-size: 13px;
    font-weight: bolder;
    padding: 5px 14px 6px 14px;
    border-radius: 18px;
    box-shadow: 0px 5px 20px 0 rgb(80 80 80 / 20%);
    border: 1px solid #25d366;
    cursor: default;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease;
}

.whatsapp-container:hover .phone-call::after {
    visibility: visible;
    opacity: 1;
    transition: 0.5s ease;
}

.phone-call:before {
    position: absolute;
    content: " ";
    z-index: -1;
    top: -15px;
    left: -15px;
    background-color: #10b418;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse2 1s ease-out;
    animation: pulse2 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse2 {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.6;
    }

    75% {
        -webkit-transform: scale(0.9);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse2 {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    25% {
        transform: scale(0.3);
        opacity: 1;
    }

    50% {
        transform: scale(0.6);
        opacity: 0.6;
    }

    75% {
        transform: scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/*  Whatsapp Icon */

/*Scrolltop*/


.hide {
    transform: scale(0, 0);
}

.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 15px;
    bottom: 75px;
    background: #111;
    color: #fff;
    z-index: 99999;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 30%);
}

.back-to-top i {
    font-size: 26px;
    position: absolute;
    top: 7px;
    left: 10px;
    right: 10px;
}

.back-to-top:hover i {
    color: #fff;
}

/*Scrolltop*/

//BANNER START //

/* ==========================================================================
   ROY PACKERS & MOVERS - FULL COMPLETE BANNER CSS
   ========================================================================== */

.banner-section {
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

[class*="bg_banner-"] {
    width: 100%;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

[class*="bg_banner-"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.bg_banner-1 { background-image: url(../images/banner-1.webp); }
.bg_banner-2 { background-image: url(../images/banner-2.webp); }
.bg_banner-3 { background-image: url(../images/banner-3.webp); }
.bg_banner-4 { background-image: url(../images/banner-4.webp); }

.banner-contentbox {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin: 0 auto;
}

.banner-badge {
    background: #004AAD;
    color: #ffffff;
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 3px solid #FFC78B;
}

.banner-heading2 {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.banner-heading2 span { color: #FFC78B; }

.banner-details {
    color: #f1f1f1;
    font-size: 18px;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 40px auto;
}

.banner-button {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.btn-main, .btn-outline {
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-main { background-color: #FFC78B; color: #000; border: 2px solid #FFC78B; }
.btn-main:hover { background-color: #004AAD; color: #fff; border-color: #004AAD; transform: translateY(-3px); }

.btn-outline { background-color: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background-color: #fff; color: #000; }

/* --- Owl Carousel Navigation Fixes --- */
.banner-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex !important; /* Ensure it is visible */
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 25;
    pointer-events: none;
}

.banner-section .owl-nav button.owl-prev,
.banner-section .owl-nav button.owl-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    color: #fff !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    margin: 0 40px;
    font-size: 24px !important;
    transition: 0.3s !important;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section .owl-nav button.owl-prev:hover,
.banner-section .owl-nav button.owl-next:hover {
    background: #FFC78B !important;
    color: #000 !important;
    transform: scale(1.1);
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #FFC78B !important;
    width: 35px;
}

@media (max-width: 991px) {
    .banner-heading2 { font-size: 2.8rem; }
    .banner-section .owl-nav button { margin: 0 10px; width: 45px; height: 45px; }
}

@media (max-width: 767px) {
    .banner-heading2 { font-size: 1.8rem; }
    .banner-button { flex-direction: column; align-items: center; }
    .banner-section .owl-nav { display: none !important; } /* Hide on mobile for space */
}
//BANNER END//


/*Section1 start*/



//overview//

.roy-premium-overview {
            background: #ffffff;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
        }

        /* Header Styling */
        .roy-badge {
            background: var(--roy-amber);
            color: var(--roy-dark);
            padding: 6px 16px;
            font-weight: 800;
            font-size: 12px;
            text-transform: uppercase;
            border-radius: 50px;
            display: inline-block;
        }

        .roy-main-title {
            font-size: 38px;
            font-weight: 800;
            color: var(--roy-dark);
            margin-top: 20px;
        }

        .roy-title-line {
            width: 70px;
            height: 4px;
            background: var(--roy-blue);
            margin: 15px auto;
            border-radius: 10px;
        }

        .roy-intro-text {
            max-width: 700px;
            color: #666;
            line-height: 1.8;
        }

        /* Feature Cards */
        .roy-feature-card {
            display: flex;
            margin-bottom: 40px;
            transition: 0.3s;
        }

        .roy-icon-box {
            min-width: 70px;
            height: 70px;
            background: var(--roy-blue);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px; /* Required for mobile centering */
            transition: 0.4s;
        }

        .roy-feature-content h4 {
            font-weight: 800;
            color: var(--roy-dark);
            margin-bottom: 10px;
        }

        .justified-p {
            text-align: justify;
            text-justify: inter-word;
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
        }

        .roy-link {
            color: var(--roy-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
        }

        /* Alignment Logic */
        .left-align { text-align: right; flex-direction: row-reverse; }
        .left-align .roy-icon-box { margin-left: 20px; }
        
        .right-align { text-align: left; }
        .right-align .roy-icon-box { margin-right: 20px; }

        /* Animation */
        .roy-visual-wrapper { position: relative; }
        .roy-img-float {
            max-width: 100%;
            animation: floatAnim 4s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        @keyframes floatAnim {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* Responsive Fixes */
        @media (max-width: 991px) {
            .roy-feature-card {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                padding: 0 15px;
            }
            .roy-icon-box { margin: 0 0 20px 0 !important; }
            .roy-main-title { font-size: 28px; }
        }


//overview end //

// Execution Handover //
.ribbon-process-section {
            padding: 100px 0;
            background: #fbfcfe;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
        }

        .title-main { font-weight: 900; font-size: 42px; color: var(--roy-dark); margin-bottom: 10px; }
        .title-main span { color: var(--roy-blue); }
        .glow-divider { width: 100px; height: 6px; background: var(--roy-amber); margin: 0 auto 50px; border-radius: 10px; box-shadow: 0 4px 15px rgba(255, 199, 139, 0.4); }

        .ribbon-wrapper {
            position: relative;
            padding: 80px 0;
            width: 100%;
        }

        /* Full Width Line */
        .ribbon-line-bg {
            position: absolute;
            top: 140px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #eef2ff;
            z-index: 1;
        }

        .ribbon-line-active {
            position: absolute;
            top: 0;
            left: 0;
            width: 0%; /* Animated by JS */
            height: 100%;
            background: linear-gradient(to right, var(--roy-blue), var(--roy-amber));
            box-shadow: 0 0 15px var(--roy-blue);
            transition: width 0.3s ease;
        }

        .ribbon-container {
            display: flex;
            justify-content: space-around;
            padding: 0 5%;
            position: relative;
            z-index: 2;
        }

        .ribbon-step {
            width: 15%;
            text-align: center;
            opacity: 0.5;
            transform: scale(0.9);
            transition: all 0.5s ease;
        }

        .ribbon-step.active {
            opacity: 1;
            transform: scale(1.1);
        }

        .step-blob {
            width: 120px;
            height: 120px;
            background: #fff;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Organic Shape */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 35px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            position: relative;
            transition: 0.5s;
            border: 2px solid transparent;
        }

        .step-count {
            position: absolute;
            top: -10px;
            left: -10px;
            background: var(--roy-dark);
            color: #fff;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            font-size: 14px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Color Coding */
        .color-1 { color: #004AAD; border-color: #004AAD; }
        .color-2 { color: #f59e0b; border-color: #f59e0b; }
        .color-3 { color: #10b981; border-color: #10b981; }
        .color-4 { color: #ef4444; border-color: #ef4444; }
        .color-5 { color: #8b5cf6; border-color: #8b5cf6; }
        .color-6 { color: #ec4899; border-color: #ec4899; }

        .step-info h4 { font-weight: 800; font-size: 20px; color: var(--roy-dark); margin-bottom: 10px; }
        .step-info p { font-size: 13px; color: #666; line-height: 1.5; }

        @media (max-width: 991px) {
            .ribbon-container { flex-direction: column; align-items: center; }
            .ribbon-step { width: 80%; margin-bottom: 50px; opacity: 1; transform: scale(1); }
            .ribbon-line-bg { display: none; }
        }

//Execution Handover end //

//About us page //

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.roy-about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  font-family: 'Poppins', sans-serif;
}

.roy-container {
  max-width: 1150px;
  margin: auto;
}

/* Headings */
.roy-heading {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #0b3d91, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  position: relative;
}

.roy-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff6b00;
  margin-top: 8px;
  border-radius: 2px;
}

/* Paragraph */
.roy-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* List Styling */
.roy-list {
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.roy-list li {
  position: relative;
  padding: 14px 16px 14px 45px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: 0.3s ease;
  border-left: 4px solid transparent;
}

.roy-list li:hover {
  transform: translateX(5px);
  border-left: 4px solid #ff6b00;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.roy-list li::before {
  content: "✔";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b00;
  font-weight: bold;
}

/* Services Grid */
.roy-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* Cards */
.roy-card {
  padding: 25px;
  border-radius: 15px;
  background: linear-gradient(145deg, #ffffff, #f1f5ff);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.roy-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -100%;
  left: -100%;
  background: linear-gradient(120deg, transparent, rgba(255,107,0,0.15), transparent);
  transition: 0.5s;
}

.roy-card:hover::before {
  top: 100%;
  left: 100%;
}

.roy-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Card Text */
.roy-card h3 {
  font-size: 20px;
  color: #0b3d91;
  margin-bottom: 12px;
  font-weight: 600;
}

.roy-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .roy-heading {
    font-size: 26px;
  }

  .roy-card {
    padding: 20px;
  }
}

//routes//
/* ===== Roy Packers & Movers - Modern Kolkata Section ===== */

.rpm-locations-section{
  padding:70px 20px;
  background: linear-gradient(135deg,#f7f9fc,#eef3ff);
  font-family: 'Segoe UI', sans-serif;
}

.rpm-container{
  max-width:1200px;
  margin:auto;
}

/* MAIN TITLE */
.rpm-main-title{
  text-align:center;
  font-size:34px;
  font-weight:700;
  margin-bottom:40px;
  color:#1d2b53;
  position:relative;
  line-height:1.3;
}

.rpm-main-title:after{
  content:'';
  width:90px;
  height:4px;
  background:#2ecc71;
  display:block;
  margin:12px auto 0;
  border-radius:10px;
}

/* GRID */
.rpm-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
}

/* CARD */
.rpm-card{
  background:#fff;
  padding:25px 22px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.3s ease;
  position:relative;
  overflow:hidden;

  /* ✅ center ALL internal elements */
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.rpm-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

/* ICON WRAPPER CENTER */
.rpm-icon{
  width:55px;
  height:55px;
  background:#e8f8ee;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}

.rpm-icon svg{
  width:26px;
  height:26px;
  fill:#27ae60;
}

/* CARD TITLE */
.rpm-card h3{
  font-size:20px;
  margin-bottom:10px;
  color:#1d2b53;
  text-align:center;
}

/* PARAGRAPH (kept justified but visually centered block) */
.rpm-card p{
  font-size:14.5px;
  line-height:1.8;
  color:#555;
  text-align:justify;
  text-justify:inter-word;

  max-width:95%;
}

/* RESPONSIVE */
@media(max-width:768px){

  .rpm-main-title{
    font-size:26px;
  }

  .rpm-card{
    padding:20px 16px;
  }

  .rpm-card h3{
    font-size:18px;
  }
}

@media(max-width:480px){

  .rpm-main-title{
    font-size:22px;
  }

  .rpm-grid{
    grid-template-columns:1fr;
  }
}



/* ==========================================================================
   MODERN FULL-WIDTH WELCOME SECTION
   ========================================================================== */

.modern-welcome-section {
    background-color: #f9fbff;
    width: 100%;
    overflow: hidden;
}

.welcome-content-wrapper {
    padding: 100px 80px;
}

/* Badge & Titles */
.section-badge {
    color: #004AAD;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.section-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #001f49;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-main-title span {
    color: #004AAD;
}

.section-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #FFC78B;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.feature-text h6 {
    margin: 0;
    font-weight: 700;
    color: #001f49;
}

.feature-text p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* Actions */
.btn-modern-dark {
    background: #001f49;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-modern-dark:hover {
    background: #004AAD;
    color: #fff;
    transform: translateY(-3px);
}

.contact-link {
    margin-left: 25px;
    color: #001f49;
    font-weight: 700;
    text-decoration: none;
}

/* Image Side */
.welcome-image-box {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: #FFC78B;
    padding: 25px 35px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-card h3 {
    font-size: 40px;
    font-weight: 900;
    margin: 0;
    color: #001f49;
}

.experience-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #001f49;
    line-height: 1.2;
}

/* --- Responsive Fixes --- */
@media (max-width: 1200px) {
    .welcome-content-wrapper { padding: 60px 40px; }
    .section-main-title { font-size: 32px; }
}

@media (max-width: 991px) {
    .welcome-image-box { min-height: 400px; }
}

@media (max-width: 767px) {
    .welcome-content-wrapper { padding: 50px 20px; text-align: center; }
    .feature-grid { grid-template-columns: 1fr; text-align: left; }
    .feature-item { justify-content: center; }
    .contact-link { display: block; margin: 20px 0 0 0; }
    .experience-card { left: 50%; transform: translateX(-50%); bottom: 20px; padding: 15px 25px; }
}
/*Section1 end*/


/*Section2 start*/
/* --- High-End Services Styling --- */
.services-overview-section {
    background: radial-gradient(circle at top right, #ffffff, #f0f7ff);
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.top-badge {
    background: #FFC78B;
    color: #001f49;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.service-main-title {
    font-weight: 800;
    font-size: 42px;
    color: #001f49;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #004AAD;
    margin: 15px auto;
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 74, 173, 0.05);
    display: flex;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 74, 173, 0.05);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 74, 173, 0.1);
    background: #004AAD;
}

.service-card:hover h4, .service-card:hover p, .service-card:hover .read-more {
    color: #fff !important;
}

.left-card { flex-direction: row-reverse; text-align: right; }
.right-card { flex-direction: row; text-align: left; }

.card-icon {
    width: 60px;
    height: 60px;
    background: #eef3ff;
    color: #004AAD;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: 0.3s;
}

.service-card:hover .card-icon {
    background: #FFC78B;
    color: #001f49;
}

.card-text h4 { font-weight: 700; font-size: 20px; color: #001f49; margin: 0 15px 10px; }
.card-text p { font-size: 14px; color: #666; margin: 0 15px 15px; }

.read-more {
    font-size: 13px;
    font-weight: 700;
    color: #004AAD;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
}

/* Center Visual Animation */
.visual-wrapper {
    position: relative;
    padding: 20px;
}

.floating-man {
    max-height: 480px;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 199, 139, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Responsive Customization */
@media (max-width: 991px) {
    .left-card, .right-card { 
        flex-direction: column !important; 
        text-align: center; 
        align-items: center;
    }
    .card-text h4 { margin: 15px 0 10px; }
    .floating-man { max-height: 350px; }
}
/*section2 end*/


.read-more-button {
    text-align: center;
    margin-top: 45px;
}

.read-more-button .btn1 {
    border-radius: 30px;
}


.mt-30 {
    margin-top: 30px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.content {
    display: none;
}

.learn-more-button .btn1 {
    border-radius: 30px;
}

/*
.learn-more-button .btn1:hover {
    color: #fff;
    transition: 0.3s ease;
    background: #faa60f;
    border: 1.5px solid #faa60f;
}
*/



/*section3 start*/

/* --- Why Choose Us Section --- */
.why-choose-roy {
    background: #fcfdfe;
    padding: 100px 0;
}

.badge-accent {
    background: #FFC78B;
    color: #001f49;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.main-title {
    font-size: 38px;
    font-weight: 800;
    color: #001f49;
    margin-bottom: 20px;
}

.main-title span {
    color: #004AAD;
}

.sub-lead {
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
}

/* Card Styling */
.choose-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(0, 74, 173, 0.08);
    box-shadow: 0 10px 30px rgba(0, 31, 73, 0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #FFC78B; /* Amber top border */
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 74, 173, 0.1);
    border-color: #004AAD;
}

.choose-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: #f0f5ff;
    color: #004AAD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.choose-card:hover .icon-box {
    background: #004AAD;
    color: #ffffff;
    transform: rotateY(360deg);
}

.choose-card h4 {
    font-weight: 700;
    color: #001f49;
    font-size: 22px;
    margin-bottom: 15px;
}

.choose-card p {
    color: #777;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 0;
}

.choose-card strong {
    color: #004AAD;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-title { font-size: 30px; }
    .choose-card { padding: 30px 20px; }
}

@media (max-width: 767px) {
    .why-choose-roy { padding: 60px 0; }
    .main-title { font-size: 26px; }
}
/*section3 end*/



.mt-10 {
    margin-top: 10px !important;
}

/*section4 start*/

/* --- Roy Packers Process Styling --- */
.moving-process-section {
    background: #ffffff;
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.process-badge {
    background: #FFC78B;
    color: #001f49;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.process-title {
    font-weight: 800;
    font-size: 40px;
    color: #001f49;
}

/* Timeline Path Design */
.process-path {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

/* Connecting Line for Desktop */
@media (min-width: 992px) {
    .process-path::before {
        content: '';
        position: absolute;
        top: 100px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, #004AAD 0, #004AAD 10px, transparent 10px, transparent 20px);
        z-index: 0;
    }
}

.process-step {
    width: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: #004AAD;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    position: relative;
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.2);
    transition: 0.4s;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFC78B;
    color: #001f49;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step:hover .step-icon-wrap {
    transform: rotateY(360deg) scale(1.1);
    background: #FFC78B;
    color: #001f49;
}

.step-content h4 {
    font-weight: 700;
    color: #001f49;
    font-size: 20px;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .process-step { width: 100%; max-width: 450px; display: flex; text-align: left; align-items: flex-start; gap: 20px; }
    .step-icon-wrap { flex-shrink: 0; margin: 0; }
}
/*section4 end*/

/* --- Contact Section Styles --- */
.contact-section {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 40px;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-section p {
    margin-bottom: 30px;
    color: #ccc;
}

.quote-form input, .quote-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background: #fff;
    box-sizing: border-box;
    font-size: 1rem;
}

.btn-send {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-send:hover {
    background-color: #d43f33;
}

/* --- FAQ Section Styles --- */
.faq-section {
    background-color: #fff;
    padding: 60px 50px;
}

.sub-heading {
    color: var(--primary-red);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.faq-section h1 {
    font-size: 2.5rem;
    margin-top: 10px;
    color: #333;
}

/* FAQ Accordion Styling */
.faq-accordion {
    margin-top: 40px;
}

details {
    border: 1px solid #eee;
    margin-bottom: 10px;
    background-color: var(--light-grey);
}

summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    border-bottom: 1px solid transparent;
    color: #444;
}

/* Add custom +/- icon */
summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--accent-blue); /* Using logo blue for icons */
    font-size: 1.2rem;
}

details[open] summary::after {
    content: '-';
}

details[open] summary {
    border-bottom: 1px solid #ddd;
}

.content {
    padding: 20px;
    line-height: 1.6;
    color: #666;
    background: #fff;
}

/* Responsive Design */
@media (max-width: 850px) {
    .main-container {
        grid-template-columns: 1fr;
    }
}


/*Location section start*/

.location-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../images/location-bg2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    position: relative;
    z-index: 99;
}

.location-section .content-heading2 {
    text-align: center;
    color: #fff;
}

.location-section .left-contentbox-details {
    text-align: center;
    color: #fff;
}

.box4-imgbox {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

.box4-imgbox img {
    width: auto;
    max-height: 100%;
}

.box4-contentbox {
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    padding-top: 20px;
}

/*Location section end*/

/*section5 start*/

.section5 {
    padding: 50px 0px 120px 0px;
    background-image: url(../images/client-bg.webp);
        background-size: contain;
/*    background-repeat: no-repeat;*/
/*    background-attachment: fixed;*/
/*    background-position: center center;*/
    position: relative;
    z-index: 99;
}
.section5 .content-heading3{
    color: #fff;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #000000;
    stroke: #000000;
}

.countUp-item {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.countUp-progress {
    width: 200px;
    height: 200px;
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #07070c;
    text-align: center;
    line-height: 200px;
    margin: 20px
}

.countUp-progress::after {
    content: "%";
}

.countUp-progress .title {
    position: relative;
    z-index: 100;
}

.countUp-progress .overlay {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #07070c
}

.countUp-progress .left,
.countUp-progress .right {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 10px solid #222235;
    border-radius: 100px 0px 0px 100px;
    border-right: 0;
    transform-origin: right;
}

.countUp-progress .left {
    animation: load1 1s linear forwards;
}

.countUp-progress:nth-of-type(2) .right,
.countUp-progress:nth-of-type(3) .right {
    animation: load2 .5s linear forwards 1s;
}

.countUp-progress:last-of-type .right,
.countUp-progress:first-of-type .right {
    animation: load3 .8s linear forwards 1s;
}

@keyframes load1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes load2 {
    0% {
        z-index: 100;
        transform: rotate(180deg);
    }

    100% {
        z-index: 100;
        transform: rotate(270deg);
    }
}

@keyframes load3 {
    0% {
        z-index: 100;
        transform: rotate(180deg);
    }

    100% {
        z-index: 100;
        transform: rotate(315deg);
    }
}

.card-wrapper {
    width: 100%;
/*
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
*/
}

.card-wrapper .card {
    background: transparent;
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    border: none;
/*    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);*/
}

.card-wrapper .card .circle {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    cursor: default;
}

.card .circle .box,
.card .circle .box span {
    position: absolute;
    top: 50%;
    left: 50%;
}

.card .circle .box {
    height: 100%;
    width: 100%;
/*    background: rgba(0,0,0,0.5);*/
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.2s;
}

.card .circle:hover .box {
    transform: translate(-50%, -50%) scale(0.91);
}

.card .circle .box span,
.card-wrapper .card .text {
    background: #fff;
/*    background: -webkit-linear-gradient(left, #a445b2, #fa4299);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle .box span {
    font-size: 38px;
    font-family: sans-serif;
    font-weight: 600;
    transform: translate(-45%, -45%);
    transition: all 0.1s;
}

.card .circle:hover .box span {
    transform: translate(-45%, -45%) scale(1.09);
}

.card .text {
    margin-top: 30px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}

@media(max-width: 753px) {
    .wrapper {
        max-width: 700px;
    }

    .wrapper .card {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media(max-width: 505px) {
    .wrapper {
        max-width: 500px;
    }

    .wrapper .card {
        width: 100%;
    }
}




.section5-transparentbox {
    padding: 70px 50px;
    border-radius: 30px;
    /* margin: 20px 20px 24px; */
    border: 2px solid #e7e7e7;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    /*
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
*/
}

.testi_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.testi_imagebox {
    width: 200px;
    height: 200px;
    background: #c4cce3;
    border-radius: 50%;
    overflow: hidden;
}

.testi_contentbox {
    width: 75%;
    margin-left: 50px;
}

.testi_heading {
    color: #222021;
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 5px;
}

.testi_subheading {
    color: #b4b2b3;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 30px;
}

.testi_details {
    color: #222021;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0px;
}

.get_a_quotecontainer {
    background: #f08161;
    padding: 40px 50px;
}

.get_a_quotebox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.get_a_quote-iconbox {
    width: 60px;
    height: 60px;
}

.get_a_quote-iconbox img {
    width: auto;
    height: 100%;
}

.get_a_quote-contentbox {
    padding-left: 10px;
    width: 650px;
}

.get_a_quote-heading {
    color: #fff;
    font-size: 38px;
    line-height: 44px;
    /* font-weight: 600; */
    text-transform: capitalize;
    font-family: 'Anton', sans-serif !important;
    margin-bottom: 0px;
}

.get_a_quote-details {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    margin-bottom: 0px;
}

.get_a_quote-buttonbox .btn1 {
    color: #001e57;
    background-color: #fff;
}

.get_a_quote-buttonbox .btn1:hover {
    color: #fff;
}






.col-lg-2_5 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
    padding-right: 15px;
    padding-left: 15px;
}

/*

.section5 .content-heading1 {
    text-align: center;
    color: #fff;
}

.section5 .content-heading1::after {
    right: 0;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.section5 .content-heading2 {
    text-align: center;
    color: #fff;
}
*/

.section5 .content-heading1::after {
    left: -25px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.gallery-slider-con {
    margin-top: 40px
}




/*
.section5 .heading-section {
    margin-bottom: 0;
}

.section5 .heading-section .heading-2 {
    text-align: left;
    margin-bottom: 20px;
}

.section5 .content-heading1{
    color: #00aeef;
}
.section5 .content-heading1::after{
    left: -120px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    border-bottom: 2px solid #00aeef;
}
*/

.mission_vision-tab_container {
    margin-top: 30px;
}



.section5 .treatment_box {
    box-shadow: none;
}

.section5 .treatment_name a {
    text-align: center;
    color: #111;
    transition: 0.3s ease-in-out;
}

.section5 .treatment_name a:hover {
    text-align: center;
    color: #3ab54a;
}

/*
.section5 .owl-carousel .owl-stage-outer {
    padding-top: 20px;
    padding-bottom: 20px;
}
*/
/*
.section5 .owl-theme .owl-nav {
    display: none !important;
}
*/
/*
.section5 .owl-theme .owl-dots .owl-dot {
    display: block !important;
}
*/

.section5 .owl-prev {
    width: 45px !important;
    height: 45px !important;
    position: absolute;
    top: 35%;
    left: -50px;
    background-color: transparent !important;
    border-radius: 0 !important;
    border: 2px solid transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/*
.section5 .owl-prev:hover {
    background-color: #e7e5ff !important;
}
*/

.section5 .owl-prev span {
    font-size: 40px;
    line-height: 30px;
    color: #fff !important;
}

.section5 .owl-prev:hover span {
    color: #fff !important;
}

.section5 .owl-next {
    width: 45px !important;
    height: 45px !important;
    position: absolute;
    top: 35%;
    right: -50px;
/*    bottom: 0px;*/
    background-color: transparent !important;
    border-radius: 0 !important;
    border: 2px solid transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/*
.section5 .owl-next:hover {
    background-color: #fff !important;
}
*/

.section5 .owl-next span {
    font-size: 40px;
    line-height: 30px;
    color: #fff !important;
}

.section5 .owl-next:hover span {
    color: #fff !important;
}

.section5 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}

.section5 .treatment_box {
    border: none;
}

/*
.section5 .treatment_imgbox {
    background: #f8f8fa;
}
*/


.treatment_button2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.section5 .treatment_box:hover .treatment_button2 {
    opacity: 1;
    visibility: visible;
}

.section5 .treatment_btn {
    justify-content: center;
    color: #392917;
    transition: 0.3s ease-in-out;
}

.section5 .treatment_btn:hover {
    color: #966528;
}

/*
.section5 .owl-theme .owl-dots .owl-dot {
    display: block !important;
}
*/

.section5_box {
    width: 500px;
    height: auto;
    padding: 25px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #282828;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-top-left-radius: 40px;
    overflow: hidden;
}

.section5_imagebox {
    width: 150px;
    height: auto;
    border-top-left-radius: 40px;
    overflow: hidden;
}

.section5_imagebox img {
    width: 100%;
    height: auto;
}

.section5_box-heading {
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    padding-left: 40px;
    position: relative;
}

.section5_box-heading::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -25px;
    width: 55px;
    border-top: 2px solid #eb1329;
}

/*section5 end*/


//roy services //

/* ===== BASE ===== */
.rpm-service-page{
  font-family:'Poppins',sans-serif;
  background:#f6f9ff;
  color:#1c1c1c;
}

/* ===== CONTAINER ===== */
.rpm-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ===== HEADINGS ===== */
.rpm-service-page h1,
.rpm-service-page h2{
  text-align:center;
  color:#0b2c5f;
  margin-bottom:15px;
}

.rpm-service-page p{
  text-align:justify;
  line-height:1.8;
  color:#555;
}

/* ===== BUTTON ===== */
.rpm-btn{
  display:inline-block;
  background:linear-gradient(135deg,#ff6a3d,#ff3d77);
  color:#fff;
  padding:12px 28px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  margin-top:20px;
  transition:0.3s;
}

.rpm-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(255,61,119,0.3);
}

/* ===== HERO ===== */
.rpm-hero{
  background:linear-gradient(135deg,#0b2c5f,#1a4fa3);
  color:#fff;
  padding:80px 0;
}

.rpm-hero h1,
.rpm-hero p{
  color:#fff;
}

.rpm-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.rpm-hero-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

/* ===== ABOUT + CONTENT ===== */
.rpm-about,
.rpm-content{
  padding:70px 0;
  background:#fff;
}

/* ===== FEATURES ===== */
.rpm-features{
  padding:70px 0;
}

.rpm-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.rpm-card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  text-align:center;
  transition:0.3s;
}

.rpm-card:hover{
  transform:translateY(-8px);
}

.rpm-icon{
  font-size:40px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:10px;
}

/* ===== PROCESS ===== */
.rpm-process{
  background:#eef4ff;
  padding:70px 0;
}

.rpm-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.rpm-step{
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.rpm-step span{
  width:40px;
  height:40px;
  background:#ff6a3d;
  color:#fff;
  display:inline-block;
  border-radius:50%;
  line-height:40px;
  font-weight:bold;
  margin-bottom:10px;
}

/* ===== CTA ===== */
.rpm-cta{
  background:linear-gradient(135deg,#ff6a3d,#ff3d77);
  color:#fff;
  padding:70px 0;
  text-align:center;
}

.rpm-cta h2,
.rpm-cta p{
  color:#fff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .rpm-hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .rpm-service-page h1{
    font-size:26px;
  }

  .rpm-service-page h2{
    font-size:22px;
  }
}


//faq page //




/*Team section start*/

.team-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../images/team-bg-image2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    /*    background-attachment: fixed;*/
    background-position: center center;
    position: relative;
    z-index: 99;
}

.teambox {
    height: 100%;
    max-height: 655px;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 20%);
}

.team-section .content-heading2 {
    text-align: center;
}

.team-section .left-contentbox-details {
    text-align: center;
}

.member-details {
    color: #878787;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

/*Team section end*/



/*section6 start*/

.section6 {
    padding-top: 200px;
    padding-bottom: 200px;
    background-image: url(../images/sec6-bg.webp);
    background-size: cover;
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-position: center center;
    position: relative;
    z-index: 99;
}
.section6::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #101218;
    opacity: 0.71;
    z-index: 0;
}
.section6 .content-heading1 {
    text-align: center;
}
.section6 .content-heading2 {
    color: #4175fc;
}
.section6 .content-heading3 {
    color: #fff;
}
.section6 .content-heading2::before {
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.section6 .content-heading2::after {
    right: 60px;
    margin: 0 auto;
    text-align: center;
}

.sec6_logobox {
    width: 160px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}


.section6 .nav-pills .nav-link.active,
.section6 .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #3bb5ff;
}

.section6 .nav-pills .nav-item {
    margin-right: 10px;
}

.section6 .nav-pills .nav-link {
    color: #282828;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    background-color: #fff;
    padding: 7px 25px !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 0 !important;
}

.section6 .tab-content .tab-pane {
    color: #767676;
    font-size: 16px;
    line-height: 22px;
}


.sec6_logobox img {
    width: 100%;
    height: auto;
}

.sec6_logobox img {
    transform: scale(1.2);
}

.section6 .readmore-button .btn1 {
    color: #fff;
    background: #fe0000;
    border: 1.5px solid #fe0000;
}

.section6 .readmore-button .btn1:hover {
    color: #fe0000;
    background: #fff;
    border: 1.5px solid #fff;
}

/*
.section6 .heading-section .heading-1{
    color: #fff;
}
.section6 .heading-section .details{
    color: #cfcfcf;
}
*/
.popular-products-slider {
    margin-top: 15px;
}

.section6 .treatment_contentcon {
    padding: 0 0 0 30px;
}

.section6 .treatment_detailsbox {
    width: 100%;
    position: relative;
    height: auto;
    overflow: visible;
    padding: 30px 20px 30px 45px;
    background: #fff;
    transition: 0.3s ease-in-out;
    border-top: none;
    border-bottom: none;
    margin-top: -30px;
    border: 2px solid #ebebeb;
}

.section6 .treatment_name {
    text-align: left;
}

.section6 .treatment_name::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -74px;
    width: 65px;
    border-bottom: 2px solid #F55B14;
}

.section6 .treatment_button {
    padding-bottom: 0px;
}

.section6 .treatment_btn {
    text-align: left;
    justify-content: flex-start;
}

.section6 .owl-prev {
    width: 60px !important;
    height: 45px !important;
    position: absolute;
    right: 60px;
    top: -65px;
    bottom: 0px;
    background-color: #f55b14 !important;
    border-radius: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    clip-path: polygon(20% 0, 100% 0%, 79% 100%, 0% 100%);
}

.section6 .owl-prev:hover {
    background-color: #08172e !important;
}

.section6 .owl-prev span {
    font-size: 40px;
    line-height: 45px;
    color: #fff !important;
}

.section6 .owl-prev:hover span {
    color: #fff !important;
}

.section6 .owl-next {
    width: 60px !important;
    height: 45px !important;
    position: absolute;
    right: 0;
    top: -65px;
    bottom: 0px;
    background-color: #f55b14 !important;
    border-radius: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    clip-path: polygon(20% 0, 100% 0%, 79% 100%, 0% 100%);
}

.section6 .owl-next:hover {
    background-color: #08172e !important;
}

.section6 .owl-next span {
    font-size: 40px;
    line-height: 45px;
    color: #fff !important;
}

.section6 .owl-next:hover span {
    color: #fff !important;
}

.section6 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}


.box4-icon {
    width: 50px;
    height: 50px;
    /*
    border-radius: 50%;
    background: #252525;
*/
    display: grid;
    place-items: center;
    /*    border: 2px solid #fff;*/
    margin-left: auto;
    margin-right: auto;
}

.box4-icon img {
    width: auto;
    height: 100%;
}

.box4-icon i {
    font-size: 24px;
    line-height: 30px;
    color: #0062c6;
}

.box4-heading1 {
    color: #252525;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.box4-heading2 {
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.box4-details {
    color: #7b7b7b;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}

/*section6 end*/


/*section7 start*/


.section7 {
    padding-left: 30px;
    padding-right: 30px;
    /*
    background-image: url(../images/section7-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
*/
    position: relative;
}

.section7-innerbox {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-image: url(../images/section7-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}

.section7 .content-heading1::after {
    left: -30px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

/*
.section7 .content-heading1 {
    text-align: center;
    color: #fff;
}
*/

.section7 .content-heading2 {
    color: #fff;
}

.section7 .content-heading2::before {
    border-bottom: 2px solid #fff;
}

.section7 .features-list {
    margin-left: 20px;
}

.features-listbox .features-list li {
    color: #fff;
}

.section7 .readmore-button {
    text-align: right;
}

.section7 .treatment_box {
    padding-bottom: 40px;
    background-color: transparent;
}

.section7 .treatment_name {
    text-align: center;
    margin-bottom: 20px;
}

.section7 .product_button {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.section7 .product_button .btn1 {
    background: #fff;
}

.btn2 {
    color: #fff;
    background-color: #3bb5ff;
    border: 2px solid #3bb5ff;
    position: relative;
    display: inline-block;
    padding: 0 35px;
    line-height: 44px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    z-index: 1;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn2::before {
    content: "";
    border-color: #1587cd transparent transparent #1587cd;
    border-style: solid;
    border-width: 10px;
    position: absolute;
    bottom: -2px;
    right: -22px;
    z-index: -1;
}

.btn2:hover {
    color: #fff;
    background-color: #00578c;
    border: 2px solid #00578c;
    position: relative;
}

.section7 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}

.section7 .owl-prev {
    width: 45px !important;
    height: 45px !important;
    position: absolute;
    right: 60px;
    top: -65px;
    bottom: 0px;
    background-color: #fff !important;
    border-radius: 0 !important;
    border: 1px solid #e5e5e5 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.section7 .owl-prev:hover {
    background-color: #282828 !important;
    border: 1px solid #282828 !important;
}

.section7 .owl-prev span {
    font-size: 34px;
    line-height: 24px;
    color: #282828 !important;
}

.section7 .owl-prev:hover span {
    color: #fff !important;
}

.section7 .owl-next {
    width: 45px !important;
    height: 45px !important;
    position: absolute;
    right: 0;
    top: -65px;
    bottom: 0px;
    background-color: #fff !important;
    border-radius: 0 !important;
    border: 1px solid #e5e5e5 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.section7 .owl-next:hover {
    background-color: #282828 !important;
    border: 1px solid #282828 !important;
}

.section7 .owl-next span {
    font-size: 34px;
    line-height: 24px;
    color: #282828 !important;
}

.section7 .owl-next:hover span {
    color: #fff !important;
}

.section7 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}



.blog-slider-con {
    margin-top: 40px;
}

.blog-slider-con .owl-carousel .owl-stage-outer {
    padding: 0 18px;
}

.section7 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}


/*  Video Style  */

.video_gallery-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.videobox-con{
    width: 100%;
    height: auto;
    padding: 100px 20px;
    position: relative;
    background-image: url(../images/video-section-bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.video_gallery-section .content-heading1::after {
    left: -120px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    /* border-bottom: 2px solid #00aeef; */
}

.video-box {
    /* height: 100%; */
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 100px;
    height: 100px;
    /* margin-left: auto;
    margin-right: auto;
    margin-top: 0px; */
}

.videobox-con2{
    position: relative;
}
.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    border-radius: 0;
    min-height: 250px;
    width: 100%;
    height: 315px;
    position: relative;
    /* top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    /* position: absolute; */
}

.video-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute; */
}


.video-box a {
    font-size: 27px;
    color: #fff !important;
    /*
      position: absolute;
      z-index: 1111;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
*/
}

video {
    position: absolute;
    z-index: 1111;
}

.video-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    height: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 34px;
    border-radius: 50%;
    color: #fff;
    position: relative;
    background: transparent;
    border: 4px solid #fff;
}

.video-buttonbox {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.video-content {
    padding-left: 10px;
}

.video-content {
    color: #181818;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
}

.video-content span {
    color: #cda274;
}

/*
.video-box a::before{
    content: '';
    position: absolute;
    left: -7px;
    right: 0;
    margin: 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(228,168,83,0.3);
}
*/
/*
.video-box a::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}
*/
.video-title h2 {
    font-size: 32px;
    font-weight: 900;
    padding-bottom: 0;
    line-height: 1px;
    margin-bottom: 15px;
    color: #ff891a;
}

.video-title p {
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    font-size: 50px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 60px;
}

.video-popup {
    z-index: 111;
}

.video-popup i {
    color: #fff;
    z-index: 1;
    font-size: 26px;
}

.video-name {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: #252525;
    text-align: center;
    margin-top: 20px;

}

/* .video-popup::before {
      position: absolute;
      content: " ";
      z-index: -11;
      top: -15px;
      left: -15px;
      background-color: #dc354e;
      width: 115px;
      height: 115px;
      border-radius: 100%;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
      opacity: 0.6;
      -webkit-animation: pulse 1s ease-out;
      animation: pulse 1.8s ease-out;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
} */


.video_gallerybox{

}

/*  Video Style  */


.blog-card {
    width: 90%;
    /*
    margin-left: auto;
    margin-right: auto;
*/
    border-bottom: 2px solid #ed1b24;
    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 20%);
}

.blog-imgbox {
    width: 100%;
    height: auto;
}

.blog-imgbox img {
    width: 100%;
    height: auto;
}

.blog-body {
    position: relative;
    padding: 15px 30px;
}

.blog-type {
    position: absolute;
    top: -16px;
    right: 0;
    padding: 5px 20px;
    display: inline-block;
    background: #e81921;
    text-align: center;
    color: #fff;
}

.publish-date {
    color: #e81921;
    font-size: 15px;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 12px;
}

.blog-heading {
    color: #1d1d1d;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-text {
    color: #5a5a5a;
    font-size: 15px;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 10px;
}


.gallery-box {
    width: 100%;
    height: auto;
    position: relative;
    /* border: 7px solid #f6d8a9; */
    padding: 0;
    background-color: #fff;
    border-top-left-radius: 0;
/*    border: 2px solid #e5e5e5;*/
        border: 1px solid #ebebeb;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.gallery-imgboxcon {
    width: 100%;
    height: auto;
}
.gallery-imgbox img{
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
}
/* .gallery-imgbox img {
    max-height: 100%;
    max-width: 100%;
    width: auto !important;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s ease-in-out;
} */



.gallery-iconbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-icon-1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid !important;
    place-items: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50% !important;
    z-index: 22;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    color: #4175fc;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.gallery-icon-1:hover {
    color: #4175fc !important;
}

.gallery-box:hover .gallery-icon-1 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    background: #fff;
}

.gallery-hover-bg {
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.gallery-box:hover .gallery-hover-bg {
    opacity: 1;
    visibility: visible;
}


/*section7 end*/


/*Testimonial section start*/

.testimonial-section {
    width: 100%;
    height: auto;
    position: relative;
    background-image: url(../images/testimonial_bg-image.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 90px;
    padding-bottom: 90px;
}


.client_slider_con {
    margin-top: 50px;
}
.clients_con{
    padding: 25px 35px;
}
.client-imagebox {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
/*    border: 2px solid #f08161;*/
}

.client-imagebox img {
    width: 100%;
    height: auto;
}

.section8 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section8 .content-heading2::before {
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.section8 .content-heading2::after {
    right: 60px;
    margin: 0 auto;
    text-align: center;
}

.section8 .treatment_box {
    width: 100%;
    border-radius: 0;
}

.section8 .treatment_imgbox {
    border-bottom: none;
    background: #e6e6e8;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.section8 .treatment_contentcon {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    margin-top: -20px;
}

.section8 .treatment_detailsbox {
    height: 180px;
    background: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    border-bottom: 3px solid #001e57;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s linear;
}

.section8 .treatment_box:hover .treatment_detailsbox {
    background: #001e57;
    border-bottom: 3px solid #f08161;
    transition: 0.3s linear;
}


.section8 .treatment_name {
    height: auto;
    color: #001e57;
}

.section8 .treatment_box:hover .treatment_name {
    color: #fff;
}

.section8 .treatment_box:hover .treatment_name a {
    color: #fff;
}

.section8 .product_button {
    position: absolute;
    bottom: 27px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
}

.section8 .product_btn {
    width: 30px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    place-items: center;
    color: #f08161;
    background: #fff;
    border-radius: 50%;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 20%);
}




.gmap-box iframe {
    width: 100%;
}

/*Testimonial section end*/

.google-map-section {
    width: 100%;
    position: relative;
    margin-top: -100px;
    position: relative;
    z-index: -1;
}

/*Contact form section start*/

.contactus-section {
    padding-top: 40px;
    padding-bottom: 100px;
    position: relative;
    background: #D6D6D6;
}

.contactus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    overflow: hidden;
    background-image: url(../images/contact_bg.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

/*
.contactus-section .content-heading2 {
    color: #fff;
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;
    text-transform: uppercase;
}
*/


.contactus_boxcon {
    /*    background: #d6e5d4;*/
    padding-left: 0;
}

.contactus-section .trans_heading {
    bottom: 45px;
}

/*
.contactus-section .content-heading1{
    color: #00aeef;
}
*/
/*
.contactus-section .content-heading1::after{
    left: -160px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    border-bottom: 2px solid #00aeef;
}
*/

.faqpage_section1{
    padding-top: 80px;
    padding-bottom: 80px;
}
.faqpage_section1 .content-heading3{
    color: #54595f;
}
.faq-col {
    margin-left: -10%;
}

.faq_box {
    width: 100%;
    height: auto;
    /* background: #f4f4f9; */
}
.contactus-section .content-heading1{
    margin-left: 20px;
}
/*
.contactus-section .content-heading1::after {
    left: -55px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
*/

.faq_box .accordion-item {
    margin-bottom: 0;
}

.faq_box .accordion-header .accordion-button {
    font-size: 18px !important;
    line-height: 24px;
    font-weight: 600;
    padding: 16px 20px 16px 45px;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.faq_box .accordion-header .accordion-button:not(.collapsed):before{
    content: "\f0d8";
    font-family: "FontAwesome";
    position: absolute;
    left: 20px;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    color: #084af3;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}
.faq_box .accordion-header .accordion-button::before{
    content: "\f0d8";
    font-family: "FontAwesome";
    position: absolute;
    left: 20px;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    color: #084af3;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
}

.faq_box .accordion-header .accordion-button::after{
    display: none;
}
.faq_box .accordion-button{
    color: #fff;
    background-color: #084af3;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.faq_box .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #084af3;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    /* box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%); */
}

.faq_box .accordion-body {
    color: #494b51;
    font-size: 16px;
    line-height: 26px;
}


.small-heading1 {
    color: #e81921;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}

.contact-imagebox {
    width: 100%;
    height: auto;
}

.contact-imagebox img {
    width: 100%;
    height: auto;
}

/*
.form-box{
    padding-top: 60px;
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 75px;
    background: #fff;
    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 30%);
}
*/


/*
.contactus-section .form-box .content-heading2{
    color: #fff;
}
*/

.form-detailsbox-col {
    width: 100%;
    height: 100%;
}


.contactus-section .form-box .left-contentbox-details {
    color: #fff;
}

.form-box-col {
    width: 100%;
    height: 100%;
}

.form-box {
    width: 100%;
    height: 100%;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
/*    background: #fff;*/
    position: relative;
    z-index: 11;
    /*    border-bottom-left-radius: 50px;*/
}

.contact-form-heading {
    color: #2a2a2a;
    font-size: 36px;
    line-height: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.form-details {
    color: #8c8c8c;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-form-heading2 {
    color: #232323;
    text-align: left;
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
}


.contact-form {
    width: 100%;
}

.contact-form .form-control {
    height: 40px;
    color: #454545 !important;
    background-color: #f3f5f9 !important;
    border: 1px solid #f3f5f9 !important;
    border-radius: 0px !important;
    padding-left: 20px;
    font-size: 16px;
    line-height: 22px;
}

.contact-form .form-control::placeholder {
    color: #454545 !important;
    font-size: 16px;
    line-height: 22px;
}

.contact-form textarea {
    height: 120px !important;
}

.submit-button {
    margin-top: 30px;
}

.submit-button .btn1 {
    color: #fff !important;
    background: #252525;
    border: 1px solid #252525;
/*    width: 100%;*/
    display: block;
    border-radius: 0;
}

.submit-button .btn1:hover {
    color: #fff !important;
    background: #cda274;
    border: 1px solid #cda274;
}

.submit-button .btn1::before {
    background: #cda274;
}

.submit-button .btn2 {
    width: 100%;
}

.submit-button .btn2::before {
    display: none;
}

.form-detailsbox {
    padding: 0px 0px;
/*    background: #cda274;*/
    position: relative;
    /*    height: 100%;*/

    /*
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
*/
}

.form-detailsbox .content-heading2 {
    color: #4175fc;
    margin-bottom: 10px;
    padding-bottom: 0;
}
.form-detailsbox .content-heading3 {
    color: #101218;
    margin-bottom: 10px;
    padding-bottom: 0;
}

.form-detailsbox .content-heading2::before {
    display: none;
}

.form-detailsbox .content-heading2::after {
    display: none;
}

.form-detailsbox .left-contentbox-details {
    margin-bottom: 10px;
}

.form-detailsbox3 {
    border-right: none;
}

.info {
    width: 100%;
    height: 556px;
    padding-top: 50px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 50px;
    background: #004838;
}

.info_imgbox {
    width: 148px;
    height: 148px;
    overflow: hidden;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.info_imgbox img {
    width: 100%;
    height: auto;
}

.form-heading {
    color: #fff;
    font-size: 28px;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.addressbox {
    padding-bottom: 30px;
    /*    border-bottom: 2px solid #e9e9e9;*/
}

.iconbox {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    margin-right: 20px;
    transition: 0.3s;
}

.iconbox i {
    color: #2acaa6;
    font-size: 20px;
}

/*
.iconbox:hover{
    color: #fff;
    background: #d48d04;
    transition: 0.3s;
}
*/

.emailbox2 {
    padding: 10px 0 10px 0;
}

.email-address {
/*    color: #fff;*/
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

/*
.email-address:hover {
    color: #e4a853;
}
*/

.phonebox2 {
    padding: 10px 0 10px 0;
    border-bottom: 1px solid #ccc;
}



.location {
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    /*    font-family: 'Anton', sans-serif !important;*/
    position: relative;
    padding-bottom: 10px;
}

/*
.location::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 40px;
    border-bottom: 3px solid #fff;
    border-radius: 5px;
}
*/
.address-details {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0;
}

.contact-no {
/*    color: #fff;*/
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

/*
.contact-no:hover {
    color: #fff;
    transition: 0.3s ease-in-out;
}
*/

.contact-detailsbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.contact_iconbox {
    width: 16px;
    height: auto;
}
.contact_iconbox img{
    width: 100%;
    height: auto;
}

.contact_iconbox i {
    font-size: 16px;
    line-height: 24px;
    color: #4f4f4f;
}

.contact-detailsbox p {
    margin-bottom: 0;
}

/*
.contact-detailsbox p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #e8e8e8;
}
*/
.gmap-section {
    padding-top: 10px;
    padding-bottom: 40px;
}
.gmap-section .content-heading3{
    color: #54595f;
}
.g-map{
    width: 100%;
    height: 450px;
}
.g-map iframe{
    width: 100%;
    height: 450px;
}
/*Contact form section end*/


/*Footer start*/

/* Main Footer Section */
.footer-section {
    padding-top: 80px;
    padding-bottom: 0;
    background: #001533; /* Deep Navy to match your header theme */
    position: relative;
    z-index: 99;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-heading {
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 1px;
}

/* Red accent underline for headings */
.footer-heading::after {
    position: absolute;
    content: '';
    bottom: -8px;
    left: 0;
    width: 40px;
    border-bottom: 3px solid #F05A4E;
    border-radius: 5px;
}

/* Services and Quick Links */
.quick-link {
    padding-left: 0;
    list-style: none;
}

.ql {
    padding: 6px 0;
    transition: 0.3s;
}

.ql a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px;
    line-height: 24px;
    display: flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.ql a i {
    font-size: 12px;
    margin-right: 10px;
    color: #F05A4E; /* Red arrow/bullet */
}

.ql a:hover {
    color: #F05A4E !important;
    transform: translateX(5px);
}

/* Contact Details */
.footer-contact-details {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact-details i {
    color: #F05A4E;
    width: 25px;
}

/* Social Icons */
.footer-section .social_icons .icons {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-section .social_icons .icons:hover {
    background: #F05A4E;
    color: #fff;
    transform: translateY(-3px);
}

/* FIXED: Bottom Credit Bar 
   Updated to ensure "Designed & Developed By Digital Sankalp" 
   is visible in the requested Blue color.
*/
.footer_end {
    width: 100%;
    background: #f8f9fa; /* Light background to make the blue text stand out */
    padding: 20px 0;
    border-top: 1px solid #e1e1e1;
}

.footer_end-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ft_end_txt {
    color: #004AAD !important; /* Roy Blue color as requested */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.ft_end_txt a {
    color: #004AAD !important; /* Ensuring the link is also Blue */
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.ft_end_txt a:hover {
    color: #F05A4E !important; /* Hover effect to Red */
}

/* Responsive Fix for the credit bar */
@media (max-width: 768px) {
    .footer_end-row {
        flex-direction: column;
        text-align: center;
    }
    .ft_end_txt {
        margin-bottom: 10px;
    }
}


/*Footer end*/


//floating buttons //

.floating-contact-wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Specific Colors */
.btn-whatsapp {
    background: transparent;
}
.btn-whatsapp img {
    width: 100%;
    height: auto;
}

.btn-call {
    background-color: #004AAD; /* Roy Blue */
}

.btn-email {
    background-color: #F05A4E; /* Roy Red */
}

.btn-top {
    background-color: #333;
    visibility: hidden; /* Controlled by JS scroll */
    opacity: 0;
}

.btn-top.show {
    visibility: visible;
    opacity: 1;
}

/* FontAwesome Icon size */
.float-btn i {
    font-size: 20px;
}

//floating buttons end //


/*About page start*/

/* .banner-heading-section {
    background: #181818;
    position: relative;
    padding: 120px 0 60px;
} */

.bg-banner-image {
    width: 100%;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 250px 0 250px;
}
.bg-banner-image::before{
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
    background-color: #4175fc;
    opacity: 0.28;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.contact_page-banner::before{
    background-color: #101218;
}

.about-content {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}


.about-content h1 {
    color: #fff;
    font-size: 50px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif !important;
}

.about-content nav {
    width: 100% !important;
    margin-top: 10px;
}

.about-content .breadcrumb {
    padding: 0 !important;
    margin-bottom: 0 !important;
    background-color: transparent !important;
    justify-content: center;
    font-size: 18px;
    line-height: 22px;
}

.about-content .breadcrumb-item a {
    color: #fff !important;
    font-size: 18px;
    line-height: 22px;
}

.about-content .breadcrumb-item.active {
    color: #fff !important;
}

.about-content .breadcrumb-item.active a {
    color: #fff !important;
}

.about-content .breadcrumb-item + .breadcrumb-item::before {
    color: #fff !important;
}

.imagebox {
    width: 100%;
    height: auto;
}

.imagebox img {
    width: 100%;
    height: auto;
}
.aboutpage_section1{
    padding-top: 80px;
    padding-bottom: 40px;
}
.aboutpage_section1 .contentbox_heading1_ul {
    width: 90px;
}
.aboutpage_section1 .left-contentbox-details{
    text-align: justify;
}
.aboutpage_section2 .left-contentbox-details{
    text-align: justify;
}
.aboutpage_section3 .left-contentbox-details{
    text-align: justify;
}

.aboutpage_section1 .imagebox3 {
    border-radius: 30px;
}

.aboutpage_section2 {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    height: auto;
    position: relative;
    background-image: url(../images/about-page-sec2-bg.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}
.heading-box1{
    padding: 10px 10px 10px 10px;
    background-color: #494B51B3;
    border-radius: 10px 10px 10px 10px;
}
.heading-box1 .content-heading2{
    color: #fff;
}
.heading-box2{
    padding: 10px 10px 10px 10px;
    background-color: #084AF39E;
    border-radius: 10px 10px 10px 10px;
}
.heading-box2 .left-contentbox-details{
    color: #fff;
}

.aboutpage_section3{
    padding-top: 80px;
    padding-bottom: 80px;
    background: #4175fc;
}
.aboutpage_section3 .content-heading2{
    color: #fff;
}
.heading-box3{
    margin: 20px 20px 20px 20px;
    background-color: #54595F96;
    border-radius: 10px 10px 10px 10px;
}
.aboutpage_section3 .content-heading3{
    color: #fff;
}
.heading-box4{
    background-color: #00000052;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 20px 20px 20px 20px;
    border-radius: 10px 10px 10px 10px;
}
.heading-box4 .content-heading1{
    color: #fff;
}
.heading-box4 .left-contentbox-details{
    color: #fff;
}


.skillbox {
    padding: 20px;
    background: #fff;
}


.aboutpage_section2 .list-row {
    margin-top: 10px;
}

.experiencebox {
    padding: 20px;
    background: #08b1b6;
}

.experiencebox .list-content {
    color: #fff;
}

.experiencebox .list-iconbox i {
    color: #fff;
}

/*About page end*/
.qualitypage_section1{
    padding-top: 50px;
    padding-bottom: 80px;
}
.qualitypage_section1 .elementor-icon-list-item span i {
    color: #084af3;
    transition: color 0.3s;
    font-size: 22px;
}
.qualitypage_section1 .elementor-icon-list-text{
    color: #494b51;
}
.product_con{
    margin-top: 50px;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.aboutus_page-section1 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.aboutus_page-section1 .heading-2 {
    color: #2a2a2a;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.aboutus_page-section1 .left-contentbox {
    padding-bottom: 0px;
}

.aboutus_page-section1 .left-contentbox .left-contentbox-details {
    margin-bottom: 0;
    color: #252525;
}

.about-section2 {
    padding-top: 90px;
    padding-bottom: 80px;
    width: 100%;
    height: auto;
    position: relative;
    background-image: url(../images/sea-fishing-2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 90px;
}



.iconbox2 {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    place-items: center;
    transition: 0.3s ease;
}

.iconbox2 img {
    width: 60px;
    height: 60px;
}

.iconbox2 i {
    color: #fff;
    font-size: 24px;
    transition: 0.3s ease;
}

.iconbox2:hover {
    background: #fff;
    transition: 0.3s ease;
}

.iconbox2:hover i {
    color: #2a2a2a;
    transition: 0.3s ease;
}

.sub-cloumbox-heading {
    color: #fff;
    text-align: center;
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.sub-cloumbox-details {
    color: #ededed;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
}



/*Our Products page start*/

.our-products {
    padding-top: 80px;
    padding-bottom: 80px;
}

.catego-info:nth-child(even) {
    background-color: #ededed;
}

.catego-info:nth-child(odd) {
    background: #FFFFFF;
}

.our-products .left-contentbox .content-heading2 {
    color: #2a2a2a;
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.our-products .product-code {
    font-size: 16px;
    color: #777;
}

.our-products .product-code strong {
    color: #454545;
    font-weight: 600;
}

/*
.learn-more-btn{
    color: #fff !important;
    margin-left: 10px;
    background: #f5ad0d !important;
}
.learn-more-btn:hover{
    color: #f5ad0d !important;
    background: transparent !important;
}
*/
.our-category-section {
    width: 100%;
    height: auto !important;
    background: #dfdfdf;
    padding-bottom: 80px;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.card-box {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #fff;
}

.card-imgbox {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px;
}

.card-imgbox img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 20px 0;
}

.card-content .card-heading {
    color: #0c141d;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    line-height: 22px;
    padding: 0 0 0 0;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.card-content .card-heading a {
    color: #0c141d;

}

.card-button .read-more {
    color: #bc0000;
}

.button-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
}

.button-group .btn1 {
    color: #fff;
    background: #ef7f1b;
    transition: 0.3s ease;
    border: 1.5px solid #ef7f1b;
}

.button-group .btn1:hover {
    color: #fff;
    background: #2acaa6;
    transition: 0.3s ease;
    border: 1.5px solid #2acaa6;
}

.button-group .learn-more-btn2 {
    color: #fff;
    background: #2acaa6;
    transition: 0.3s ease;
    border: 1.5px solid #2acaa6;
    margin-left: 20px;
}

.button-group .learn-more-btn2:hover {
    color: #2acaa6;
    background: transparent;
    transition: 0.3s ease;
    border: 1.5px solid #2acaa6;
}

.more-products {
    padding-top: 80px;
    padding-bottom: 80px;
}

.our-products-cate {
    padding-top: 90px;
    padding-bottom: 0px;
}

.service-box {
    border: 2px solid #ebebeb;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.service-imagebox {
    height: 350px;
    width: 100%;
    position: relative;
    /* border: 7px solid #f6d8a9; */
    padding: 7px;
    background-color: #fff;
    border-bottom: 2px solid #ebebeb;
    overflow: hidden;
}

.service-imagebox img {
    /*height: 200px;
   width: 150px;*/
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.5s ease;
}

.service-imagebox img:hover {
    transform: scale(1.1);
    transition: 0.5s ease;
}

.service-contentbox {
    padding: 20px 1px 26px 1px;
    height: auto;
    margin-bottom: 0;
}

.service-heading {
    color: #252525;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    /* height: 52px; */
    text-align: center;
    font-weight: bold;
    /* font-family: 'Oswald', sans-serif !important; */
}

.service-heading a {
    color: #252525;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    /* height: 52px; */
    text-align: center;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    /* font-family: 'Oswald', sans-serif !important; */
}

.service-heading a:hover {
    color: #F55B14;
}

.service-button {
    padding-top: 0;
    padding-bottom: 40px;
    /* padding-left: 15px; */
    text-align: center;
}

.service-button .btn1 {
    font-size: 12px;
    padding: 11px 22px;
    color: #fff;
    background: #3ab54a;
    border: 1.5px solid #3ab54a;
    cursor: pointer;
}

.service-button .btn1:hover {
    color: #3ab54a;
    background: #252525;
    border: 1.5px solid #252525;
}

/*Our Products page end*/

/*Our Products details page start*/
.our-products2 {
    padding-bottom: 0;
}

.hr-line {
    width: 100%;
    border-top: 1px solid #999;
    margin-bottom: 20px;
}

.our-products-section .left-contentbox .content-heading2 {
    color: #2a2a2a;
    text-align: left;
    position: relative;
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.details-heading {
    font-size: 22px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
    border-bottom: 1px solid #dad8d8;
    padding-bottom: 10px;
}

/*
.our-products table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.our-products table tr:nth-child(odd) {
    background: #f4f4f4;
}

.our-products table th,
td {
    width: 50%;
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-bottom: 1px solid #dfdfdf !important;
}
*/

.product-imgcon {
    /*    border: 2px solid #999;*/
    /*    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 20%);*/
}

/*Our Products details page end*/



/*Our Projects page start*/

.our-project-section2 {
    padding-bottom: 90px;
}

.our-project-section2 .project-contentbox {
    padding: 40px;
}


/*Our Projects page end*/

.contactus-section2 {
    padding-top: 40px;
    padding-bottom: 100px;
    position: relative;
    background: #D6D6D6;
}

/*
.contactus-section2 .form-heading {
    color: #2a2a2a;
}
.contactus-section2 .contact-no {
    color: #2a2a2a;
}
.contactus-section2 .contact-detailsbox p {
    color: #2a2a2a;
}
.contactus-section2 .email-address {
    color: #2a2a2a;
}
*/

/*
.contactus-section2 .submit-button .btn2{
    color: #fff;
    background: #ef2b1f;
    transition: 0.3s ease;
    border: 1.5px solid #ef2b1f;
    margin-left: 20px;
}

.contactus-section2 .submit-button .btn2:hover{
    color: #ef2b1f;
    background: transparent;
    transition: 0.3s ease;
    border: 1.5px solid #ef2b1f;
}
*/



/*Our Service page start*/



.service-section1 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.service-heading2 {
    color: #454545;
    font-size: 28px;
    line-height: 32px;
    font-weight: bold;
    position: relative;
    margin-bottom: 15px;
}

.service-details2 {
    color: #777;
    font-size: 16px;
    line-height: 24px;
}

.service-section1 .form-box {
    box-shadow: none;
    margin-top: 0;
}

.features_info {
    margin-top: 30px;
}

.features_info .list-row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.features_info .icon-heading {
    margin-bottom: 0;
}



.list-content {
    margin-left: 10px;
}

.bro-iconbox {
    width: 64px;
    height: 64px;
    margin-right: 20px;
}

.bro-iconbox img {
    width: 100%;
    height: auto;
}

.download_brochure {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: rgba(42, 202, 166, 0.3);
    padding: 30px 40px;
}

.download_left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.brochure-heading {
    color: #454545;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
}

.download_text p {
    color: #777;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.right-form-box {
    background: rgba(42, 202, 166, 0.3);
    padding-top: 40px;
    padding-bottom: 50px;
    padding-left: 25px;
    padding-right: 25px;
}

.right-form-box-heading {
    color: #454545;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 72, 56, 0.7);
    margin-bottom: 40px;
}

.service-section1 .contact-form {
    width: 100%;
    height: auto;
    /*
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
*/
}

.right-form-box .contact-form .form-control {
    /*    height: 45px;*/
    /*    color: #777777 !important;*/
    background-color: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 5px !important;
}

/*
.right-form-box .contact-form .form-control::placeholder{
    color: #777777;
}
*/
/*
.submit-button .btn1 {
    color: #fff;
    background: #282828;
    border: 1.5px solid #282828;
}

.submit-button .btn1:hover {
    color: #282828;
    background: #fff;
    border: 1.5px solid #fff;
}
*/

.right-service-box {
    background: rgba(42, 202, 166, 0.3);
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 30px;
}

.service-list {
    list-style: none;
}

.service-item {
    width: 100%;
    height: 50px;
    display: block;
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.3s ease;
    border-bottom: 1px solid rgba(0, 72, 56, 0.7);
}

.service-item:hover {
    color: #2acaa6;
    transition: 0.3s ease;
}



.learn-more-btn {
    color: #fff !important;
    margin-left: 10px;
    background: #1ec3f3 !important;
    border: 1.5px solid #1ec3f3;
}

.learn-more-btn:hover {
    color: #ffff !important;
    background: #000a1d !important;
    border: 1.5px solid #000a1d;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.button-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.image-contentbox {
    border: 5px solid #ebebeb;
}

/*Our Service page end*/


.aboutcatepage_section1{
    padding-top: 80px;
    padding-bottom: 0px;
}
.about_section2 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about_section2 .content-heading1 {
    color: #454545;
    text-align: left;
}

.about_section2 .content-heading2 {
    color: #01a0e2;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about_section2 .left-contentbox-details {
    margin-bottom: 0;
    color: #777;
}

.mision_vision-section {
    padding-bottom: 50px;
}

.mision_vision-section .left-contentbox .content-heading2 {
    color: #454545;
    text-align: left;
    position: relative;
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.mision_vision-section .left-contentbox .left-contentbox-details {
    color: #777;
    text-align: left;
    font-size: 15px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
}




.our-products-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.our-products-section .left-contentbox .content-heading2 {
    color: #2a2a2a;
}

/*Category page start*/


.our-category-section {
    width: 100%;
    height: auto !important;
    background: #f4f4f4;
    padding-top: 80px;
    padding-bottom: 80px;
}


/*
.card-box {
    width: 100%;
    height: 385px;
    overflow: hidden;
    background: #fff;
}
.card-imgbox{
    width: 100%;
    height: 300px;
    overflow: hidden;
    padding: 20px;
}
*/

.card-imgbox img {
    width: 100%;
    height: auto;
}


.card-content {
    padding: 20px 0;
}

.card-content .card-heading {
    color: #39c5ff;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    line-height: 22px;
    padding: 0 0 0 0;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.card-content .card-heading a {
    color: #39c5ff;

}

.card-button .read-more {
    color: #ef7f1b;
}

.button-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sticky_div {
    position: sticky;
    top: 20px;
}
.left-contentbox ul{
    padding-left: 0;
}
.features-list,
.features-list li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.features-list ul{
    margin-top: 30px;
}
.features-list {
    margin: 2em 0;
}

.features-list li {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    /*    font-family: 'Merriweather', serif !important;*/
    margin-bottom: 12px;
    margin-left: 3em;
    color: #111;
}

.features-list li::before {
    content: '\f046';
    font-family: 'FontAwesome';
    float: left;
    margin-left: -1.4em;
    color: #ffc78b;
    font-size: 15px;
    font-weight: 400;
}

/*Category page end*/


.achiev_section1 {
    padding-top: 90px;
    padding-bottom: 90px;
}




/*left right modal*/

.modal-btn i {
    color: #fff;
    font-size: 30px;
}

.modal-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

.form-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #022d60;
}

.modal.left_modal,
.modal.right_modal {
    position: fixed;
    z-index: 11111;
    background-color: #0007;
    right: 0;
    left: inherit;

}

.modal.left_modal .modal-dialog,
.modal.right_modal .modal-dialog {
    position: fixed;
    margin: auto;
    width: 80%;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal-dialog {
    /* max-width: 100%; */
    margin: 1.75rem auto;
}

@media (min-width: 576px) {
    .left_modal .modal-dialog {
        max-width: 100%;
    }

    .right_modal .modal-dialog {
        max-width: 100%;
    }
}

.modal.left_modal .modal-content,
.modal.right_modal .modal-content {
    /*overflow-y: auto;
      overflow-x: hidden;*/
    height: 100vh !important;
}

.modal.left_modal .modal-body,
.modal.right_modal .modal-body {
    padding: 15px 15px 30px;
}

/*.modal.left_modal  {
      pointer-events: none;
      background: transparent;
  }*/

.modal-backdrop {
    display: none;
}

/*Left*/
.modal.left_modal.fade .modal-dialog {
    right: -80%;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left_modal.fade.show .modal-dialog {
    right: 0;
    box-shadow: 0px 0px 19px rgba(0, 0, 0, .5);
}

/*Right*/
.modal.right_modal.fade .modal-dialog {
    left: -50%;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}



.modal.right_modal.fade.show .modal-dialog {
    left: 0;
    box-shadow: 0px 0px 19px rgba(0, 0, 0, .5);
}

/* ----- MODAL STYLE ----- */
.modal-content {
    border-radius: 0;
    border: none;
}



.modal-header.left_modal,
.modal-header.right_modal {

    padding: 10px 15px;
    border-bottom-color: #EEEEEE;
    background-color: #FAFAFA;
}

.modal_outer .modal-body {
    /*height:90%;*/
    overflow-y: auto;
    overflow-x: hidden;
    height: 91vh;
}

.modal-footer {
    margin-top: 30px;
}

.modal-footer .submit-button .btn1 {
    text-align: center;
}



.project_page-sec1{
    background: #fff;
}

.project_page-sec1 .content-heading2 {
    color: #111;
}
.project_page-sec1 .big-font {
    color: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.12);
}
.project_page-sec1 .project_contentbox {
    padding: 20px 10px 0;
    text-align: center;
}
.project_page-sec1 .project_heading {
    color: #111;
}

.contact_infobox-wrapper2 .contact_infobox{
    align-items: center;
}

.contact_infobox-wrapper2 .contact_info-contact{
    margin-bottom: 0;
}


.tab_infocon{
    display: block;
}
.according-container{
    display: none;
}
.tab_infocon .nav{
    width: 280px;
}
.tab_infocon .nav-pills .nav-link{
    border-radius: 0;
    text-align: left;
    color: #4175fc;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    padding: 1rem 1.4rem;
}

.tab_infocon .nav-pills .nav-link.active, 
.tab_infocon .nav-pills .show>.nav-link {
    color: #101218;
    background-color: #f6f7f8;
    border: 1px solid #54595f;
    border-right: none;
}
.tab-content{
    width: calc(100% - 280px);
}
.tab_infocon .tab-content .tab-pane {
    color: #101218;
    background-color: #f6f7f8;
    border: 1px solid #54595f;
    padding: 20px;
    min-height: 300px;
}
.tab_infocon .tab-content .tab-pane p{
    font-size: 16px;
    line-height: 26px;
}
.tab_infocon .tab-content .tab-pane p a{
    color: #494b51;
    transition: 0.3s ease-in-out;
}
.tab_infocon .tab-content .tab-pane p a:hover{
    color: #4175fc;
}
.icic_logobox{
    max-width: 200px;
    width: 100%;
    height: auto;
}
.icic_logobox img{
    width: 100%;
    height: auto;
}


.float_form{
    padding-left: 50px;
    padding-right: 50px;
}
.page_title{
    padding-left: 50px;
}




.lcformatepage_section1{
    padding-top: 50px;
    padding-bottom: 50px;
}
.lcformatepage_section1 .content-heading3{
    color: #101218;
}
.lcformate-table1{
    width: 100%;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
    width: 100%;
}
td, th {
/*    table-layout: fixed;*/
    padding: 8px;
    border-width: 0 1px 1px 0;
}
table, td, th {
/*    table-layout: fixed;*/
    border: 1px solid #dddddd;
}

.lcformatepage_section1 table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
    width: 100%;
}
.lcformatepage_section1 td, th {
/*    width: 100%;*/
/*    table-layout: fixed;*/
    padding: 8px;
    border-width: 0 1px 1px 0;
}
.lcformatepage_section1 table, td, th {
/*    width: 100%;*/
/*    table-layout: fixed;*/
    border: 1px solid #dddddd;
}
.info-table3{
    background: #084af3;
}
.lcformatepage_section1 .info-table3 td,
.lcformatepage_section1 .info-table3 th {
    color: #fff
}
.lc-format_section2{
    background: #7A7A7A7D;
}

.card-wraper{
    width: 100%;
    height: 100%;
    padding: 20px 20px 20px 20px;
    background-color: #084af3;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E9E9E9;
    border-radius: 10px 10px 10px 10px;
}
.card-imagebox{
    width: 100%;
    height: auto;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    border-radius: 10px 10px 10px 10px;
}
.card-imagebox img{
    width: 100%;
    height: auto;
    transition: 0.3s ease-in-out;
}
.card-imagebox:hover img{
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}
.card-wraper-box-content{
    padding-top: 30px;
}
.box-title{
    color: #fff;
    font-weight: 700;
}
.box-title a{
    color: #fff;
    font-weight: 700;
}
.box-title a:hover{
    color: #fff;
}
.card-wraper-box-content .description{
    color: #fff;
    margin-top: 20px;
}

.bg_image-wraper{
    width: 100%;
    min-height: 550px;
    padding: 50px 0 150px;
    position: relative;
/*    background-color: #FFFFFF7A;*/
    background-image: url(../images/about-page-bg.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
/*
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
*/
}
.bg_image-wraper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 0;
}
.bg_image-wraper .left-contentbox-details{
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.banner-form-container2{
    background: #454545;
    padding: 10px 10px 10px 5px;
    border-radius: 10px;
}
.heading-title{
    color: #4175fc;
    font-weight: 700;
}

.heading_box6{
    padding: 30px 30px 30px 30px;
    background: #084af3;
    text-align: center;
}
.heading_box6 p{
    color: #fff;
    margin-bottom: 0;
}

.fct .elementor-icon-list-items{
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.fct .elementor-icon-list-text{
    color: #494b51;
}
.fct .elementor-icon-list-item span i {
    color: #084af3;
}


.form-group label{
    color: #494b51;
    font-weight: 700;
    margin-bottom: 5px;
}
.form-group label span{
    color: #ff0000;
}
.form-check-label{
    font-weight: 400 !important;
}

.clientspage_section1{
    padding-top: 80px;
    padding-bottom: 80px;
}
.clientspage_section2{
    width: 100%;
    height: auto;
    position: relative;
    background-image: url(../images/clients-page-bg2.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 80px 0;
}
.clientspage_section2 .client-imagebox{
    border: 1px solid #C3BEBE;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}
.clientspage_section2 .client-imagebox:hover{
    margin-top: -10px;
    transition: 0.3s ease-in-out;
}
.clientspage_section2 .content-heading3{
    color: #fff;
}


.careerpage_section1{
    padding: 50px 0;
}
.careerpage_section1 .team-card{
    height: 100%;
}
.careerpage_section1 .team_member-name {
    color: #fff;
    background-color: #7a7a7a;
}
.careerpage_section1 .elementor-icon-list-icon{
    width: 20px;
}
.careerpage_section1 .elementor-icon-list-icon i{
    color: #084af3;
    font-size: 20px;
}

.careerpage_section1 .elementor-icon-list-text{
    color: #494b51;
}
.team_member-name2{
    color: #54595f !important;
    font-weight: 800 !important;
    margin-top: 30px;
    background-color: transparent !important;
    padding: 0 0 !important;
}

/* Gallery page start */

.gallerypage_section1{
    padding-top: 80px;
    padding-bottom: 80px;
    background: #4175fc;
}

.gallerypage_section1 .content-heading3{
    color: #fff;
}
.gallerypage_section2{
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 5px;
    padding-right: 5px;
}


/* Gallery page end */




/* Contact page start */

.contactpage_section1{
    padding-top: 50px;
    padding-bottom: 80px;
}
.contactpage_section1 .content-heading3{
    color: #7a7a7a;
}
.team-card{
    width: 100%;
    height: auto;
    padding: 20px 20px;
    border: 3px solid #454545;
    border-radius: 5px;
}

.team_member-name{
    color: #101218;
    font-size: 19px;
    font-weight: 700;
    padding: 10px 10px 10px 10px;
    background-color: #6ec1e4;
    border-radius: 10px 10px 10px 10px;
    margin-bottom: 25px;
}
.team_member-contact{
    color: #494b51;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 40px;
}
.team_imagebox{
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.team_imagebox img{
    width: 100%;
    height: auto;
}


.contactpage_section2{
    padding: 60px 0;
    background: #cddbfd;
}
.contactpage_section2 .content-heading3{
    color: #54595f;
    margin-bottom: 0;
}

.contactpage_section3{
    padding-top: 80px;
    padding-bottom: 80px;
}
.contact_infobox-wrapper{
    box-shadow: 0px 0px 20px 0px rgba(205.5, 205.5, 205.5, 0.5);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 30px 20px 30px 20px;
    border-radius: 5px;
    min-height: 215px;
}
.contact_infobox-wrapper-head{
    color: #101218;
    font-size: 23px;
    line-height: 30px;
    font-weight: 700;
    position: relative;
    padding-left: 150px;
    font-family: 'Poppins',sans-serif !important;
}
.contact_infobox-wrapper-head::before{
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 140px;
    border-top: 1px solid #4175fc;
}
.contact_info-iconbox i{
    color: #4175fc;
    font-size: 50px;
}
.contact_infobox{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    width: 100%;
}
.contact_info-headingbox{
    width: calc(100% - 60px);
    padding-left: 20px;
}

.contact_info-heading {
    color: #101218;
    font-size: 17px;
    line-height: 23px;
    font-weight: 700;
    font-family: 'Poppins',sans-serif !important;
    margin-bottom: 5px;
}


/* Contact page end */
