 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 :root {
     --primary-orange: #c89369;
     --primary-blue: #173e84;
     --dark-bg: #0a0e27;
     --white: #ffffff;
     --text-gray: #ffffff;
 }
 
 html {
     scroll-behavior: smooth;
 }
 
 .hero {
     font-family: "Inter", "Segoe UI", sans-serif;
     background: linear-gradient( 135deg, #0a0e27 0%, #1a1f3a 50%, #0f1621 100%);
     color: var(--text-gray);
     line-height: 1.6;
     overflow-x: hidden;
 }
 
 body {
     font-family: "Inter", "Segoe UI", sans-serif;
     background: linear-gradient(135deg);
     color: var(--text-gray);
     line-height: 1.6;
     overflow-x: hidden;
 }
 
 .portfolio-image {
     width: 100%;
     height: 300px;
     /* Adjust as needed */
     overflow: hidden;
     border-radius: 10px;
 }
 
 .portfolio-image-content {
     width: 100%;
     height: 100%;
 }
 
 .portfolio-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* Fill the container */
     display: block;
 }
 /* ===== HERO SECTION ===== */
 
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     padding: 60px 40px;
 }
 
 .hero-gradient {
     position: absolute;
     width: 800px;
     height: 800px;
     background: radial-gradient( circle, rgba(255, 152, 0, 0.15) 0%, transparent 70%);
     border-radius: 50%;
     top: -300px;
     right: -200px;
     filter: blur(40px);
 }
 
 .hero-gradient-2 {
     position: absolute;
     width: 600px;
     height: 600px;
     background: radial-gradient( circle, rgba(23, 62, 132, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     bottom: -200px;
     left: -150px;
     filter: blur(40px);
 }
 
 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 900px;
     text-align: center;
 }
 
 .hero-tag {
     display: inline-block;
     padding: 12px 30px;
     background: rgba(255, 152, 0, 0.1);
     border: 1px solid var(--primary-orange);
     border-radius: 50px;
     color: var(--primary-orange);
     font-size: 0.85rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 30px;
 }
 
 .hero-title {
     font-size: 5.5rem;
     font-weight: 900;
     line-height: 1.1;
     margin-bottom: 25px;
     background: linear-gradient( 120deg, var(--white) 0%, var(--primary-orange) 50%, var(--white) 100%);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }
 
 .hero-subtitle {
     font-size: 1.4rem;
     color: var(--text-gray);
     margin-bottom: 40px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.8;
 }
 
 .hero-cta {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
 }
 
 .btn-primary {
     padding: 16px 45px;
     background: linear-gradient( 135deg, var(--primary-orange) 0%, #f57c00 100%);
     color: white;
     border: none;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
     text-transform: uppercase;
     letter-spacing: 1px;
 }
 
 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(255, 152, 0, 0.5);
 }
 
 .btn-secondary {
     padding: 16px 45px;
     background: transparent;
     color: var(--primary-orange);
     border: 2px solid var(--primary-orange);
     border-radius: 50px;
     font-weight: 700;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
 }
 
 .btn-secondary:hover {
     background: var(--primary-orange);
     color: white;
 }
 /* ===== SCROLL INDICATOR ===== */
 
 .scroll-down {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 15px;
     cursor: pointer;
     z-index: 10;
 }
 
 .mouse {
     width: 30px;
     height: 50px;
     border: 2px solid var(--primary-orange);
     border-radius: 15px;
     display: flex;
     align-items: flex-start;
     justify-content: center;
     padding-top: 8px;
 }
 
 .wheel {
     width: 4px;
     height: 8px;
     background: var(--primary-orange);
     border-radius: 2px;
     animation: scroll-wheel 1.5s infinite;
 }
 
 @keyframes scroll-wheel {
     0% {
         transform: translateY(0);
         opacity: 1;
     }
     100% {
         transform: translateY(10px);
         opacity: 0;
     }
 }
 /* ===== PORTFOLIO SECTION ===== */
 
 .portfolio-section {
     position: relative;
     z-index: 1;
     padding: 150px 40px;
     background: linear-gradient( to bottom, transparent 0%, rgba(255, 152, 0, 0.02) 100%);
 }
 
 .container {
     max-width: 1500px;
     margin: 0 auto;
 }
 
 .section-header {
     text-align: center;
     margin-bottom: 120px;
 }
 
 .section-tag {
     display: inline-block;
     padding: 10px 25px;
     background: rgba(255, 152, 0, 0.1);
     border: 1px solid var(--primary-orange);
     border-radius: 50px;
     color: var(--primary-orange);
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 25px;
 }
 
 .section-title {
     font-size: 4rem;
     font-weight: 900;
     color: var(--primary-orange);
     margin-bottom: 20px;
     line-height: 1.2;
 }
 
 .section-description {
     font-size: 1.1rem;
     color: var(--primary-blue);
     max-width: 600px;
     margin: 0 auto;
 }
 /* ===== PORTFOLIO GRID ===== */
 
 .portfolio-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     margin-bottom: 80px;
 }
 
 .portfolio-row {
     display: contents;
 }
 
 .portfolio-card2 {
     position: relative;
     background: linear-gradient( 135deg, #d84b6d 0%, #c42f57 55%, #a91f46 100%);
     border: 1px solid rgba(255, 152, 0, 0.1);
     border-radius: 20px;
     overflow: hidden;
     backdrop-filter: blur(10px);
     transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
     cursor: pointer;
     display: flex;
     flex-direction: column;
     height: 100%;
 }
 
 .portfolio-card {
     position: relative;
     background: linear-gradient( 135deg, #8f6545 0%, #0a3f6b 55%, #3a4f66 100%);
     border: 1px solid rgba(255, 152, 0, 0.1);
     border-radius: 20px;
     overflow: hidden;
     backdrop-filter: blur(10px);
     transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
     cursor: pointer;
     display: flex;
     flex-direction: column;
     height: 100%;
 }
 
 .portfolio-card:hover {
     border-color: var(--primary-orange);
     box-shadow: 0 20px 60px rgba(255, 152, 0, 0.2);
     transform: translateY(-10px);
 }
 /* LARGE CARD */
 
 .portfolio-card.large {
     grid-column: span 2;
 }
 
 .portfolio-card.large .portfolio-image {
     height: 500px;
 }
 
 @media (max-width: 1024px) {
     .portfolio-grid {
         grid-template-columns: 1fr;
     }
     .portfolio-card.large {
         grid-column: span 1;
     }
 }
 
 .portfolio-image {
     width: 100%;
     height: 350px;
     background-color: black;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .portfolio-image2 {
     width: 40%;
     height: 350px;
     background-color: black;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .portfolio-image::before {
     content: "";
     position: absolute;
     inset: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
     opacity: 0.2;
 }
 
 .portfolio-image-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: white;
 }
 
 .portfolio-icon {
     font-size: 80px;
     margin-bottom: 20px;
     display: block;
     opacity: 0.8;
     transition: all 0.3s ease;
 }
 
 .portfolio-card:hover .portfolio-icon {
     opacity: 1;
     transform: scale(1.15);
 }
 
 .portfolio-image-text {
     font-size: 1.2rem;
     font-weight: 700;
 }
 
 .portfolio-body {
     padding: 40px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }
 
 .client-label {
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: var(--primary-orange);
     margin-bottom: 15px;
 }
 
 .portfolio-title {
     font-size: 2.2rem;
     font-weight: 800;
     color: var(--white);
     margin-bottom: 15px;
     line-height: 1.3;
 }
 
 .portfolio-description {
     color: var(--text-gray);
     margin-bottom: 25px;
     line-height: 1.7;
     font-size: 0.95rem;
 }
 /* RESULTS */
 
 .results-highlight {
     background: linear-gradient( 135deg, rgba(255, 152, 0, 0.08) 0%, rgba(23, 62, 132, 0.05) 100%);
     border-left: 3px solid var(--primary-orange);
     padding: 20px;
     border-radius: 10px;
     margin-top: auto;
 }
 
 .results-highlight h4 {
     color: var(--primary-orange);
     font-size: 0.9rem;
     margin-bottom: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
 }
 
 .results-items {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }
 
 .result-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.9rem;
     color: var(--text-gray);
 }
 
 .result-item::before {
     content: "✓";
     color: var(--primary-orange);
     font-weight: bold;
     font-size: 1.1rem;
     flex-shrink: 0;
 }
 /* STATS SECTION */
 
 .stats-section {
     background: linear-gradient( 135deg, var(--primary-blue) 0%, #1a4d7a 50%, var(--primary-orange) 100%);
     border-radius: 20px;
     padding: 60px;
     text-align: center;
     margin: 100px 0;
     position: relative;
     overflow: hidden;
 }
 
 .stats-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" opacity="0.1" fill="white"/><circle cx="80" cy="80" r="1" opacity="0.1" fill="white"/><circle cx="50" cy="50" r="1" opacity="0.1" fill="white"/></svg>');
     opacity: 0.3;
 }
 
 .stats-content {
     position: relative;
     z-index: 2;
 }
 
 .stats-title {
     font-size: 2.5rem;
     color: white;
     margin-bottom: 50px;
     font-weight: 800;
 }
 
 .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }
 
 .stat-box {
     color: white;
 }
 
 .stat-number {
     font-size: 3.5rem;
     font-weight: 900;
     margin-bottom: 10px;
     color: white;
 }
 
 .stat-label {
     font-size: 0.95rem;
     opacity: 0.9;
     font-weight: 600;
 }
 
 .image-modal {
     display: none;
     position: fixed;
     z-index: 99999;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.95);
     justify-content: center;
     align-items: center;
     animation: fadeIn 0.3s;
 }
 
 .modal-image {
     max-width: 90%;
     max-height: 90%;
     border-radius: 12px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
     animation: zoomIn 0.35s;
 }
 
 .close-btn {
     position: absolute;
     top: 25px;
     right: 35px;
     color: #fff;
     font-size: 45px;
     font-weight: bold;
     cursor: pointer;
     transition: 0.3s;
 }
 
 .close-btn:hover {
     color: #c89369;
     transform: rotate(90deg);
 }
 
 .client-logo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
 
 .client-logo {
     width: 180px;
     height: 140px;
     background: #0e5690;
     display: flex;
     justify-content: center;
     align-items: center;
     overflow: hidden;
     border-radius: 12px;
 }
 
 .client-logo img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     /* Makes logo appear larger */
     transform: scale(1.5);
     /* Optional: move logo if needed */
     /* transform: scale(1.5) translateY(-5px); */
 }
 
 @keyframes zoomIn {
     from {
         transform: scale(0.7);
         opacity: 0;
     }
     to {
         transform: scale(1);
         opacity: 1;
     }
 }
 
 @keyframes fadeIn {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
     }
 }
 
 @media (max-width: 768px) {
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }
 /* ===== TESTIMONIAL SECTION ===== */
 
 .testimonial-section {
     padding: 100px 40px;
     background-color: #394277;
     text-align: center;
 }
 
 .testimonial-box {
     max-width: 800px;
     margin: 0 auto;
     padding: 50px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 152, 0, 0.2);
     border-radius: 20px;
     backdrop-filter: blur(10px);
 }
 
 .quote-icon {
     font-size: 3rem;
     color: var(--primary-orange);
     margin-bottom: 20px;
 }
 
 .testimonial-text {
     font-size: 1.4rem;
     color: var(--white);
     margin-bottom: 30px;
     line-height: 1.8;
     font-weight: 600;
 }
 
 .testimonial-author {
     color: var(--text-gray);
     font-size: 1rem;
 }
 
 .testimonial-author strong {
     color: var(--primary-orange);
 }
 /* ===== FOOTER CTA ===== */
 
 .footer-cta {
     padding: 120px 40px;
     text-align: center;
 }
 
 .cta-title {
     font-size: 3.5rem;
     color: var(--white);
     margin-bottom: 20px;
     font-weight: 900;
 }
 
 .cta-subtitle {
     font-size: 1.2rem;
     color: var(--text-gray);
     margin-bottom: 50px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }
 
 .client-info {
     display: flex;
     align-items: center;
     gap: 25px;
     background: #fff;
     padding: 25px;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     margin: 40px 0;
 }
 
 .client-logo {
     width: 120px;
     height: 120px;
     background: #fff;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid #eee;
     flex-shrink: 0;
 }
 
 .client-logo img {
     width: 85%;
     height: 85%;
     object-fit: contain;
 }
 
 .client-details h3 {
     margin: 0 0 10px;
     font-size: 28px;
     color: #0e5690;
 }
 
 .client-details p {
     margin: 0;
     font-size: 16px;
     color: #666;
     line-height: 1.7;
 }
 /* ===== RESPONSIVE ===== */
 
 @media (max-width: 768px) {
     .hero-title {
         font-size: 3rem;
     }
     .section-title {
         font-size: 2.5rem;
     }
     .portfolio-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }
     .portfolio-title {
         font-size: 1.8rem;
     }
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
     }
     .cta-title {
         font-size: 2.5rem;
     }
 }
 
 .navbar-custom {
     background: white;
     transition: all 0.4s ease-in-out;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 9999;
     backdrop-filter: blur(8px);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
 }
 
 .navbar-custom.scrolled {
     background: #ffffff;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
 }
 
 .navbar-brand .logo {
     width: 120px;
     height: auto;
     transition: transform 0.3s ease, filter 0.3s ease;
     filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
 }
 
 .navbar-brand .logo:hover {
     transform: scale(1.08);
     filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
 }
 
 .navbar-nav .nav-link {
     color: #000 !important;
     font-weight: 600;
     letter-spacing: 0.5px;
     position: relative;
     margin: 0 12px;
     transition: all 0.3s ease;
 }
 
 .navbar-nav .nav-link:hover {
     color: #ff9800 !important;
     transform: scale(1.05);
 }
 
 .navbar-nav .nav-link::after {
     content: "";
     position: absolute;
     width: 0;
     height: 2px;
     left: 0;
     bottom: -4px;
     background-color: #ff9800;
     transition: width 0.3s ease;
 }
 
 .navbar-nav .nav-link:hover::after {
     width: 100%;
 }
 
 .nav-btn a {
     text-decoration: none;
     color: #fff;
 }
 
 .nav-btn {
     background: linear-gradient(45deg, #ff9800, #ff5722);
     border: none;
     padding: 8px 18px;
     border-radius: 25px;
     transition: all 0.3s ease;
     font-weight: 600;
     box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
 }
 
 .nav-btn:hover {
     transform: scale(1.08);
     box-shadow: 0 0 20px rgba(255, 152, 0, 0.6);
 }
 
 .navbar-toggler {
     border: none;
     background: transparent;
 }
 
 .navbar-toggler-icon {
     background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
 }
 
 @media (max-width: 991px) {
     .navbar-custom {
         background: #ffffff;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     }
     .navbar-nav {
         background: #ffffff;
         border-radius: 12px;
         padding: 15px 0;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     }
     .navbar-nav .nav-link {
         margin: 10px 0;
         font-size: 17px;
         display: block;
         color: #000 !important;
     }
     .nav-btn {
         width: 85%;
         margin: 12px auto;
         display: block;
         text-align: center;
     }
     .navbar-brand .logo {
         width: 120px;
     }
 }
 /* dropdown section */
 
 .nav-item {
     position: relative;
 }
 
 .nav-item .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     text-align: center;
     background: #ffffff;
     border-radius: 6px;
     padding: 8px 0;
     min-width: 190px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
     display: none;
     z-index: 9999;
 }
 
 .dropdown-menu li a {
     display: block;
     padding: 10px 15px;
     color: #333 !important;
     font-size: 15px;
     text-decoration: none;
     white-space: nowrap;
 }
 
 .dropdown-menu li a:hover {
     background: #f3f3f3;
 }
 
 .nav-item:hover>.dropdown-menu {
     display: block;
 }
 
 .navbar-collapse {
     overflow: visible !important;
 }
 
 .nav-item.open>.dropdown-menu {
     display: block !important;
 }
 
 .nav-item.open i {
     transform: rotate(180deg);
     transition: 0.3s;
 }
 /* futter section */
 
 .social-icons {
     margin-top: 15px;
     display: flex;
     gap: 15px;
     z-index: 2;
 }
 
 .social-icon {
     text-decoration: none;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 42px;
     height: 42px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.15);
     color: #fff;
     font-size: 1.2rem;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }
 
 .social-icon::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(45deg, #F7941E, #173E84);
     transform: translateY(100%);
     transition: transform 0.4s ease;
     z-index: 0;
 }
 
 .social-icon i {
     z-index: 1;
     transition: transform 0.4s ease;
 }
 
 .social-icon:hover::before {
     transform: translateY(0);
 }
 
 .social-icon:hover i {
     transform: scale(1.2);
 }
 
 .social-icon.facebook:hover {
     text-decoration: none;
     background: #3b5998;
 }
 
 .social-icon.instagram:hover {
     text-decoration: none;
     background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
 }
 
 .social-icon.linkedin:hover {
     text-decoration: none;
     background: #0077b5;
 }
 
 .social-icon.whatsapp:hover {
     text-decoration: none;
     background: #25D366;
 }
 
 @media (max-width: 767px) {
     .social-icons {
         justify-content: center;
         flex-wrap: wrap;
     }
     .social-icon {
         width: 40px;
         height: 40px;
         font-size: 1rem;
     }
 }
 
 .footer {
     background: url('futter\ image\ \(2\).jpg') no-repeat center center/cover;
     position: relative;
     color: #fff;
     padding: 80px 20px 30px;
     overflow: hidden;
 }
 
 .footer::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgb(50 48 48 / 61%);
     z-index: 0;
 }
 
 @keyframes fadeBg {
     0% {
         filter: brightness(0.85) saturate(1);
     }
     50% {
         filter: brightness(1) saturate(1.1);
     }
     100% {
         filter: brightness(0.85) saturate(1);
     }
 }
 
 .footer {
     animation: fadeBg 15s ease-in-out infinite;
 }
 
 .footer-row {
     position: relative;
     z-index: 1;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 40px;
 }
 
 .footer-col {
     flex: 1 1 220px;
     min-width: 200px;
 }
 
 .footer-logo {
     width: 160px;
     margin-bottom: 15px;
     filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
 }
 
 .footer-about {
     font-size: 0.95rem;
     line-height: 1.6;
     color: #f4f4f4;
     max-width: 320px;
 }
 
 .futter-num {
     text-decoration: none;
     color: white;
 }
 
 .futter-num:hover {
     text-decoration: none;
     color: white;
 }
 
 .futter-mail {
     text-decoration: none;
     color: white;
 }
 
 .futter-mail:hover {
     text-decoration: none;
     color: white;
 }
 
 .footer-col h4 {
     font-size: 1.3rem;
     margin-bottom: 15px;
     color: #fff;
     position: relative;
 }
 
 .footer-col h4::after {
     content: '';
     position: absolute;
     bottom: -6px;
     left: 0;
     width: 50px;
     height: 3px;
     background: #fff;
     border-radius: 2px;
     transition: width 0.4s ease;
 }
 
 .footer-col h4:hover::after {
     width: 80px;
 }
 
 .footer-col ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }
 
 .footer-col ul li {
     margin-bottom: 10px;
 }
 
 .footer-col ul li a {
     color: #f4f4f4;
     text-decoration: none;
     transition: 0.3s;
 }
 
 .footer-col ul li a:hover {
     color: #fff;
     text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
 }
 
 .contact-info li {
     align-items: center;
     gap: 10px;
 }
 
 .contact-info i {
     color: #fff;
 }
 
 .footer-bottom {
     position: relative;
     z-index: 1;
     text-align: center;
     margin-top: 40px;
     border-top: 1px solid rgba(255, 255, 255, 0.3);
     padding-top: 15px;
     font-size: 0.9rem;
     color: #eee;
 }
 
 @media (max-width: 991px) {
     .footer-row {
         gap: 30px;
     }
     .footer-col {
         flex: 1 1 45%;
     }
 }
 
 @media (max-width: 767px) {
     .footer-row {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }
     .footer-col h4::after {
         left: 50%;
         transform: translateX(-50%);
     }
     .footer-logo {
         margin: 0 auto 15px;
     }
     .footer-about {
         margin: 0 auto 20px;
     }
 }
 /* whatsapp icon */
 
 .float {
     position: fixed;
     width: 60px;
     height: 60px;
     bottom: 40px;
     right: 40px;
     background-color: #25d366;
     color: #FFF;
     border-radius: 50px;
     text-align: center;
     font-size: 30px;
     box-shadow: 6px 6px 8px #999;
     z-index: 100;
 }
 
 .float:hover {
     color: white;
 }
 
 .my-float {
     margin-top: 16px;
 }
 
 .dropdown-item:hover {
     color: #ffb84d !important;
     /* light orange */
     text-decoration: underline;
 }
 /* font */
 
 .font-link {
     font-family: "Roboto", sans-serif;
     font-optical-sizing: auto;
     font-weight: weight;
     font-style: normal;
     font-variation-settings: "wdth" 100;
 }