 /* CSS Variables */
 :root {
     --deep-blue: #002C54;
     --bright-red: #C5001A;
     --pale-pink: #FDF6F6;
     --clean-white: #FFFFFF;
     --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     --font-secondary: 'Roboto', sans-serif;

 }

 /* Reset and Base Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: var(--font-secondary);

     color: #333;
     background-color: var(--clean-white);
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 #conta {
     color: var(--deep-blue);
 }

 #menus {
     color: var(--bright-red);
     font-family: Georgia, 'Times New Roman', Times, serif;
 }

 .container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .btn {
     display: inline-block;
     padding: 12px 15px;
     background-color: var(--bright-red);
     color: var(--clean-white);
     border-radius: 15px;
     font-weight: 600;
     transition: all 0.3s ease;
     cursor: pointer;
     border: none;
 }

 .btn:hover {
     background-color: #a00015;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     text-decoration: none;
 }

 .section {
     padding: 80px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-title h2 {
     font-size: 2.5rem;
     color: var(--deep-blue);
     margin-bottom: 15px;
     position: relative;
 }

 .section-title h2::after {

     position: absolute;

     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background-color: var(--bright-red);
 }

 .section-title p {
     max-width: 700px;
     margin: 0 auto;
     color: #666;
 }

 /* Announcement Bar */
 .announcement-bar {
     position: relative;
     background-color: var(--deep-blue);
     color: var(--clean-white);
     padding: 22px 0;
     font-size: 0.9rem;
     overflow: hidden;
 }

 .announcement-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .scrolling-text {
     white-space: nowrap;
     animation: scrollText 20s linear infinite;
     position: absolute;
     font-family: "Open Sans", sans-serif;



 }

 @keyframes scrollText {
     0% {
         transform: translateX(100%);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 .contact-info {
     display: flex;
     gap: 20px;
     background-color: var(--deep-blue);
     padding: 10px;
     position: absolute;
     left: 0;
 }

 .contact-info span {
     display: flex;
     align-items: center;
     gap: 5px;
 }


 /* Header */
 header {
     background-color: var(--clean-white);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;

 }

 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
     position: relative;
 }

 .logo img {
     width: 150%;
     height: 50px;
     object-fit: contain;
     transition: all 0.3s ease;
 }

 /* Tablets (medium screens) */
 @media (max-width: 992px) {
     .logo img {
         width: 120%;
         height: 50px;
     }
 }

 /* Mobile phones (small screens) */
 @media (max-width: 600px) {
     .logo img {
         width: 100%;
         height: 30px;
     }
 }


 /* Mobile Menu Button */
 .mobile-menu-button {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     color: var(--deep-blue);
     cursor: pointer;
     z-index: 1001;
 }

 nav ul {
     display: flex;
     gap: 25px;
     list-style: none;
 }

 nav ul li {
     position: relative;
 }

 nav ul li a {
     font-weight: 400;
     padding: 5px 0;
     transition: color 0.3s ease;
     text-decoration: none;
     color: black;
     font-family: "Open Sans", sans-serif;
 }

 nav ul li a:hover {
     color: var(--bright-red);
 }

 nav ul li a::after {

     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--bright-red);
     transition: width 0.3s ease;
 }

 nav ul li a:hover::after {
     width: 100%;
 }

 /* Dropdown Menu Styles */
 .dropdown {
     position: relative;
 }

 .dropdown-menu {
     display: block;
     position: absolute;
     top: 100%;
     left: 0;
     background-color: var(--clean-white);
     min-width: 200px;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s ease;
     z-index: 1000;
     border-radius: 4px;
     padding: 10px 0;
     list-style: none;
 }

 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-menu li {
     display: block;
     margin: 0;
 }

 .dropdown-menu a {
     display: block;
     padding: 10px 20px;
     color: var(--deep-blue);
     transition: all 0.3s ease;
     font-weight: 400;
     text-decoration: none;
     white-space: nowrap;
 }

 .dropdown-menu a:hover {
     background-color: var(--pale-pink);
     color: var(--bright-red);
     transform: translateX(5px);
 }

 /* CTA Button */
 .btn {
     margin-left: 20px;
 }

 .btn a {
     background-color: var(--bright-red);
     color: white;
     padding: 10px 20px;
     border-radius: 4px;
     text-decoration: none;
     font-weight: 500;
     transition: background-color 0.3s ease;
 }

 .btn a:hover {
     background-color: #c1121f;
 }

 /* Mobile Styles */
 @media (max-width: 768px) {
     .mobile-menu-button {
         display: block;
     }

     nav {
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background-color: var(--clean-white);
         box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
         opacity: 0;
         visibility: hidden;
         transform: translateY(-10px);
         transition: all 0.3s ease;
     }

     header.mobile-menu-active nav {
         opacity: 1;
         visibility: visible;
         transform: translateY(0);
     }

     nav ul {
         flex-direction: column;
         gap: 0;
         padding: 20px;
     }

     nav ul li {
         width: 100%;
         border-bottom: 1px solid #eee;
     }

     nav ul li:last-child {
         border-bottom: none;
     }

     nav ul li a {
         display: block;
         padding: 15px 0;
     }

     /* Mobile Dropdown Styles */
     .dropdown-menu {
         position: static;
         box-shadow: none;
         opacity: 1;
         visibility: visible;
         transform: none;
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease;
         padding: 0;
         background-color: var(--pale-pink);
     }

     .dropdown.active .dropdown-menu {
         max-height: 300px;
         padding: 10px 0;
     }

     .dropdown-menu a {
         padding-left: 30px;
     }

     /* Hide CTA button on mobile */
     .btn {
         display: none;
     }
 }



 .hero {
     background: linear-gradient(rgba(0, 44, 84, 0.8), rgba(0, 44, 84, 0.8)), url('images/logo.jpg');
     background-size: cover;
     background-position: center;
     color: var(--clean-white);
     padding: 100px 0;
     position: relative;
 }

 .hero-content {
     display: flex;
     align-items: center;
     gap: 50px;
 }

 .hero-text {
     flex: 1;
 }

 .hero-text h2 {
     font-size: 3rem;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .hero-text p {
     font-size: 1.1rem;
     margin-bottom: 30px;
     max-width: 600px;
 }

 .hero-card {
     flex: 0 0 400px;
     background-color: var(--clean-white);
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .hero-card img {
     width: 100%;
     height: 300px;
     object-fit: cover;
 }

 .hero-nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 40px;
 }

 .hero-dots {
     display: flex;
     gap: 10px;
 }

 .hero-dots span {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .hero-dots span.active {
     background-color: var(--bright-red);
     transform: scale(1.2);
 }

 .hero-arrow {
     background-color: rgba(255, 255, 255, 0.2);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .hero-arrow:hover {
     background-color: var(--bright-red);
 }

 /* Services Section */
 #services {
     padding: 80px 0;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 }

 .section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title h2 {
     font-size: 2.5rem;
     color: var(--deep-blue);
     margin-bottom: 15px;
     font-weight: 700;
 }

 .section-title p {
     font-size: 1.2rem;
     color: #666;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .service-card {
     background: var(--clean-white);
     border-radius: 15px;
     padding: 0;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .service-image {
     width: 100%;
     height: 200px;
     overflow: hidden;
     position: relative;
 }

 .service-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .service-card:hover .service-image img {
     transform: scale(1.05);
 }

 .service-content {
     padding: 30px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .service-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, var(--bright-red), #a00015);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     color: var(--clean-white);
     font-size: 1.5rem;
 }

 .service-card h3 {
     font-size: 1.5rem;
     color: var(--deep-blue);
     margin-bottom: 15px;
     font-weight: 600;
 }

 .service-card p {
     color: #666;
     line-height: 1.6;
     margin-bottom: 25px;
     flex-grow: 1;
     font-size: 1rem !important;
     /* Override inline style */
     font-family: 'Arial', sans-serif !important;
     /* Better readability */
 }

 .service-btn {
     display: inline-block;
     padding: 12px 30px;
     background: linear-gradient(135deg, var(--deep-blue), #001a33);
     color: var(--clean-white);
     text-decoration: none;
     border-radius: 8px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     text-align: center;
     border: none;
     cursor: pointer;
     font-size: 0.9rem;
     margin-top: auto;
 }

 .service-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 44, 84, 0.3);
     color: var(--clean-white);
     text-decoration: none;
 }

 /* Image descriptions - you can customize these based on your actual images */
 .service-image::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
     height: 50px;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .services-grid {
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 20px;
     }

     .service-content {
         padding: 20px;
     }

     .section-title h2 {
         font-size: 2rem;
     }
 }

 /* Portfolio Section - CLEANED & CORRECTED */
 .portfolio {
     background-color: var(--pale-pink);
 }

 .portfolio-slider {
     position: relative;
     overflow: hidden;
     margin-bottom: 30px;
     padding: 0 60px;
     /* Space for arrows */
 }

 .portfolio-track {
     display: flex;
     transition: transform 0.5s ease;
     width: 400%;
     /* 4 cards × 100% - adjust if you have more/less cards */
 }

 .portfolio-card {
     flex: 0 0 25%;
     padding: 0 15px;
     box-sizing: border-box;

 }

 .portfolio-item {
     background-color: var(--clean-white);
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     position: relative;
     height: 100%;

 }

 .portfolio-img {
     height: 460px;
     width: 100%;
     /* Changed from fixed 580px to 100% */
     overflow: hidden;
     position: relative;
 }

 .portfolio-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
     display: block;
     /* Removes inline spacing */
 }

 .portfolio-item:hover .portfolio-img img {
     transform: scale(1.1);
 }

 .portfolio-overlay {
     position: absolute;
     bottom: -100%;
     left: 0;
     width: 100%;
     background-color: rgba(0, 44, 84, 0.9);
     color: var(--clean-white);
     padding: 20px;
     transition: bottom 0.5s ease;
 }

 .portfolio-item:hover .portfolio-overlay {
     bottom: 0;
 }

 .portfolio-overlay h3 {
     font-size: 1.2rem;
     margin-bottom: 10px;
     color: var(--clean-white);
 }

 .portfolio-overlay p {
     margin-bottom: 15px;
     color: rgba(255, 255, 255, 0.9);
 }

 .slider-arrows {
     display: flex;
     justify-content: space-between;
     position: absolute;
     top: 50%;
     left: 10px;
     right: 10px;
     transform: translateY(-50%);
     z-index: 10;
     pointer-events: none;
 }

 .slider-arrow {
     background-color: var(--deep-blue);
     color: var(--clean-white);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: none;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     pointer-events: all;
 }

 .slider-arrow:hover {
     background-color: var(--bright-red);
     transform: scale(1.1);
 }

 .portfolio-dots {
     display: flex;
     justify-content: center;
     gap: 10px;
     flex-wrap: wrap;
     /* Allow dots to wrap if there are many */
     margin-top: 20px;
 }

 .portfolio-dots span {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: #ccc;
     cursor: pointer;
     transition: all 0.3s ease;
     flex-shrink: 0;
     /* Prevent dots from shrinking */
 }

 .portfolio-dots span.active {
     background-color: var(--bright-red);
     transform: scale(1.2);
 }

 /* Button link inside overlay */
 .btn-small {
     display: inline-block;
     padding: 8px 20px;
     background-color: var(--bright-red);
     color: white;
     text-decoration: none;
     border-radius: 4px;
     margin-top: 10px;
     transition: background-color 0.3s ease;
     font-size: 0.9rem;
 }

 .btn-small:hover {
     background-color: #c90000;
 }

 /* Mobile responsive */
 @media (max-width: 768px) {
     .portfolio-slider {
         padding: 0 50px;
     }

     .portfolio-card {
         flex: 0 0 100%;
         padding: 0 10px;
     }
    

     .portfolio-track {
         width: 100%;
         /* Changed from 400% to match single card display */
     }

     .portfolio p {
        font-size: 0.75rem;
     }

     .portfolio-img {
         width: 100%;
         height: 220px;
         object-fit: fill;
     }

     .slider-arrow {
         width: 35px;
         height: 35px;
     }
 }

 /* Metrics Section */
 .metrics-section {
     padding: 80px 20px;
     background: var(--deep-blue);
     position: relative;
     overflow: hidden;
 }

 .metrics-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
     opacity: 0.3;
 }

 .metrics-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .metric-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: 15px;
     padding: 40px 30px;
     text-align: center;
     border: 1px solid rgba(255, 255, 255, 0.2);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .metric-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
 }

 .metric-icon {
     font-size: 3rem;
     color: #fff;
     margin-bottom: 20px;
     opacity: 0.9;
 }

 .metric-number {
     font-size: 3.5rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 10px;
     line-height: 1;
 }

 .metric-label {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.9);
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .metrics-section {
         padding: 60px 20px;
     }

     .metrics-grid {
         grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
         gap: 20px;
     }

     .metric-card {
         padding: 30px 20px;
     }

     .metric-icon {
         font-size: 2rem;
         margin-bottom: 15px;
     }

     .metric-number {
         font-size: 2.5rem;
     }

     .metric-label {
         font-size: 0.9rem;
     }
 }

 /* Case Study */
 .case-study-content {
     display: flex;
     flex-direction: column;
     gap: 60px;
 }

 .case-study-row {
     display: flex;
     align-items: center;
     gap: 40px;
 }

 .case-study-row.reverse {
     flex-direction: row-reverse;
 }

 .case-study-text,
 .case-study-images {
     flex: 1;
 }

 .case-study-text h3 {
     font-size: 1.8rem;
     color: var(--deep-blue);
     margin-bottom: 20px;
 }

 .case-study-text p {
     margin-bottom: 15px;
     color: #666;
 }

 .case-study-images {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
 }

 .case-study-images.single img {
     grid-column: 1 / -1;
 }

 .case-study-images img {
     width: 100%;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 /* Quote Process */
 .quote-process {
     background-color: var(--pale-pink);
 }

 .process-cards {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     justify-content: center;
     margin-bottom: 50px;
 }

 .process-card {
     background-color: var(--clean-white);
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     width: calc(33.333% - 20px);
     min-width: 300px;
     transition: all 0.3s ease;
     position: relative;
 }

 .process-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .process-card::before {
     content: attr(data-step);
     position: absolute;
     top: -15px;
     left: 20px;
     width: 30px;
     height: 30px;
     background-color: var(--bright-red);
     color: var(--clean-white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
 }

 .process-card h3 {
     font-size: 1.3rem;
     color: var(--deep-blue);
     margin-bottom: 15px;
 }

 .process-card p {
     color: #666;
 }

 /* Technologies */
 .tech-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 20px;
 }

 .tech-item {
     background-color: var(--clean-white);
     border-radius: 8px;
     padding: 20px;
     text-align: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     min-height: 150px;
 }

 .tech-item:hover {
     transform: translateY(-10px) rotate(5deg);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .tech-icon {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: var(--deep-blue);
 }

 .tech-name {
     font-weight: 500;
     color: var(--deep-blue);
 }

 /* About Us */
 .about-content {
     display: flex;
     align-items: center;
     gap: 50px;
     margin-bottom: 60px;
 }

 .about-image {
     flex: 1;
 }

 .about-image img {
     width: 100%;
     height: 320px;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     object-fit: cover;
     transition: all 0.3s ease;
 }

 /* Tablets (medium screens) */
 @media (max-width: 992px) {
     .about-image img {
         height: 260px;
         /* slightly smaller */
         border-radius: 10px;
     }
 }

 /* Mobile phones (small screens) */
 @media (max-width: 600px) {
     .about-image img {
         height: auto;
         /* remove fixed height */
         aspect-ratio: 1 / 1;
         /* keeps square look */
         width: 90%;
         /* adds breathing space */
         margin: 0 auto;
         display: block;
     }
 }


 .about-text {
     flex: 1;
 }

 .about-text h2 {
     font-size: 2rem;
     color: var(--deep-blue);
     margin-bottom: 20px;
 }

 .about-text p {
     margin-bottom: 20px;
     color: #666;
 }

 .parent-company {
     display: flex;
     align-items: center;
     gap: 30px;
     margin-bottom: 60px;
     padding: 30px;
     background-color: var(--pale-pink);
     border-radius: 8px;
 }

 .parent-logo {
     flex: 0 0 150px;
 }

 .parent-logo img {
     width: 100%;
 }

 .parent-text {
     flex: 1;
 }

 .parent-text h3 {
     font-size: 1.5rem;
     color: var(--deep-blue);
     margin-bottom: 15px;
 }

 .about-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .about-item {
     text-align: center;
     padding: 30px 20px;
     background-color: var(--clean-white);
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
 }

 .about-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .about-item h3 {
     font-size: 1.3rem;
     color: var(--deep-blue);
     margin-bottom: 15px;
 }

 .about-item p {
     color: #666;
     margin-bottom: 20px;
 }


 .Testimonials img {
     width: 400px;
     height: 400px;
     border-radius: 50%;
     object-fit: fill;

 }

 .Testimonials h2 {
     padding-top: 20px;

 }

 /* FAQs */
 .faq {
     background: linear-gradient(rgba(0, 44, 84, 0.8), rgba(0, 44, 84, 0.8)),
         url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     color: var(--clean-white);
     padding: 80px 20px;
 }

 .faq-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq .section-title h2 {
     color: #FDF6F6;
 }

 .faq .section-title p {
     color: #FDF6F6;
 }

 .faq-item {
     margin-bottom: 15px;
     border-radius: 8px;
     overflow: hidden;
     background-color: rgba(255, 255, 255, 0.05);
 }

 .faq-question {
     background-color: rgba(255, 255, 255, 0.1);
     padding: 20px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background-color 0.3s ease;
     user-select: none;
 }

 .faq-question:hover {
     background-color: rgba(255, 255, 255, 0.15);
 }

 .faq-question h3 {
     font-size: 1.1rem;
     font-weight: 500;
     margin: 0;
     padding-right: 20px;
     flex: 1;
 }

 /* Icon styling and animation */
 .faq-question i {
     transition: transform 0.4s ease;
     font-size: 1rem;
     min-width: 20px;
     text-align: center;
     flex-shrink: 0;
 }

 /* Smooth animation for answer */
 .faq-answer {
     background-color: rgba(255, 255, 255, 0.05);
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
     padding: 0 20px;
 }

 .faq-answer.active {
     max-height: 500px;
     padding: 20px;
 }

 .faq-answer p {
     margin: 0;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.9);
     opacity: 0;
     transform: translateY(-10px);
     transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
 }

 .faq-answer.active p {
     opacity: 1;
     transform: translateY(0);
 }

 /* Mobile responsiveness */
 @media (max-width: 768px) {
     .faq {
         padding: 60px 15px;
     }

     .faq-question {
         padding: 15px;
     }

     .faq-question h3 {
         font-size: 1rem;
         padding-right: 15px;
     }

     .faq-answer.active {
         padding: 15px;
         max-height: 600px;
     }
 }

 /* Team Carousel Section */
 #team {
     padding: 80px 0;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 }

 .team-carousel {
     position: relative;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 60px;
 }

 .carousel-container {
     overflow: hidden;
     border-radius: 20px;
     position: relative;
 }

 .carousel-track {
     display: flex;
     transition: transform 0.5s ease-in-out;
     gap: 30px;
 }

 .team-member {
     min-width: 350px;
     max-width: 350px;
     width: 350px;
     background: var(--clean-white);
     border-radius: 50px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     flex-shrink: 0;
     box-sizing: border-box;
 }

 .team-member:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 .member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%; /* Adjust the second value to control vertical positioning */
    transition: transform 0.3s ease;
}

 .team-member:hover .member-image img {
     transform: scale(1.1);
 }

 .member-info {
     padding: 25px;
     text-align: center;
 }

 .member-info h3 {
     font-size: 1.4rem;
     color: var(--deep-blue);
     margin-bottom: 8px;
     font-weight: 600;
 }

 .role {
     font-size: 1rem;
     color: var(--bright-red);
     font-weight: 600;
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .skills {
     font-size: 0.9rem;
     color: #666;
     line-height: 1.4;
     margin: 0;
 }

 /* Carousel Navigation */
 .carousel-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, var(--deep-blue), #001a33);
     border: none;
     border-radius: 50%;
     color: var(--clean-white);
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 10;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(0, 44, 84, 0.3);
 }

 .carousel-btn:hover {
     background: linear-gradient(135deg, var(--bright-red), #a00015);
     transform: translateY(-50%) scale(1.1);
 }

 .prev-btn {
     left: 0;
 }

 .next-btn {
     right: 0;
 }

 /* Carousel Dots */
 .carousel-dots {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 30px;
 }

 .dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: #ccc;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .dot.active {
     background: var(--bright-red);
     transform: scale(1.2);
 }

 .dot:hover {
     background: var(--deep-blue);
 }

 /* Mobile Responsive Design */
 @media (max-width: 768px) {
     #team {
         padding: 60px 0;
     }

     .team-carousel {
         padding: 0 50px;
     }

     .carousel-track {
         gap: 20px;
     }

     .team-member {
         min-width: calc(100% - 0px);
         max-width: calc(100% - 0px);
     }

     .member-image {
         height: 200px;
     }

     .member-info {
         padding: 10px 15px;
     }

     .member-info h3 {
         font-size: 1.3rem;
     }

     .role {
         font-size: 0.95rem;
     }

     .skills {
         font-size: 0.85rem;
     }

     .carousel-btn {
         width: 45px;
         height: 45px;
         font-size: 1rem;
     }

     .prev-btn {
         left: 5px;
     }

     .next-btn {
         right: 5px;
     }
 }

 @media (max-width: 480px) {
     #team {
         padding: 50px 0;
     }

     .team-carousel {
         padding: 0 45px;
     }

     .carousel-track {
         gap: 15px;
     }

     .team-member {
         min-width: 100%;
         max-width: 100%;
         border-radius: 30px;
     }

     .member-image {
         height: 180px;
     }

     .member-info {
         padding: 18px 15px;
     }

     .member-info h3 {
         font-size: 1.2rem;
         margin-bottom: 6px;
     }

     .role {
         font-size: 0.85rem;
         margin-bottom: 8px;
     }

     .skills {
         font-size: 0.8rem;
         line-height: 1.4;
     }

     .carousel-btn {
         width: 40px;
         height: 40px;
         font-size: 0.9rem;
     }

     .prev-btn {
         left: 2px;
     }

     .next-btn {
         right: 2px;
     }

     .carousel-dots {
         margin-top: 25px;
         gap: 8px;
     }

     .dot {
         width: 10px;
         height: 10px;
     }
 }

 /* Contact */
 .contact-content {
     display: flex;
     gap: 50px;
 }

 .contact-form {
     flex: 1;
 }

 #contact {
     color: var(--deep-blue);
 }


 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
     color: var(--deep-blue);
 }

 .form-control {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-family: var(--font-primary);
     font-size: 1rem;
     transition: border 0.3s ease;
 }

 .form-control:focus {
     outline: none;
     border-color: var(--deep-blue);
 }

 textarea.form-control {
     min-height: 150px;
     resize: vertical;
 }

 .contact-map {
     flex: 1;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .contact-map iframe {
     width: 100%;
     height: 100%;
     min-height: 400px;
     border: none;
 }

 /* Footer */
 footer {
     background-color: var(--deep-blue);
     color: var(--clean-white);
     padding: 70px 0 20px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 40px;
     margin-bottom: 50px;
 }

 .footer-col h3 {
     font-size: 1.3rem;
     margin-bottom: 25px;
     position: relative;
 }

 .footer-col h3::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 40px;
     height: 2px;
     background-color: var(--bright-red);
 }

 .footer-col p {
     margin-bottom: 20px;
     color: #ccc;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #ccc;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--bright-red);
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background-color: var(--bright-red);
     transform: translateY(-5px);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: #ccc;
     font-size: 0.9rem;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .services-grid {
         grid-template-columns: 1fr;
     }

     .tech-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .footer-content {
         grid-template-columns: repeat(2, 1fr);
     }

     .portfolio-card {
         flex: 0 0 50%;
     }

     .process-card {
         width: calc(50% - 15px);
     }

     .about-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
     .hero-content {
         flex-direction: column;
     }

     .hero-card {
         flex: 0 0 auto;
         width: 100%;
         max-width: 400px;
     }

     .case-study-row,
     .case-study-row.reverse {
         flex-direction: column;
     }

     .contact-content {
         flex-direction: column;
     }

     .about-content {
         flex-direction: column;
     }

     .parent-company {
         flex-direction: column;
         text-align: center;
     }

     .team-slide {
         flex-direction: column;
         align-items: center;
     }

     .process-card {
         width: 100%;
     }

     .portfolio-card {
         flex: 0 0 100%;
     }

     nav ul {
         display: none;
     }

     .mobile-menu-btn {
         display: block;
     }
 }

 @media (max-width: 576px) {
     .tech-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .footer-content {
         grid-template-columns: 1fr;
     }

     .section-title h2 {
         font-size: 2rem;
     }
 }

 @media (max-width: 768px) {}

 @media (max-width: 768px) {

     /* Mobile Menu Button */
     .mobile-menu-button {
         display: block;
         background: none;
         border: none;
         font-size: 1.5rem;
         color: var(--deep-blue);
         cursor: pointer;
         z-index: 1001;
     }

     /* Navigation Container */
     nav {
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background-color: var(--clean-white);
         box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
         opacity: 0;
         visibility: hidden;
         transform: translateY(-10px);
         transition: all 0.3s ease;
     }

     header.mobile-menu-active nav {
         opacity: 1;
         visibility: visible;
         transform: translateY(0);
     }

     /* Navigation List */
     nav ul {
         display: flex !important;
         flex-direction: column;
         gap: 0;
         padding: 20px;
     }

     nav ul li {
         width: 100%;
         border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     }

     nav ul li:last-child {
         border-bottom: none;
     }

     nav ul li a {
         display: block;
         padding: 15px 0;
     }

     /* Dropdown Parent Link */
     .dropdown>a {
         display: flex;
         justify-content: space-between;
         align-items: center;
     }

     /* Dropdown Menu - Simplified */
     .dropdown-menu {
         position: static !important;
         display: none;
         box-shadow: none;
         background-color: transparent;
         padding: 0;
         margin-left: 15px;
         opacity: 1 !important;
         visibility: visible !important;
         transform: none !important;
         transition: none !important;
         max-height: none !important;
         overflow: visible !important;
     }

     /* Show dropdown when active */
     .dropdown.active .dropdown-menu {
         display: block;
     }

     /* Dropdown Links */
     .dropdown-menu a {
         padding: 10px 15px;
         border-left: 2px solid var(--bright-red);
         font-size: 0.9rem;
     }

     /* Chevron Icon Rotation */
     .dropdown>a .fa-chevron-down {
         transition: transform 0.3s ease;
     }

     .dropdown.active>a .fa-chevron-down {
         transform: rotate(180deg);
     }

     /* Hide CTA Button on Mobile */
     .btn {
         display: none;
     }
 }

 .floating-chat-widget {
     position: fixed;
     bottom: 20px;
     right: 20px;
     z-index: 1000;
 }

 /* Pricing Section */
 .pricing {
     background-color: var(--pale-pink);
 }

 .pricing-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .pricing-card {
     background-color: var(--clean-white);
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     position: relative;
     text-align: center;
     border: 2px solid transparent;
     display: flex;
     flex-direction: column;
     height: auto;
 }

 .pricing-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 .pricing-card.featured {
     border-color: var(--bright-red);
     transform: scale(1.05);
 }

 .pricing-card.featured:hover {
     transform: scale(1.05) translateY(-10px);
 }

 .popular-badge {
     position: absolute;
     top: -10px;
     left: 50%;
     transform: translateX(-50%);
     background-color: var(--bright-red);
     color: var(--clean-white);
     padding: 8px 20px;
     border-radius: 20px;
     font-size: 0.6rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .pricing-header {
     margin-bottom: 30px;
     padding-bottom: 20px;
     border-bottom: 1px solid #eee;
 }

 .pricing-header h3 {
     font-size: 1.5rem;
     color: var(--deep-blue);
     margin-bottom: 15px;
     font-weight: 600;
 }

 .price {
     display: flex;
     align-items: baseline;
     justify-content: center;
     gap: 5px;
     margin-bottom: 10px;
 }

 .current-price {
    height: inherit;
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--clean-white);
     line-height: 1;
     background-color: var(--bright-red);
     width: 100%;
     padding: 10px;
     border-radius: 20px;
 }

 .period {
     font-size: 1rem;
     color: #666;
     font-weight: 500;
 }

 .original-price {
     font-size: 1.1rem;
     color: #999;
     text-decoration: line-through;
     font-weight: 500;
 }

 .pricing-features {
     margin-bottom: 30px;
     flex-grow: 1;
     /* Push the button to the bottom */
 }

 .pricing-features ul {
     list-style: none;
     padding: 0;
 }

 .pricing-features li {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 0;
     color: #555;
     font-weight: 500;
     border-bottom: 1px solid #f5f5f5;
 }

 .pricing-features li:last-child {
     border-bottom: none;
 }

 .pricing-features i {
     color: var(--bright-red);
     font-size: 0.9rem;
     width: 20px;
 }

 .pricing-footer {
     margin-top: auto;
     padding-top: 20px;
     /* Added spacing */
 }

 /* FIXED BUTTON STYLES */
 .pricing-btn {
     display: block;
     margin: 0 auto;
     padding: 12px 30px;
     font-size: 1.1rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     background: linear-gradient(135deg, var(--bright-red), #a00015);
     color: white;
     border: none;
     border-radius: 8px;
     transition: all 0.3s ease;
     width: auto;
     min-width: 160px;
     max-width: calc(100% - 60px);
     box-sizing: border-box;
     text-decoration: none;


 }




 .pricing-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(197, 0, 26, 0.3);
 }

 .pricing-card.featured .pricing-btn {
     background: linear-gradient(135deg, var(--deep-blue), #001a33);
 }

 .pricing-card.featured .pricing-btn:hover {
     box-shadow: 0 10px 20px rgba(0, 44, 84, 0.3);
 }

 /* Responsive Design for Pricing */
 @media (max-width: 1200px) {
     .pricing-cards {
         grid-template-columns: repeat(2, 1fr);
     }

     .pricing-card.featured {
         transform: scale(1.02);
     }

     .pricing-card.featured:hover {
         transform: scale(1.02) translateY(-10px);
     }
 }

 /* end @media 1200px */

 @media (max-width: 768px) {
     .pricing-cards {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .pricing-card {
         padding: 25px 20px 90px;
     }

     .pricing-card.featured {
         transform: none;
         order: -1;
     }

     .pricing-card.featured:hover {
         transform: translateY(-10px);
     }

     .current-price {
         font-size: 1.5rem;
     }
 }

 /* Chat Popup Notification */
 .chat-popup-notification {
     position: fixed;
     bottom: 90px;
     /* Position above chat icon */
     right: 20px;
     z-index: 1001;
     display: none;
 }

 .chat-popup-notification.active {
     display: block;
     animation: bounceIn 0.5s ease;
 }

 .popup-bubble {
     background: #007bff;
     color: white;
     padding: 12px 40px 12px 16px;
     border-radius: 10px;
     position: relative;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     font-size: 14px;
     max-width: 180px;
 }

 .popup-arrow {
     position: absolute;
     bottom: -8px;
     right: 20px;
     width: 0;
     height: 0;
     border-left: 8px solid transparent;
     border-right: 8px solid transparent;
     border-top: 8px solid #007bff;
 }

 .popup-close {
     position: absolute;
     top: 6px;
     right: 8px;
     background: none;
     border: none;
     color: white;
     font-size: 16px;
     cursor: pointer;
     line-height: 1;
     padding: 0;
     width: 20px;
     height: 20px;
 }

 @keyframes bounceIn {
     0% {
         opacity: 0;
         transform: translateY(20px);
     }

     60% {
         opacity: 1;
         transform: translateY(-5px);
     }

     100% {
         transform: translateY(0);
     }
 }