@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,600');

:root {
  --primary-color: #f5821f;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
	margin: 0;
	background: #222;
	font-family: 'Work Sans', sans-serif;
	font-weight: 400;
      overflow-x: hidden;
}



.content {
  height: 200vh;
  background-image: url(//unsplash.it/1000/1000);
  background-color: #333;
  background-blend-mode: multiply;
  background-size: cover;
  display: grid;
  place-items: center;
}

/* navigation styles start here */

header {
  background: var(--primary-color) !important;
  text-align: center;
  position: fixed;
  z-index: 999;
  width: 100%;
}

/* changed this from the tutorial video to
   allow it to gain focus, making it tabbable */








/* Dropdown Styles */



/* Sub-dropdown inside dropdown */


@media screen and (min-width: 800px) {

  header {
    display: grid;

  }



.email {
    grid-column: 3 / 4;

    align-self: center; /* Vertically center in grid row */
}
    .email a {
        text-decoration: none;
        font-weight: 500;
        font-size: 1.2rem;
        color: #fff;
    }

.overlay-text {
    padding: 20px;
    border-radius: 10px;

    /* Add these for positioning */
    position: absolute;   /* Take it out of flow */
    top: 25%;            /* Distance from the top */
    left: 50%;            /* Center horizontally */
    transform: translateX(-50%); /* Perfect horizontal centering */
}

/* about section */
.about-section {
         max-width: 1200px;
        margin: 40px auto;

}
.animated-text {
    font-size: 48px;
    font-weight: bold;
    color: #f5821f; /* Initial color */
    animation: colorChange 2s steps(1) infinite;
}

@keyframes colorChange {
    0% {
        color: #f5821f; /* Orange */
    }
    50% {
        color: #003B55; /* Dark Blue/Black */
    }
    100% {
        color: #f5821f; /* Back to Orange */
    }
}

}

.about-columns {
    display: flex; /* Make it a flex container */
    gap: 40px; /* Space between the columns */
}






.subtitle {
       font-family: 'Open Sans';
    font-weight: 300;
    font-size: 22px;
    color: rgba(135, 135, 135, 1);
    background-image: none;
    letter-spacing: 2px;
}

.about-content h1 {
    font-family: 'Cardo';
    font-weight: 700;
    text-align: left;
    line-height: 48px;
    font-size: 32px;
}

.read-more-btn {
    display: inline-block;
    background-color:  #f5821f; /* Gradient background */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background 0.3s ease; /* Smooth transition on hover */
}

.read-more-btn:hover {
    background: linear-gradient(45deg, #003B55, #f5821f); /* Reverse the gradient on hover for a cool effect */
}

.why-choose-us {
            max-width: 1200px;
            margin: 50px auto;
            display: flex;
            gap: 50px;
            padding: 40px;
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .why-left {
            flex: 1;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #003B55;
            position: relative;
            margin-bottom: 30px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background-color: #f5821f;
            margin-top: 10px;
            border-radius: 2px;
        }

        .card {
            background: #ffffff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

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

        .icon-box {
            width: 50px;
            height: 50px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .icon-1 { background-color: #00bfff; }
        .icon-2 { background-color: #ff66b2; }
        .icon-3 { background-color: #ff4d4d; }
        .icon-4 { background-color: #33cc99; }

        .card-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 5px;
        }

        .card-content p {
            font-size: 14px;
            color: #555;
            margin: 0;
        }

.why-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5821f, #003B55); /* Optional: colorful border */
    border-radius: 25px;
    padding: 10px;
    box-sizing: border-box;
    width: 100%; /* Ensures it scales properly */
    max-width: 500px; /* Set max width if needed */
}

.why-right-inner {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Uniform radius */
    overflow: hidden; /* Ensures image fits inside with border radius */
    background-color: white; /* Optional: white background */
}

.why-right-inner img {
    display: block;
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px; /* Matches container */
    object-fit: cover; /* Ensures image covers container */
}

.why-right img {
    width: 100%;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

        @media (max-width: 900px) {
            .why-choose-us {
                flex-direction: column;
                gap: 20px;
            }
            .why-right {
                order: -1;
            }
        }


.about-description p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-description h2 {
           font-size: 22px;
        font-weight: bold;
        margin-top: 36px;
}

.about-description a {
    color: #0f4c75;
    text-decoration: none;
    font-weight: bold;
}

.about-description a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .about-columns {
        flex-direction: column; /* Stack vertically on small screens */
    }
}


footer ul li {
    padding: 3px;
}
footer{
  background: var(--primary-color) !important;
     padding: 95px 20px;
}
@keyframes slowZoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Text animations */
.overlay-text h1 {
  animation: slowZoomIn 1.5s ease-out forwards;
}

.overlay-text p {
  animation: slowZoomIn 1.5s ease-out forwards;  opacity: 0;
  animation-delay: 1.5s;
}

/* Button animation with initial hidden state */
.overlay-text a {
  opacity: 0; /* Start hidden */
  animation: slideInLeft 1.5s ease-out forwards;
  animation-delay: 3s;
}


.custom-btn {
    background-color: #F78F1E; /* Vibrant orange from logo */
    color: white;
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 30px; /* Rounded button */
    border: none;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.custom-btn:hover {
    background-color: #0A4058; /* Deep teal/blue from logo */
    transform: scale(1.05); /* Subtle grow on hover */
    color: #fff;
    text-decoration: none;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); } /* Zoom to 130% */
}

.zoom-bg {
    animation: zoomEffect 15s infinite alternate linear; /* Smooth continuous zoom */
}


@keyframes zoomEffect {
    0% {
        transform: scale(1);      /* Start at normal size */
    }
    100% {
        transform: scale(1.3);    /* Zoom in more to 130% */
    }
}

.slide-content {
    animation: zoomEffect 15s infinite alternate linear; /* 15s duration, adjust as needed */
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6); /* Big background circle */
    border-radius: 50%;                   /* Make it circular */
    width: 60px;                          /* Bigger background size */
    height: 60px;
    background-size: 20% 20%;             /* Smaller icon inside */
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;                        /* Optional: adjust spacing */
}
a.nav-link {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 8 8"%3E%3Cpath d="M5.5 0L4.5 1 7 3.5H0v1h7L4.5 7 5.5 8l4-4-4-4z"/%3E%3C/svg%3E');
}

.carousel-control-next-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 8 8"%3E%3Cpath d="M2.5 0L3.5 1 1 3.5H8v1H1l2.5 2.5-1 1-4-4 4-4z"/%3E%3C/svg%3E');
}


.carousel-item {
    transition: transform 2s ease-in-out; /* Optional smooth effect */
}

header {
    padding: 0px 0px;
}



.bc-text{
    background: #dee2e6;
}
section.what-we-do {
    background-color: #f5821f0f;
}
  .container-why {
    margin: 50px auto;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-image: url("https://i.ibb.co/jVL0zvC/section-img.jpg");
    background-size: cover;
    background-position: 43%;
    opacity: .8;
    position: relative;

}

.center-div {
   position: absolute;
   top: 56%;
   margin-top: -30px;
   width: 80%;
   left: 50%;
   transform: translate(-50%,-50%);
}

.center-div h2 {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    text-align: center;
    margin-top: 100px;
}

.center-div p {
    margin-top: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #ccc;
    line-height: 1.8;

}

.choices {
    display: flex;
}

.left-top,
.right-top,
.right-bottom,
.left-bottom {
    position: absolute;
    display: flex;
    transition: .6s;
    cursor: pointer;
    width: 100%;
    user-select: none;
}

.left-top:hover,
.right-top:hover,
.right-bottom:hover,
.left-bottom:hover {
    transform: scale(1.1);
}

.left-top {
    left: -70%;
    top:  3%;
}

.right-top {
    left: 70%;
    top: 3%;
}

.right-bottom {
    left: 70%;
    top: 80%;
}

.left-bottom {
    left: -70%;
    top: 80%;
}

.left-top-circle,
.right-top-circle,
.right-bottom-circle,
.left-bottom-circle {
    position: relative;
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;

}

.left-top-circle{
    left: 81%;
}

body {
    background-color: #f8f9fa;
}
.left-bottom-circle {
    left: 81%;
}

.left-top-circle,
.right-top-circle,
.right-bottom-circle,
.left-bottom-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.left-top-circle img,
.right-top-circle img,
.right-bottom-circle img,
.left-bottom-circle img {
    width: 60%;
    height: auto;
    max-width: 100%;
}

@media screen and (max-width: 576px) {
    .img-design {
        width: 20%;      /* or adjust as needed */
        height: auto;
        max-width: 100%;
    }
    .animated-text {
    font-size: 48px;
    font-weight: bold;
    color: #f5821f; /* Initial color */
    animation: colorChange 2s steps(1) infinite;
}

@keyframes colorChange {
    0% {
        color: #f5821f; /* Orange */
    }
    50% {
        color: #003B55; /* Dark Blue/Black */
    }
    100% {
        color: #f5821f; /* Back to Orange */
    }
}
}

.overlay-text.text-white.d-flex.flex-column.align-items-center {
    position: absolute; /* or relative/fixed/sticky based on need */
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center horizontally & vertically */
}

.left-top-text,
.right-top-text,
.right-bottom-text,
.left-bottom-text {
    position: relative;
    padding: 8px;
    width: 70%;

}

.left-top-text {
    left: -10%;
}

.right-top-text {
    left: 1.5%;
}

.right-bottom-text {

    top: 80%;
}

.left-bottom-text {
    left: -10%;
}

.left-top-text h3,
.right-top-text h3,
.right-bottom-text h3,
.left-bottom-text h3 {
    text-align: right;
    color: #263c41;
    opacity: .9;
    font-size: 22px;
}

.right-top-text h3,
.right-bottom-text h3{
    text-align: left;
}

.left-top-text p,
.right-top-text p,
.right-bottom-text p,
.left-bottom-text p {
    margin-top: 30px;
    color: #979dac;
    font-weight: bold;
    line-height: 1.4;
    text-align: justify;
    font-size: 16px;
}
.what-we-do{
  padding-top: 1.5rem;

}
.what-we-do {
  overflow-x: hidden; /* Prevent horizontal scroll if any */
}
img.img-fluid {
  max-width: 100%; /* Ensure image doesn't overflow */
  height: auto;
}
 .contact-section {
      position: relative;
     background: url('cocnrete-pipe-and-rubber-hose-clamp.jpg') no-repeat center center;

      background-size: cover;
      padding: 80px 20px;
      color: white;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.9); /* black overlay */
      z-index: 1;
    }

    .contact-content {
      position: relative;
      z-index: 2;
    }


.circle-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color:#f5821f;
    position: relative;
    display: inline-block;
    margin: 10px;
}

.circle-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: white;

    /* Animation */
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
    0% {
        transform: translate(-50%, -50%) scale(1);
        text-shadow: none;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        text-shadow: none;
    }
}
/* Custom CSS for nested dropdown positioning */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

@media (max-width: 767px) { /* Mobile এর জন্য */
  .dropdown-submenu .dropdown-menu {
    background-color: #e3a56f !important; /* এখানে তোমার পছন্দের রঙ দিন */
  }
  .dropdown-submenu {
            position: relative;
        }
        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-left: 0;
            margin-right: 0;
        }
}
.dropdown-submenu {
            position: relative;
        }
        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-left: 0;
            margin-right: 0;
        }
/* Responsive styling for tablets */
@media (max-width: 768px) {
    .circle-icon {
        width: 80px;
        height: 80px;
    }

    .circle-icon i {
        font-size: 20px;  /* Smaller icon for tablets */
    }
}

/* Responsive styling for mobile phones */
@media (max-width: 480px) {
    .circle-icon {
        width: 60px;
        height: 60px;
    }

    .circle-icon i {
        font-size: 16px;  /* Even smaller icon for mobile */
    }
    .animated-text {
    font-size: 48px;
    font-weight: bold;
    color: #f5821f; /* Initial color */
    animation: colorChange 2s steps(1) infinite;
}

@keyframes colorChange {
    0% {
        color: #f5821f; /* Orange */
    }
    50% {
        color: #003B55; /* Dark Blue/Black */
    }
    100% {
        color: #f5821f; /* Back to Orange */
    }
}
.dropdown-submenu {
            position: relative;
        }
        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-left: 0;
            margin-right: 0;
        }
}


.circle-icon:hover {
    background-color:white; /* হোভার এ ব্যাকগ্রাউন্ড কালার পরিবর্তন */
}

.circle-icon:hover i {
    color:#f5821f; /* হোভার এ আইকনের কালার পরিবর্তন */
}
    .contact-info h5 {
     margin-top: 10px;
      font-weight: bold;
    }

   .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white;  /* নিচের দিকে সাদা border */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    color: white;
    border-color: none;
    transition: border-color 0.3s, color 0.3s;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7); /* placeholder color white-ish */
}

.form-control:focus {
    background-color: transparent;
    border-bottom: 2px solid #f5821f;  /* ফোকাস এ orange border */
    box-shadow: none;
    color: #f5821f;                   /* ফোকাস এ text color orange */
    outline: none;
    border-color: none;
}

.form-control:focus::placeholder {
    color: #f5821f; /* Focus এ placeholder ও orange হবে */
}


    .btn-send {
      background-color: #00bcd4;
      color: white;
      border: none;
      padding: 12px;
      width: 100%;
      font-weight: bold;
    }

    .btn-send:hover {

      background-color: #009cb3;
    }
.logo-img{
     height: 50px;
  filter: brightness(0.8) contrast(1.2);
  transform: scale(1.5); /
}
.logo-img:hover {
  transform: scale(1.6); /* More zoom on hover */
  filter: brightness(1) contrast(1.4); /* Optional: more brightness on hover */
}
.footer-logo {
    max-width: 200px;
    display: block;
  /* center */
    filter: brightness(0.8) contrast(1.2); /* glow effect for visibility */
    transition: none; /* no hover transition */
        margin-left: -16px;
}

/* এই hover অংশ বাদ দিন অথবা ফাঁকা রাখুন */
.footer-logo:hover {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9)); /* Same as normal, no extra glow */
}
#btn-send {
    background-color: #f5821f;  /* আপনার পছন্দের কালার */
    color: white;              /* টেক্সটের রঙ */
    padding: 10px 20px;        /* বোতামের প্যাডিং */
    border: none;              /* বর্ডার নেই */
    border-radius: 5px;        /* হালকা রাউন্ডেড */
    font-size: 16px;           /* ফন্ট সাইজ */
    cursor: pointer;           /* হোভার করলে কার্সর */
    transition: background-color 0.3s ease;
}

#btn-send:hover {
    background-color: #f5821f;;  /* হোভার এ কালার */
}
.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: white;          /* সাদা ব্যাকগ্রাউন্ড */
    border: 2px solid #3498db;        /* বর্ডার কালার */
    border-radius: 50%;               /* গোল বর্ডার */
    margin-right: 10px;                     /* space between icons */
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.social-icon i {
    color: #3498db;                   /* আইকনের কালার */
    font-size: 24px;
    transition: color 0.3s;
}

.social-icon:hover {
    background-color: #3498db;        /* হোভার এ ব্যাকগ্রাউন্ড ব্লু */
    border-color: #f5821f;            /* হোভার এ বর্ডার কালার চেঞ্জ */
}

.social-icon:hover i {
    color: white;                     /* হোভার এ আইকন কালার সাদা */
}


@media (max-width: 768px) {
    .container-why {
        width: 300px;  /* Smaller circle for mobile */
        height: 300px;
        background-position: center;
    }
    .center-div p {
    margin-top: 30px;
    text-align: center;
    font-size: 7px;
    font-weight: bold;
    color: #ccc;
    line-height: 1.8;
}
.left-top-circle, .right-top-circle, .right-bottom-circle, .left-bottom-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f0f0;
    position: relative;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.left-top-text h3, .right-top-text h3, .right-bottom-text h3, .left-bottom-text h3 {
    text-align: right;
    color: #263c41;
    opacity: .9;
    font-size: 10px;
}
.left-top-text p, .right-top-text p, .right-bottom-text p, .left-bottom-text p {
    margin-top: 30px;
    color: #979dac;
    font-weight: bold;
    line-height: 1.4;
    text-align: justify;
    font-size: 7px;
}
.left-top-text {
    left: -27%;
}
.left-top-text, .right-top-text, .right-bottom-text, .left-bottom-text {
    position: relative;
    padding: 8px;
    width: 100%;
    max-width: 100px;
}
.right-top {
    left: 40%;
    top: 3%;
}
.right-bottom {
    left: 40%;
    top: 80%;
}
.center-div {
    position: absolute;
    top: 62%;
    margin-top: -30px;
    width: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.left-top-circle {
    left: 68%;
}
.right-top-circle {
    left: 11%;
}
.left-bottom-circle {
    left: 68%;
}
.right-bottom-circle {
    left: 11%;
}
}
@media (max-width: 992px) {
    .container-why {
        width: 400px;  /* Tab এর জন্য মাঝারি সাইজ */
        height: 400px;
        background-position: center;
    }

    .center-div p {
        margin-top: 30px;
        text-align: center;
        font-size: 10px;
        font-weight: bold;
        color: #ccc;
        line-height: 1.8;
    }

    .left-top-circle, .right-top-circle, .right-bottom-circle, .left-bottom-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #f0f0f0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .left-top-text h3, .right-top-text h3, .right-bottom-text h3, .left-bottom-text h3 {
        text-align: right;
        color: #263c41;
        opacity: .9;
        font-size: 14px;
    }

    .left-top-text p, .right-top-text p, .right-bottom-text p, .left-bottom-text p {
        margin-top: 20px;
        color: #979dac;
        font-weight: bold;
        line-height: 1.4;
        text-align: justify;
        font-size: 10px;
    }

    .left-top-text {
        left: -27%;
    }

    .left-top-text, .right-top-text, .right-bottom-text, .left-bottom-text {
        position: relative;
        padding: 10px;
        width: 100%;
        max-width: 150px;
    }

    .right-top {
        left: 40%;
        top: 3%;
    }

    .right-bottom {
        left: 40%;
        top: 80%;
    }

    .center-div {
        position: absolute;
        top: 62%;
        margin-top: -30px;
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .left-top-circle {
        left: 68%;
    }

    .right-top-circle {
        left: 11%;
    }

    .left-bottom-circle {
        left: 68%;
    }

    .right-bottom-circle {
        left: 11%;
    }
}

@media (max-width: 480px) {
    .container-why {
        width: 200px;  /* Even smaller for very small screens */
        height: 200px;
        background-position: center;
    }
}
@media (max-width: 480px) {
    .container-why {
        width: 200px;  /* Mobile screen এর জন্য ছোট circle */
        height: 200px;
        background-position: center;
    }

    .center-div p {
        margin-top: 20px;
        text-align: center;
        font-size: 8px;
        font-weight: bold;
        color: #ccc;
        line-height: 1.6;
    }

    .left-top-circle, .right-top-circle, .right-bottom-circle, .left-bottom-circle {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: #f0f0f0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .left-top-text h3, .right-top-text h3, .right-bottom-text h3, .left-bottom-text h3 {
        text-align: center;
        color: #263c41;
        opacity: .9;
        font-size: 10px;
    }

    .left-top-text p, .right-top-text p, .right-bottom-text p, .left-bottom-text p {
        margin-top: 10px;
        color: #979dac;
        font-weight: bold;
        line-height: 1.2;
        text-align: justify;
        font-size: 7px;
    }

    .left-top-text, .right-top-text, .right-bottom-text, .left-bottom-text {
        position: relative;
        padding: 5px;
        width: 100%;
        max-width: 100px;
    }

    .right-top {
        left: 40%;
        top: 3%;
    }

    .right-bottom {
        left: 40%;
        top: 80%;
    }

    .center-div {
        position: absolute;
        top: 62%;
        margin-top: -20px;
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .left-top-circle {
        left: 68%;
    }

    .right-top-circle {
        left: 11%;
    }

    .left-bottom-circle {
        left: 68%;
    }

    .right-bottom-circle {
        left: 11%;
    }
}
    .service-section-main {
            display: flex;
            flex-wrap: wrap;             /* Allow wrapping on small screens */
            align-items: flex-start;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-text {
            flex: 1 1 400px;             /* Responsive flex */
            min-width: 300px;
        }

        .service-text h4 {
            font-weight: normal;
            margin-bottom: 10px;
        }

        .service-text h2 {
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .service-text p {
               line-height: 1.5;
    margin-bottom: 15px;
    font-style: inherit;
    letter-spacing: 1px;
    font-size: 14px;
        }

        .service-text p a {
            color: #1d8edb;
            text-decoration: none;
        }

        .service-image {
            flex: 1 1 400px;             /* Responsive flex */
            min-width: 300px;
            background-color: #d9e0e1;   /* Background for image section */
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .service-image img {
            width: 100%;
            height: 500px;
            display: block;
        }

        @media (max-width: 768px) {
            .service-section {
                flex-direction: column-reverse;  /* Stack image and text */
                gap: 20px;
            }
        }

         .service-bottom-section .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            text-align: center;
        }

        .service-bottom-section  h2 {
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .service-bottom-section p {
            font-size: 16px;
            color: #333;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .service-bottom-section  .cards {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .service-bottom-section  .card {
             /* background-color: white; */
    /* border-radius: 10px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 241px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
        }

        .service-bottom-section  .card:hover {
            transform: translateY(-5px);
        }

        .service-bottom-section .card img {
            width: 100%;
            height: auto;
            margin-bottom: 10px;
        }

        .service-bottom-section  .card h3 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .service-bottom-section  .card p {
            margin: 0;
            font-size: 14px;
            color: #555;
        }

        @media (max-width: 768px) {
            .service-bottom-section  .cards {
                flex-direction: column;
                align-items: center;
            }
        }
         .about-bottom-section .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            text-align: center;
        }

          .about-bottom-section  h2 {
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 10px;
        }

          .about-bottom-section  p {
            font-size: 16px;
            color: #333;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto 40px;
        }

          .about-bottom-section  .cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

          .about-bottom-section  .card {
            background-color: #f5f5f5;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            width: 260px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

          .about-bottom-section  .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

          .about-bottom-section  .card img {
            width: 100%;
            height: auto;
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }

          .about-bottom-section  .card:hover img {
            transform: scale(1.1);
        }

          .about-bottom-section  .card h3 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
        }

          .about-bottom-section  .card p {
            margin: 0;
            font-size: 14px;
            color: #555;
        }

        @media (max-width: 768px) {
              .about-bottom-section .cards {
                flex-direction: column;
                align-items: center;
            }
        }

.animate-text-contact {
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  overflow: hidden; /* for animation */
}

.animate-text-contact span {
  display: inline-block;
  opacity: 0;
  transform: rotateY(90deg);
  animation: rotateIn 0.6s forwards;
  animation-play-state: paused;
  white-space: pre; /* Preserve spacing */
}

@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

.fullscreen-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fullscreen-container img {
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(50%); /* Image dark effect */
}
.active-contact {
        color: rgb(11, 45, 129); /* or any color you like */
    }
.wave-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  font-weight: bold;
  text-align: center;
  width: 100%;           /* Full width */
  display: inline-block; /* Inline block for wrapping */
}

.wave-text span {
  display: inline-block; /* Each letter block */
  opacity: 0;
  transform: translateY(-100px);
  animation: dropIn 0.5s forwards;
}

@keyframes dropIn {
  0% { opacity: 0; transform: translateY(-100px); }
  100% { opacity: 1; transform: translateY(0); }
}
.contact-last-section{
    font-family: 'Open Sans';
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    font-style: italic;
    color: #4e4c4c;
    letter-spacing: 1px;
}

.contact-last-section-1{
    font-family: 'Montserrat';
    font-weight: 800;
    text-align: center;
    font-size: 27px;
    font-style: italic;
        color: #212020;
    letter-spacing: 3px;
}
/* Delay for each letter */
.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.05s; }
.wave-text span:nth-child(3) { animation-delay: 0.1s; }
.wave-text span:nth-child(4) { animation-delay: 0.15s; }
.wave-text span:nth-child(5) { animation-delay: 0.2s; }
.wave-text span:nth-child(6) { animation-delay: 0.25s; }
.wave-text span:nth-child(7) { animation-delay: 0.3s; }
.wave-text span:nth-child(8) { animation-delay: 0.35s; }
.wave-text span:nth-child(9) { animation-delay: 0.4s; }
.wave-text span:nth-child(10) { animation-delay: 0.45s; }
.wave-text span:nth-child(11) { animation-delay: 0.50s; }
.wave-text span:nth-child(12) { animation-delay: 0.55s; }
.wave-text span:nth-child(13) { animation-delay: 0.60s; }
.wave-text span:nth-child(14) { animation-delay: 0.65s; }
.wave-text span:nth-child(15) { animation-delay: 0.70s; }
.wave-text span:nth-child(16) { animation-delay: 0.75s; }
.wave-text span:nth-child(17) { animation-delay: 0.80s; }
.wave-text span:nth-child(18) { animation-delay: 0.85s; }
.wave-text span:nth-child(19) { animation-delay: 0.90s; }
.wave-text span:nth-child(20) { animation-delay: 0.95s; }
.wave-text span:nth-child(21) { animation-delay: 0.100s; }
.wave-text span:nth-child(23) { animation-delay: 0.105s; }
.wave-text span:nth-child(24) { animation-delay: 0.110s; }
.wave-text span:nth-child(24) { animation-delay: 0.120s; }
.wave-text span:nth-child(26) { animation-delay: 0.130s; }
/* ... continue for all letters ... */

.email-link {
    text-decoration: none; /* Underline remove */
    color: #0B2D81; /* Tomar icche moto color */
    font-weight: bold; /* Optional, to make it stand out */
}

.email-link:hover {
    color: #FF5733; /* Hover e onno color (optional) */
    text-decoration: underline; /* Hover e underline dite caile */

      display: inline-block; /* Allows control */
  margin-top: 5px;        /* Adjust spacing */
  font-weight: bold;      /* Optional bold */
}

.phone-number::before {
  content: " ";          /* Optional: Phone icon */
}
   .contact-form {
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-form .form-control {
            background-color: #f7fafb;
            border: 1px solid #e1e1e1;
            border-radius: none;
            box-shadow: none;
            padding: 10px;
        }

        .contact-form .form-control:focus {
            border: 2px solid #d57f0f;
            box-shadow: none;

        }

        .contact-form label {
            font-weight: 500;
            margin-bottom: 5px;
        }

        .contact-form button {
            background-color: #0B2D81;
            color: white;
            padding: 10px 30px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            letter-spacing: 1px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.2);
        }

        .contact-form button:hover {
            background-color: #083166;
        }

        .form-section {
            margin-bottom: 20px;
        }
        label {
    display: block;         /* Ensure label takes full width above input */
    text-align: left;       /* Align text to left */
    margin-bottom: 5px;     /* Space between label and input */
    font-weight: 500;       /* Slightly bold */
}
  @keyframes dialog-fade-in {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes dialog-fade-out {
  0% {
    display: block;
    transform: scale(1);
    opacity: 1;
  }

  100% {
    display: none;
    transform: scale(0.95);
    opacity: 0;
  }
}



 .gallery h1,
h2 {
  color: #000d;
  font-size: 2.5rem;
  font-weight: 200;
}
.gallery  h2 {
  font-size: 1.7rem;
}

.gallery  button,
input[type="submit"] {
  margin: 2px;
  padding: 7px;
  background-color: #09f;
  color: #fff;
  border: none;
  border-radius: 7px;
  box-shadow: 2px 4px 4px #0007;
  font-family: inherit;
  font-size: inherit;

  &:focus {
    outline: 2px solid #000;
    text-decoration: underline;
  }

  &:hover {
    background-color: #4bf;
    cursor: pointer;
  }

  &:active {
    background-color: #08d;
  }
}

.gallery  img {
  box-sizing: border-box;
  width: fit-content;
  height: fit-content;
  max-width: 250px;
  max-height: 250px;
  margin: 10px;
  border: 10px solid #fff;
  box-shadow: 2px 3px 4px #0007;
  object-fit: contain;
}

.gallery  dialog {
  opacity: 0;
  transform: scale(0.8);
  transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete,
    opacity 0.5s, transform 0.5s;
  pointer-events: none;
}

@starting-style {
  dialog:open {
    opacity: 0;
    transform: scale(0.8);
  }
}

.gallery  dialog:open {
  /*   animation: 0.2s linear dialog-fade-in; */
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Image Gallery Styles */

#gallery {
  margin: auto;
  max-width: 1500px;
  text-align: center;
}

#gallery-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 30px 0;
  text-align: center;
}

#gallery-container img {
    transform: rotate(-3deg);
    max-width: 259px;
    max-height: 259px;
    transition: transform 0.2s;


  &:nth-of-type(2n) {
    transform: rotate(4deg);
  }

  &:nth-of-type(3n) {
    transform: rotate(-2deg);
  }

  &:hover {
    transform: scale(1.1);
    z-index: 2;
  }
}

/* Upload Dialog Styles */

#upload-dialog {
  width: calc(100vw - 80px);
  max-width: 600px;
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 8px;
  box-shadow: 3px 5px 5px #0007;

  .gallery  form {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 5px;
    box-sizing: border-box;
    width: 100%;
    padding: 20px;

    label {
      width: 100%;
      text-align: left;
    }

    .gallery  input[type="text"] {
      width: 100%;
      height: 24px;
      border-radius: 8px;
      border: 2px solid #0004;
    }
  }

}
.search{
    margin-top: 100px;
}
.dropdown-submenu > .dropdown-menu {
    animation: fadeSlideRight 0.25s ease-in-out;
    transform-origin: left;
}

@keyframes fadeSlideRight {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
    .swiper-button-next,
    .swiper-button-prev {
        color: transparent; /* hides the default icon container */
        background: none;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 20px;          /* icon size */
        color: #f5821f !important; /* orange icon */
        background: none;         /* remove bg */
        font-weight: bold;
    }

    /* Optional: hide icons on mobile */
    @media (max-width: 576px) {
        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }
    }

     .swiper-pagination {
        display: none !important;
    }
     .swiper-button-next,
    .swiper-button-prev {
        background-color: #f5f2f0; /* 🔶 Orange background */
        color: rgb(221, 220, 220);              /* icon color */
        padding: 30px;
        border-radius: 50%;        /* fully rounded */
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
        font-weight: bold;
        color: white;
    }

    /* Optional: Hover effect */
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: #d96c13; /* darker on hover */
    }
.quick_call_area {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    z-index: 999;
    box-shadow: 0px 0px 7px 0px rgba(30, 15, 39, 0.2);
}
.quick_call_area a {
    background: #0072BB;
    height: 40px;
    display: block;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: white;
}
.quick_call_area a.wp {
    background: #25D366 !important;
    font-size: 24px;
    color: white;
}
