@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
:root {
  --default-font: font-family: "IBM Plex Sans", serif;
  --heading-font: "IBM Plex Sans", serif;
  --nav-font: "IBM Plex Sans", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e02b20; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e02b20; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000;  /* The default color of the main navmenu links */
  --nav-hover-color: #e02b20; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e02b20; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #091e5b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0e2d89;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color); font-size:17px;

}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color:#fff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:#000;
  font-family: var(--heading-font);
}
.fnt{font-size: 45px; font-weight:700; line-height: 1.3;}
.fnt1{font-size: 18px; font-weight: 600;}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color:#e02b20;
  height: 40px;
  padding: 0;
  font-size: 16px;
  transition: all 0.5s;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .topbar .contact-info i {
  font-style: normal;
  color:#fff; font-size:18px;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color:#fff; font-size:16px; 
}

@media (max-width: 575px) {
.fnt{font-size: 25px; font-weight:700; line-height: 1.1;}
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0; background:#f7f7f7;
}

.header .logo {
  line-height: 1; color:#000;  font-size: 26px; font-weight: bold; text-transform:uppercase;
}

.header .logo img {
  max-height:90px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left:0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    color: #000;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.whatapp_btn {
  background: #01e675;
  width: 50px;
  height: 50px;
  color: #fff;
  position: fixed;
  left: 8px;
  bottom: 50px;
  cursor: pointer;
  z-index: 999;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16), 0px 3px 10px rgba(0, 0, 0, 0.16);
}
.whatapp_btn i {
  font-size: 30px;
}
#whatsapp .modal-dialog {
  margin-top: 17%;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color:#2d2d2d;
  font-size: 16px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;   font-size: 16px;     
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 16px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .header .logo {
  line-height: 1; color:#000;  font-size: 16px; font-weight: bold; text-transform:uppercase;
}

}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.section {
  color: var(--default-color);
  background-color: var(--background-color);

  scroll-margin-top: 118px;
  overflow: clip; padding-top:60px; padding-bottom:20px;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/


.section-title h2 {
  font-size: 32px;
  font-weight: 700;


  position: relative;
}
.bolder{font-weight: 900;}
.bold{font-weight:600;}
.section-title h2:after {
 
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;

  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

/* SLIDER */

.hero-slider{
  width:100%;
  height:100%;
  position:relative;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  opacity:0;
  transition:1.2s ease-in-out;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.slide.active{
  opacity:1;
  z-index:1;
}

/* OVERLAY */

.slide::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

/* CONTENT */

.slide-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  z-index:2;
  max-width:650px;
  background:rgba(0,0,0,0.35);
  padding:45px;


}

.slide-content h4{
  color:#fff;
  font-size:18px;
  font-weight:500;
  margin-bottom:15px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.slide-content h1{
  color:#fff;
  font-size:38px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:20px;

}

.slide-content p{
  color:#f1f1f1;
  font-size:17px;
  line-height:1.8;
  margin-bottom:30px;
}

.hero-btn{
  display:inline-block;
  padding:14px 35px;
  background:#e02b20;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:4px;
  transition:.3s;
}

.hero-btn:hover{
  background:#fff;
  color:#e02b20;
}

/* DOTS */

.slider-dots{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  z-index:5;
  display:flex;
  gap:12px;
}

.dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#fff;
  opacity:.5;
  cursor:pointer;
  transition:.3s;
}

.dot.active{
  opacity:1;
  background:#e02b20;
}

/* RESPONSIVE */

@media(max-width:992px){

  .slide-content{
    max-width:90%;
    padding:30px;
  }

  .slide-content h1{
    font-size:32px;
  }

}

@media(max-width:768px){

  .hero-section{
    height:85vh;
  }

  .slide-content{
    left:5%;
    right:5%;
    max-width:90%;
    padding:25px;
  }

  .slide-content h4{
    font-size:14px;
  }

  .slide-content h1{
    font-size:22px;
  }

  .slide-content p{
    font-size:14px;
    line-height:1.7;
  }

  .hero-btn{
    padding:12px 24px;
    font-size:14px;
  }

}










/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .content h3 {
  font-size:2rem;
  font-weight: 700; color:#e02b20;
}

.about .content .fst-italic {
  color: #000;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}





/* ABOUT SECTION */

.about{
  
    background:#fff;
    overflow:hidden;
}

.about .container{
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

/* IMAGE BOX */

.about-image-box{
    position:relative;
    min-height:600px;
}

/* TOP IMAGE */

.about-top-img{
    width:100%;
    position:absolute;
    top:0;
    left:0;
    border-radius:8px;
    object-fit:cover;

}

/* BOTTOM IMAGE */

.about-bottom-img{
    width:78%;
    position:absolute;
    bottom:0;
    left:80px;
    border-radius:8px;
    object-fit:cover;
    box-shadow:0 5px 25px rgba(0,0,0,0.15);
}

/* CONTENT */

.about-content{
    padding-left:30px; position: relative; top:-50px;
}

.about-tag{
    color:#e02b20;
    font-size:22px;
    font-weight:700;
    display:block;
    margin-bottom:10px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:40px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
    line-height:1.2;
}

.about-content h5{
    font-size:20px;
    color:#111;
    margin-bottom:25px;
    font-weight:500;
}

.about-content p{
    font-size:16px;
    color:#111;
    line-height:1.5;
    margin-bottom:18px;
}

/* BUTTON */

.about-btn{
    display:inline-block;
    padding:14px 34px;
    background:#e02b20;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
    margin-top:10px;
    transition:0.3s;
}

.about-btn:hover{
    background:#111;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about{
        padding:70px 0;
    }

    .about-image-box{
        min-height:520px;
        margin-bottom:50px;
    }

    .about-content{
        padding-left:0;
    }

    .about-content h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .about-image-box{
        min-height:420px;
    }

    .about-top-img{
        width:85%;
    }

    .about-bottom-img{
        width:85%;
        left:40px;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-content h5{
        font-size:17px;
    }

    .about-content p{
        font-size:15px;
        line-height:1.8;
    }

    .about-btn{
        padding:12px 28px;
        font-size:14px;
    }

}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 18px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients{padding:60px;}
.clients .swiper-slide img {

  transition: 0.3s; border:1px solid #ccc; padding:10px;

}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 16px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative; margin-bottom:25px;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: relative;

  font-size: 24px;
  top: calc(50% - 16px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 16px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color:#fff;
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 16px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.readmore{background: #e02b20; color:#fff; padding:5px 40px; border-radius:5px;}
.readmore:hover{ color:#f2ff1d; }








.project-scroll-section {
  background: #f8f9fa;
}

.project-scroll-section img {
  max-height: 450px;
  object-fit: cover;
}
.image-marquee {
  overflow: hidden;
  background: #fff;
  padding: 30px 0;
}

.marquee-track {
  display: flex;
  gap: 30px;
  animation: scroll 25s linear infinite;
}

.marquee-track img {
  height: 260px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




.home-paint-section {
  background: #f8f9fa;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #e02b20;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-paint-section h2 {
  font-weight: 700;
}

.paint-points {
  list-style: none;
  padding-left: 0;
}

.paint-points li {
  margin-bottom: 8px;
  font-weight: 500;
}

.paint-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.paint-image-grid img:nth-child(1) {
  grid-column: span 2;
}







/* PRODUCTS SECTION */

.products-section{
    padding:100px 0;
    background:#f8f8f8;
}

/* TITLE */

.section-title{
    margin-bottom:30px;
}

.section-title span{
    color:#e02b20;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    display:block;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#111;
    line-height:1.8;
}

/* CARD */

.product-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.product-img{
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s;
}

.product-card:hover .product-img img{
    transform:scale(1.1);
}

/* CONTENT */

.product-content{
    padding:15px; text-align: center;
}

.product-content h4{
    margin:0;
    font-size:22px;
    line-height:1.5;
}

.product-content h4 a{
    text-decoration:none;
    color:#111;
    transition:0.3s;
}

.product-content h4 a:hover{
    color:#e02b20;
}

/* RESPONSIVE */

@media(max-width:768px){

    .products-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .product-content h4{
        font-size:18px;
    }

}








/* WHY CHOOSE SECTION */

.why-choose-section{
    padding:100px 0;
    background:#f5f5f5;
    position:relative;
    overflow:hidden;
}

/* BACKGROUND SHAPES */

.why-choose-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(227,30,36,0.06);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.why-choose-section::after{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(0,0,0,0.03);
    border-radius:50%;
    bottom:-100px;
    right:-100px;
}

/* TITLE */

.choose-subtitle{
    color:#e02b20;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    position:relative;
    z-index:2;
}

.choose-title{
    font-size:40px;
    font-weight:700;
    color:#111;
    margin-top:10px;
    position:relative;
    z-index:2;
}

/* CARD */

.choose-card{
    background:#fff;
    padding:30px;
    border-radius:14px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    z-index:2;
}

/* CARD BACKGROUND EFFECT */

.choose-card::before{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    background:rgba(227,30,36,0.05);
    border-radius:50%;
    right:-50px;
    top:-50px;
}

/* HOVER */

.choose-card:hover{
    transform:translateY(-8px);
}

/* ICON */

.choose-icon-box{
    min-width:70px;
    width:70px;
    height:70px;
    background:#e02b20;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}

.choose-icon-box i{
    color:#fff;
    font-size:30px;
}

/* CONTENT */

.choose-info{
    max-width:320px;
    position:relative;
    z-index:2;
}

.choose-info h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;
    line-height:1.4;
}

.choose-info p{
    color:#111;
    line-height:1.7;
    margin:0;

}

/* RESPONSIVE */

@media(max-width:768px){

    .why-choose-section{
        padding:70px 0;
    }

    .choose-title{
        font-size:30px;
    }

    .choose-card{
        padding:24px;
    }

    .choose-info{
        max-width:100%;
    }

    .choose-info h4{
        font-size:19px;
    }

    .choose-info p{
        font-size:14px;
    }

}



.services{padding:80px;}



/* COUNTER SECTION */
/* COUNTER SECTION */
.company-counter-section{
    padding:100px 0;
    background:
    linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)),
    url('../img/epoxy-background.jpg');
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
    overflow:hidden;
}

/* BOX */

.modern-counter-box{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    height:100%;
    border:1px solid #eee;
}

/* HOVER */

.modern-counter-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* TOP */

.counter-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
}

/* ICON */

.counter-icon{
    width:75px;
    height:75px;
    border-radius:16px;
    background:#e02b20;
    display:flex;
    align-items:center;
    justify-content:center;
}

.counter-icon i{
    color:#fff;
    font-size:34px;
}

/* NUMBER */

.modern-counter-box h2{
    font-size:52px;
    font-weight:700;
    color:#111;
    margin:0;
}

/* TITLE */

.modern-counter-box h4{
    font-size:22px;
    color:#333;
    margin-bottom:20px;
    line-height:1.5;
}

/* LINE */

.counter-line{
    width:60px;
    height:4px;
    background:#e02b20;
    border-radius:20px;
    transition:0.4s;
}

.modern-counter-box:hover .counter-line{
    width:100%;
}

/* RESPONSIVE */

@media(max-width:768px){

    .company-counter-section{
        padding:70px 0;
    }

    .modern-counter-box{
        padding:25px;
    }

    .counter-icon{
        width:65px;
        height:65px;
    }

    .counter-icon i{
        font-size:28px;
    }

    .modern-counter-box h2{
        font-size:38px;
    }

    .modern-counter-box h4{
        font-size:18px;
    }

}


/* THIN CTA SECTION */

.rn-thin-cta{
    padding:40px 0;
    background:#f8f8f8;
}

/* BOX */

.rn-thin-cta-box{
    background:#fff;
    border-radius:14px;
    padding:30px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
   
}

/* CONTENT */

.rn-thin-content h3{
    font-size:32px;
    color:#111;
    margin-bottom:10px;
    font-weight:700;
}

.rn-thin-content p{
    color:#111;
    margin:0;
    line-height:1.8;
}

/* BUTTON */

.rn-thin-btn a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#e02b20;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    white-space:nowrap;
}

.rn-thin-btn a:hover{
    background:#111;
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .rn-thin-cta-box{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    .rn-thin-cta{
        padding:30px 0;
    }

    .rn-thin-cta-box{
        padding:25px 20px;
    }

    .rn-thin-content h3{
        font-size:24px;
    }

    .rn-thin-content p{
        font-size:14px;
    }

    .rn-thin-btn a{
        padding:13px 24px;
        font-size:14px;
    }

}








/* FOOTER */

.rn-footer{
    background:#111;
    padding:90px 0 0;
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.rn-footer::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(227,30,36,0.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

/* TITLE */

.rn-footer-title{
    color:#fff;
    font-size:28px;
    margin-bottom:28px;
    font-weight:700;
    position:relative;
    padding-bottom:12px;
}

.rn-footer-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:3px;
    background:#fff;
}

/* ABOUT */

.rn-footer-about p{
    color:#fff;
    line-height:1.5;
    margin-bottom:10px;
}

/* CONTACT */

.rn-contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:12px;
}

.rn-contact-item i{
    color:#fff;
    font-size:20px;
    margin-top:5px;
}

.rn-contact-item span,
.rn-contact-item a{
    color:#fff;
    text-decoration:none;
    line-height:1.8;
    transition:0.3s;
}

.rn-contact-item a:hover{
    color:#e02b20;
}

/* LINKS */

.rn-footer-links ul{
    padding:0;
    margin:0;
    list-style:none;
    columns:2;
    column-gap:35px;
}

.rn-footer-links ul li{

    break-inside:avoid;
}

.rn-footer-links ul li a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
    position:relative;
    padding-left:18px;
    line-height:1.6; font-size:16px;
    display:inline-block;
}

.rn-footer-links ul li a::before{
    content:'›';
    position:absolute;
    left:0;
    color:#fff;
    font-size:18px;
}

.rn-footer-links ul li a:hover{
    color:#e02b20;
    padding-left:22px;
}

/* QUICK LINKS */

.rn-quick-links{
    columns:1 !important;
}

/* SOCIAL */

.rn-footer-social{
    display:flex;
    gap:12px;
    margin-top:30px;
}

.rn-footer-social a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#1f1f1f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:0.4s;
}

.rn-footer-social a:hover{
    background:#e02b20;
    transform:translateY(-4px);
}

/* BOTTOM */

.rn-footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:20px;
    padding:25px 0;
    text-align:center;
    position:relative;
    z-index:2;
}

.rn-footer-bottom p{
    color:#fff;
    margin:0;
    font-size:16px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .rn-footer-links ul{
        columns:1;
    }

}

@media(max-width:768px){

    .rn-footer{
        padding:70px 0 0;
    }

    .rn-footer-title{
        font-size:24px;
    }

    .rn-footer-bottom{
        margin-top:40px;
    }

}



/* SECTION */

.rn-company-section{
    padding:100px 0;
    background:#f8f8f8;
    overflow:hidden;
}

/* LEFT CONTENT */

.rn-company-subtitle{
    color:#e31e24;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    display:block;
    margin-bottom:12px;
}

.rn-company-content h2{
    font-size:44px;
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin-bottom:22px;
}

.rn-company-content p{
    color:#111;
    line-height:1.9;
    margin-bottom:20px;
}

/* POINTS */

.rn-company-points{
    margin-top:35px;
}

.rn-point-box{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.rn-point-box i{
    color:#e31e24;
    font-size:20px;
}

.rn-point-box span{
    font-weight:500;
    color:#222;
}

/* RIGHT SIDE */

.rn-company-right{
    position:relative;
}

/* CARD */

.rn-achievement-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    border-radius:18px;
    padding:30px;
    margin-bottom:25px;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    border-left:5px solid transparent;
}

.rn-achievement-card:hover{
    transform:translateY(-8px);
    border-color:#e31e24;
}

/* ACTIVE CARD */

.active-card{
    background:#e31e24;
}

.active-card h3,
.active-card p,
.active-card i{
    color:#fff !important;
}

/* ICON */

.rn-card-icon{
    min-width:75px;
    width:75px;
    height:75px;
    border-radius:16px;
    background:#f3f3f3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.rn-card-icon i{
    font-size:34px;
    color:#e31e24 !important;
}

/* CONTENT */

.rn-card-content h3{
    font-size:24px;
    margin-bottom:12px;
    color:#111;
    font-weight:700;
}

.rn-card-content p{
    color:#111;
    line-height:1.8;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .rn-company-content h2{
        font-size:36px;
    }

}

@media(max-width:768px){

    .rn-company-section{
        padding:70px 0;
    }

    .rn-company-content h2{
        font-size:28px;
    }

    .rn-achievement-card{
        padding:24px;
        gap:16px;
    }

    .rn-card-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

    .rn-card-icon i{
        font-size:28px;
    }

    .rn-card-content h3{
        font-size:20px;
    }

}






/* SECTION */

.rn-epoxy-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

/* IMAGE BOX */

.rn-epoxy-image-box{
    position:relative;
    padding:10px 40px 120px 0;
}

/* BACKGROUND SHAPE */

.rn-epoxy-image-box::before{
    content:'';
    position:absolute;
    top:-100px;
    left:-30px;
    width:220px;
    height:220px;
    background:#e31e24;
    opacity:0.08;
    border-radius:30px;
    z-index:0;
}

/* MAIN IMAGE */

.rn-main-epoxy-img{
    width:100%;
    border-radius:24px;
    position:relative;
    top:-70px;   /* image upar */
    z-index:2;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
    transition:0.4s;
}

.rn-main-epoxy-img:hover{
    transform:translateY(-8px);
}

/* SMALL IMAGE */

.rn-small-img-box{
    position:absolute;
    bottom:-100px;   /* niche */
    right:0;
    width:72%;
    border-radius:24px;
    overflow:hidden;
    border:10px solid #fff;
    z-index:3;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    transition:0.4s;
}

.rn-small-img-box img{
    width:100%;
    display:block;
    object-fit:cover;
}

.rn-small-img-box:hover{
    transform:translateY(-8px);
}

/* DOTS */

.rn-epoxy-image-box::after{
    content:'';
    position:absolute;
    right:-16px;
    top:150px;
    width:110px;
    height:110px;
    background-image:radial-gradient(#e31e24 2px, transparent 2px);
    background-size:18px 18px;
    opacity:0.2;
    z-index:1;
}

/* RESPONSIVE */

@media(max-width:768px){

    .rn-epoxy-image-box{
        padding:0 15px 80px 0;
    }

    .rn-main-epoxy-img{
        top:-10px;
    }

    .rn-small-img-box{
        width:82%;
        bottom:-10px;
        border-width:6px;
    }

}
/* CONTENT */

.rn-epoxy-subtitle{
    color:#e31e24;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    display:block;
    margin-bottom:12px;
}

.rn-epoxy-content h2{
    font-size:34px;
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin-bottom:22px;
}

.rn-epoxy-content p{
    color:#111;
    line-height:1.7;

}

/* FEATURES */

.rn-epoxy-features{
    margin-top:30px;
}

.rn-feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:5px;
}

.rn-feature-item i{
    color:#e31e24;
    font-size:20px;
}

.rn-feature-item span{
    color:#222;
    font-weight:500;
}

/* BUTTON */

.rn-epoxy-btn{
    display:inline-block;
    margin-top:18px;
    background:#e31e24;
    color:#fff;
    text-decoration:none;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.rn-epoxy-btn:hover{
    background:#111;
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .rn-epoxy-content h2{
        font-size:36px;
    }

    .rn-epoxy-image-box{
        padding-right:40px;
    }

}

@media(max-width:768px){

    .rn-epoxy-section{
        padding:70px 0;
    }

    .rn-epoxy-content h2{
        font-size:28px;
    }

    .rn-small-img-box{
        width:160px;
        bottom:20px;
    }

    .rn-epoxy-image-box{
        padding-right:20px;
    }

}






/* SECTION */

/* SECTION */

.rn-epoxy-uses-section{
    padding:100px 0;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
    z-index:1;
}

/* TOP RIGHT SHAPE */

.rn-epoxy-uses-section::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(227,30,36,0.06);
    border-radius:50%;
    top:-180px;
    right:-120px;
    z-index:-1;
}

/* BOTTOM LEFT SHAPE */

.rn-epoxy-uses-section::after{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(0,0,0,0.03);
    border-radius:50%;
    bottom:-120px;
    left:-80px;
    z-index:-1;
}

/* TITLE */

.rn-section-subtitle{
    color:#e31e24;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    display:block;
    margin-bottom:10px;
}

.rn-uses-content h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}

.rn-uses-content p{
    color:#111;
    line-height:1.9;
}

/* USE ITEM */

.rn-use-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:8px;
}

.rn-use-item i{
    color:#e31e24;
    font-size:18px;
}

.rn-use-item span{
    color:#222;
    font-weight:500;
}

/* ADVANTAGES */

.rn-advantages-box{
    background:#fff;
    padding:35px;
    border-radius:16px;
    margin-top:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.rn-advantages-box h4{
    font-size:28px;
    margin-bottom:30px;
    font-weight:700;
}

.rn-advantage-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:8px;
}

.rn-advantage-item i{
    color:#e31e24;
    font-size:18px;
    margin-top:3px;
}

.rn-advantage-item span{
    line-height:1.7;
    color:#111;
}

/* FORM */

.rn-enquiry-form{
    background:#fff;
    padding:45px 35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    position:sticky;
    top:100px;
}

.rn-enquiry-form h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:12px;
}

.rn-enquiry-form p{
    color:#111;
    line-height:1.8;
    margin-bottom:30px;
}

/* INPUT */

.rn-enquiry-form .form-control{
    height:56px;
    border-radius:10px;
    border:1px solid #ddd;
    box-shadow:none;
    padding:12px 18px;
}

.rn-enquiry-form textarea.form-control{
    height:auto;
}

.rn-enquiry-form .form-control:focus{
    border-color:#e31e24;
}

/* BUTTON */

.rn-submit-btn{
    width:100%;
    background:#e31e24;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:10px;
    font-weight:600;
    transition:0.4s;
}

.rn-submit-btn:hover{
    background:#111;
}

/* RESPONSIVE */

@media(max-width:768px){

    .rn-epoxy-uses-section{
        padding:70px 0;
    }

    .rn-uses-content h2{
        font-size:30px;
    }

    .rn-advantages-box{
        padding:25px;
    }

    .rn-enquiry-form{
        padding:30px 22px;
    }

    .rn-enquiry-form h3{
        font-size:26px;
    }

}






/* EXTRA BENEFITS */

.rn-benefit-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
    background:#fff;
    padding:12px 22px;
    border-radius:16px;
    margin-bottom:8px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.4s;
}

.rn-benefit-item:hover{
    transform:translateY(-5px);
}

.rn-benefit-item span{
    min-width:32px;
    height:32px;
    background:#e31e24;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:14px;
}

.rn-benefit-item p{
    margin:0;
    color:#111;
    line-height:1.7;
}



/* FLOATING LOGO */

.dr-epoxy-floating-logo{
    position:fixed;
    right:25px;
    bottom:25px;
 
    background:#fff;

    z-index:9999;
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
    animation:drFloat 3s ease-in-out infinite;
    cursor:pointer;
    transition:0.4s;
}

.dr-epoxy-floating-logo:hover{
    transform:scale(1.08);
}

.dr-epoxy-floating-logo img{
    width:100%;
    height:100%;

}

/* FLOATING ANIMATION */

@keyframes drFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}
.dr-logo-close{
    position:absolute;
    top:-5px;
    right:-5px;
    width:28px;
    height:28px;
    border:none;
    border-radius:50%;
    background:#e31e24;
    color:#fff;
    font-size:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
/* MOBILE */

@media(max-width:768px){

    .dr-epoxy-floating-logo{
        width:80px;
        height:80px;
        right:0px;
        bottom:15px;
    }
.services {
     padding: 0px; 
}
}







/* TESTIMONIAL SECTION */

/* TESTIMONIAL SECTION */

.rn-testimonial-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(135deg,#f3f8ff 0%,#eef5ff 50%,#ffffff 100%);
    overflow:hidden;
    z-index:1;
}

/* TOP GRADIENT CIRCLE */

.rn-testimonial-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(13,110,253,0.08);
    border-radius:50%;
    top:-180px;
    left:-120px;
    filter:blur(20px);
    z-index:-1;
}

/* BOTTOM RED GLOW */

.rn-testimonial-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(227,30,36,0.06);
    border-radius:50%;
    bottom:-150px;
    right:-100px;
    filter:blur(25px);
    z-index:-1;
}

/* OPTIONAL LIGHT PATTERN */

.rn-testimonial-section .container{
    position:relative;
    z-index:2;
}

/* TAG */

.rn-testimonial-tag{
    display:inline-block;
    background:#e31e24;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

/* CARD */

.rn-testimonial-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.rn-testimonial-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.rn-testimonial-img img{
    width:100%;
  
}

/* CONTENT */

.rn-testimonial-content{
    padding:30px;
}

.rn-company-name{
    color:#e31e24;
    font-weight:700;
    margin-bottom:10px;
    font-size:15px;
}

.rn-testimonial-content h3{
    font-size:22px;
    margin-bottom:15px;
    font-weight:600;
}

.rn-testimonial-content p{
    color:#111;
    line-height:1.8;
    margin-bottom:25px;
}

/* BUTTON */

.rn-testimonial-btn{
    display:inline-block;
    padding:12px 28px;
    background:#0366a9;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.rn-testimonial-btn:hover{
    background:#e31e24;
    color:#fff;
}




/* MMRC GALLERY SECTION */

.rn-mmrc-gallery-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(135deg,#f8fbff 0%,#eef5ff 100%);
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.rn-mmrc-gallery-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,0.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(20px);
}

/* TAG */

.rn-gallery-tag{
    display:inline-block;
    background:#e31e24;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

/* HEADING */

.rn-mmrc-gallery-section h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:18px;
}

.rn-mmrc-gallery-section p{
    color:#666;
    line-height:1.8;
}

/* CARD */

.rn-gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.rn-gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

/* OVERLAY */

.rn-gallery-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    background:linear-gradient(to top,rgba(0,0,0,0.85),transparent);
}

.rn-gallery-overlay h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:0;
}

/* HOVER */

.rn-gallery-card:hover img{
    transform:scale(1.08);
}

/* MOBILE */

@media(max-width:768px){

    .rn-mmrc-gallery-section h2{
        font-size:34px;
    }

    .rn-gallery-card img{
        height:260px;
    }

}








/* VIGYAN GALLERY SECTION */

.rn-vigyan-gallery-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(135deg,#fff 0%,#fff 100%);
    overflow:hidden;
}


/* TAG */

.rn-gallery-tag{
    display:inline-block;
    background:#e31e24;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

/* HEADING */

.rn-vigyan-gallery-section h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:18px;
}

.rn-vigyan-gallery-section p{
    color:#111;
    line-height:1.8;
}

/* CARD */

.rn-gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.rn-gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

/* OVERLAY */

.rn-gallery-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    background:linear-gradient(to top,rgba(0,0,0,0.85),transparent);
}

.rn-gallery-overlay h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:0;
}

/* HOVER */

.rn-gallery-card:hover img{
    transform:scale(1.08);
}

/* MOBILE */

@media(max-width:768px){

    .rn-vigyan-gallery-section h2{
        font-size:34px;
    }

    .rn-gallery-card img{
        height:260px;
    }

}






/* VIDEO GALLERY SECTION */

.rn-video-gallery-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(135deg,#f8fbff 0%,#eef5ff 100%);
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.rn-video-gallery-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,0.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(20px);
}

/* TAG */

.rn-video-tag{
    display:inline-block;
    background:#e31e24;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

/* HEADING */

.rn-video-gallery-section h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:18px;
}

.rn-video-gallery-section p{
    color:#111;
    line-height:1.8;
}

/* VIDEO CARD */

.rn-video-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s;
}

.rn-video-card:hover{
    transform:translateY(-8px);
}

/* VIDEO */

.rn-video-card video{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    background:#000;
}

/* CONTENT */

.rn-video-content{
    padding:20px;
    text-align:center;
}

.rn-video-content h4{
    font-size:22px;
    font-weight:700;
    margin:0;
}

/* MOBILE */

@media(max-width:768px){

    .rn-video-gallery-section h2{
        font-size:34px;
    }

    .rn-video-card video{
        height:240px;
    }

}





/* NIT GALLERY SECTION */

.rn-nit-gallery-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(135deg,#f8fbff 0%,#eef5ff 100%);
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.rn-nit-gallery-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,0.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(20px);
}

/* TAG */

.rn-gallery-tag{
    display:inline-block;
    background:#e31e24;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

/* HEADING */

.rn-nit-gallery-section h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:18px;
}

.rn-nit-gallery-section p{
    color:#666;
    line-height:1.8;
}

/* CARD */

.rn-gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.rn-gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

/* OVERLAY */

.rn-gallery-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    background:linear-gradient(to top,rgba(0,0,0,0.85),transparent);
}

.rn-gallery-overlay h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:0;
}

/* HOVER */

.rn-gallery-card:hover img{
    transform:scale(1.08);
}

/* MOBILE */

@media(max-width:768px){

    .rn-nit-gallery-section h2{
        font-size:34px;
    }

    .rn-gallery-card img{
        height:260px;
    }

}







/* MICROCEMENT SECTION */

.rn-microcement-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(135deg,#f8fbff 0%,#eef5ff 100%);
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.rn-microcement-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,0.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(20px);
}

/* IMAGE BOX */

.rn-microcement-image-box{
    position:relative;
    padding-bottom:120px;
}

/* MAIN IMAGE */

.rn-main-microcement-img{
    width:100%;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.10);
}

/* SMALL IMAGE */

.rn-small-microcement-img{
    position:absolute;
    left:60px;
    bottom:0;
    width:260px;
    border-radius:22px;
    overflow:hidden;
    border:8px solid #fff;
    box-shadow:0 12px 35px rgba(0,0,0,0.14);
}

.rn-small-microcement-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENT */

.rn-microcement-subtitle{
    display:inline-block;
    background:#e31e24;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.rn-microcement-content h2{
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:22px;
}

.rn-microcement-content p{
    color:#111;
    line-height:1.9;
    margin-bottom:18px;
}

/* FEATURES */

.rn-microcement-features{
    margin-top:30px;
}

.rn-feature-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.rn-feature-item i{
    color:#0366a9;
    font-size:20px;
}

.rn-feature-item span{
    font-weight:600;
    color:#222;
}

/* BUTTON */

.rn-microcement-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 34px;
    background:#0366a9;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.rn-microcement-btn:hover{
    background:#e31e24;
    color:#fff;
}

/* MOBILE */

@media(max-width:768px){

    .rn-microcement-content h2{
        font-size:34px;
    }

    .rn-small-microcement-img{
        width:180px;
        left:20px;
    }

}



/* VIDEO SECTION */

.rn-project-video-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f8fbff 0%,#eef5ff 100%);
}

/* TAG */

.rn-video-tag{
    display:inline-block;
    background:#e31e24;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

/* HEADING */

.rn-project-video-section h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:15px;
}

.rn-project-video-section p{
    color:#666;
    line-height:1.8;
}

/* CARD */

.rn-video-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:.4s;
}

.rn-video-card:hover{
    transform:translateY(-8px);
}

/* VIDEO */

.rn-video-card video{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    background:#000;
}

/* CONTENT */

.rn-video-content{
    padding:20px;
    text-align:center;
}

.rn-video-content h4{
    margin:0;
    font-size:22px;
    font-weight:700;
}

/* MOBILE */

@media(max-width:768px){

    .rn-project-video-section{
        padding:70px 0;
    }

    .rn-project-video-section h2{
        font-size:32px;
    }

    .rn-video-card video{
        height:280px;
    }

}




/* PROJECT GALLERY */

.rn-project-gallery-section{
    padding:100px 0;
    background:#fff;
}

/* TAG */

.rn-gallery-tag{
    display:inline-block;
    background:#e31e24;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

/* HEADING */

.rn-project-gallery-section h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:15px;
}

.rn-project-gallery-section p{
    color:#666;
    line-height:1.8;
}

/* CARD */

.rn-gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.rn-gallery-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.5s;
}

/* OVERLAY */

.rn-gallery-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    transparent);
}

.rn-gallery-overlay h4{
    color:#fff;
    margin:0;
    font-size:22px;
    font-weight:700;
}

/* HOVER */

.rn-gallery-card:hover img{
    transform:scale(1.08);
}

/* MOBILE */

@media(max-width:768px){

    .rn-project-gallery-section{
        padding:70px 0;
    }

    .rn-project-gallery-section h2{
        font-size:32px;
    }

    .rn-gallery-card img{
        height:250px;
    }

}