        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --brand-orange: #ed8321;
      --brand-orange-light: #fd7e14;
      --brand-orange-dark: #d67416;
      --brand-blue: #0d9fe8;
      --brand-blue-dark: #0056b3;
      --brand-blue-light: #3ba7f0;
      --brand-orange-text: #d67416;
      --brand-blue-text: #0466c8;
      --text-primary: #212529;
      --text-secondary: #2d3339;
      --text-muted: #6c757d;

      --blue-card-icon: #00aaff;
      --orange-card-icon: #ff8800;

      /* Dark theme colors for mixed sections */
      --dark-bg-primary: #0f1419;
      --dark-bg-secondary: #1a2332;
      --dark-bg-tertiary: #252b3d;
      --dark-text-primary: #ffffff;
      --dark-text-secondary: rgba(255, 255, 255, 0.85);
      --dark-text-muted: rgba(255, 255, 255, 0.65);
        }

        body {
            font-family: 'Manrope', sans-serif;
            line-height: 1.6;
            color: #212529;
            background: #ffffff;
            overflow-x: hidden;
        }

        a {
            color: var(--brand-blue-text);
        }

        a:hover,
        a:focus {
            color: var(--brand-blue-dark);
            text-decoration: underline;
        }

        /* Enhanced Touch Targets for Mobile */
        @media (pointer: coarse) {

            .nav-menu a,
            .mobile-nav-menu a,
            .cta-button {
                min-width: 44px;
                display: flex;
                align-items: center;
            }
        }

        /* Text Selection Colors for Brand Consistency */
        ::selection {
            background: var(--brand-orange);
            color: white;
        }

        ::-moz-selection {
            background: var(--brand-orange);
            color: white;
        }

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

  @media (max-width: 480px) {

      .container {
          padding: 0 15px;
      }}
      @media (max-width: 767px) {
      .container {
          padding: 0 15px;
      }}
@media (max-width:1200px) {
      .container {
          max-width: 100vw;
      }
  }
        /* Enhanced Navigation Styles */
        .navbar {
            background: #ffffff;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 8px 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 8px;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .logo-icon svg {
            width: 35px;
            height: 35px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--brand-blue-dark);
            letter-spacing: -0.5px;
        }

        /* Desktop Navigation Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            margin: 0;
            padding: 0;
        }

        .nav-menu>li {
            position: relative;
        }

        .nav-menu a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            padding: 12px 20px;
            transition: all 0.3s ease;
            border-radius: 6px;
            position: relative;
        }

        .nav-menu a:hover,
        .nav-menu a:focus {
            color: var(--brand-blue-dark);
            background: rgba(0, 86, 179, 0.05);
        }

        /* Dropdown Arrow */
        .dropdown-arrow {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .nav-menu li:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Standard Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            list-style: none;
        }

        .nav-menu li:hover .dropdown-menu,
        .nav-menu li:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            border-bottom: 1px solid #f8f9fa;
        }

        .dropdown-menu li:last-child {
            border-bottom: none;
        }

        .dropdown-menu a {
            padding: 12px 20px;
            color: var(--text-secondary);
            font-weight: 400;
            border-radius: 0;
        }

        .dropdown-menu a:hover,
        .dropdown-menu a:focus {
            color: var(--brand-blue-dark);
        }

        /* Mega Menu for Services */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: -200px;
            background: #ffffff;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            width: 800px;
            padding: 40px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .nav-menu li:hover .mega-menu,
        .nav-menu li:focus-within .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .mega-menu-section h3 {
            font-size: 16px;
            font-weight: 600;
            color: #212529;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--brand-blue-dark);
        }

        .mega-menu-section ul {
            list-style: none;
        }

        .mega-menu-section li {
            margin-bottom: 12px;
        }

        .mega-menu-section a {
            color: #495057;
            text-decoration: none;
            font-weight: 400;
            display: flex;
            align-items: center;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .mega-menu-section a:hover,
        .mega-menu-section a:focus {
            color: var(--brand-blue-dark);
            background: none;
        }

        .mega-menu-section .service-icon {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            color: var(--brand-orange-text);
        }

        /* Navigation Right Section */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .cta-button {
            background: var(--brand-orange-text);
            color: white !important;
            border: none;
            padding: 12px 24px !important;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            line-height: 1;
        }

        .cta-button:hover,
        .cta-button:focus {
            background: #e8640f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 116, 22, 0.3);
            outline: 2px solid transparent;
            text-decoration: none;
            color: white;
        }

        /* Mobile Menu Styles */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 8px;
            border: none;
            background: none;
            border-radius: 4px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: 0.3s;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Navigation Menu */
        .mobile-nav {
            position: fixed;
            top: 54px;
            left: 0;
            right: 0;
            bottom: 0;
            background: #ffffff;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: all 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 20px;
        }

        .mobile-nav-menu>li {
            border-bottom: 1px solid #e9ecef;
        }

        .mobile-nav-menu>li:last-child {
            border-bottom: none;
        }

        .mobile-nav-menu a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
        }

        .mobile-nav-menu .mobile-dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .mobile-nav-menu .mobile-dropdown-arrow.rotated {
            transform: rotate(180deg);
        }

        /* Mobile Submenu */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f8f9fa;
            margin: 0 -20px;
            padding: 0 20px;
        }

        .mobile-submenu.active {
            max-height: 500px;
        }

        .mobile-submenu ul {
            list-style: none;
            padding: 10px 0;
        }

        .mobile-submenu a {
            padding: 10px 20px;
            color: #495057;
            font-weight: 400;
            border-bottom: 1px solid #e9ecef;
        }

        .mobile-submenu a:hover {
            color: var(--text-secondary);
            background: rgba(0, 86, 179, 0.05);
        }

        /* Mobile Mega Menu */
        .mobile-mega-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
            margin: 0 -20px;
            padding: 0 20px;
        }

        .mobile-mega-menu.active {
            max-height: 1000px;
        }

        .mobile-mega-section {
            padding: 15px 0;
            border-bottom: 1px solid #dee2e6;
        }

        .mobile-mega-section:last-child {
            border-bottom: none;
        }

        .mobile-mega-section h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--brand-blue-dark);
            margin-bottom: 10px;
        }

        .mobile-mega-section ul {
            list-style: none;
        }

        .mobile-mega-section a {
            padding: 8px 0;
            color: var(--text-secondary);
            font-weight: 400;
            display: flex;
            align-items: center;
        }

        .mobile-mega-section .service-icon {
            margin-right: 10px;
            color: var(--brand-orange-text);
        }

        /* Responsive Design */
        @media (min-width: 1200px) {
            .mega-menu {
                width: 900px;
                left: -250px;
            }
        }

        @media (min-width: 992px) and (max-width: 1199px) {
            .mega-menu {
                width: 700px;
                left: -150px;
            }

            .mega-menu-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {

            .nav-menu,
            .nav-right {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }
            .mobile-nav{
                top:54px;
            }
        }

        @media (max-width: 767px) {

            .nav-menu,
            .nav-right {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-submenu a {
                padding: 8px;
            }

            .mobile-mega-section {
                padding: 8px;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 15px;
            }

            .logo-text {
                font-size: 20px;
            }

            .mobile-nav-menu {
                padding: 15px;
            }

            .mobile-nav{
                top:50px;
            }
        }


        /* Footer Section Styles */
        .footer-section {
            background: radial-gradient(ellipse at top left, rgb(13 143 208 / 15%) 0%, transparent 40%),
                radial-gradient(ellipse at top right, rgb(217 111 13 / 18%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom right, rgb(131 67 6 / 15%) 0%, transparent 40%),
                linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 25%, #1a2030 50%, var(--dark-bg-secondary) 75%, var(--dark-bg-primary) 100%);
            position: relative;
            padding: 80px 0 40px;
            overflow: hidden;
        }


        /* Footer Main Content */
        .footer-main {
            position: relative;
            z-index: 2;
            margin-bottom: 60px;
        }

        /* Footer CTA Section */
        .footer-cta {
            margin-bottom: 64px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-cta-title {
            font-size: 3.5rem;
            font-weight: 400;
            color: var(--dark-text-primary);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .footer-cta-subtitle {
            font-size: 18px;
            color: var(--dark-text-secondary);
            line-height: 1.6;
        }

        .footer-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: var(--dark-text-primary);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(237, 131, 33, 0.1), transparent);
            transition: left 0.4s ease;
        }

        .footer-cta-button:hover::before {
            left: 100%;
        }

        .footer-cta-button:hover {
            background: var(--brand-orange-text);
            border-color: var(--brand-orange-text);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 116, 22, 0.3);
            text-decoration: none;
        }

        .footer-cta-button:hover i {
            transform: translateX(4px);
        }

        .footer-cta-button i {
            transition: transform 0.3s ease;
        }

        /* Footer Links Grid */
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-column-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-text-primary);
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--dark-text-secondary);
            text-decoration: none;
            font-size: 15px;
            line-height: 1.5;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--brand-orange-text);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--dark-text-primary);
            transform: translateX(4px);
            text-decoration: none;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        /* Contact Links Styling */
        .footer-contact-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact-item {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .contact-label {
            font-size: 13px;
            color: var(--dark-text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-value {
            color: var(--dark-text-secondary);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .contact-value:hover {
            color: var(--brand-orange-text);
            text-decoration: none;
        }

        /* Footer Bottom */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
        }

        .footer-copyright {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .footer-copyright p {
            color: var(--dark-text-muted);
            font-size: 14px;
            margin: 0;
        }

        .footer-legal-links {
            display: flex;
            gap: 24px;
        }

        .footer-legal-links a {
            color: var(--dark-text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-legal-links a:hover {
            color: var(--dark-text-secondary);
            text-decoration: none;
        }

        /* Social Media Links */
        .footer-social {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(237, 131, 33, 0.15), transparent);
            transition: left 0.4s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            background: rgba(237, 131, 33, 0.1);
            border-color: rgba(237, 131, 33, 0.3);
            color: var(--brand-orange-text);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(237, 131, 33, 0.2);
        }

        .social-link i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .social-link:hover i {
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (min-width: 1200px) {
            .footer-cta-title {
                font-size: 4rem;
            }

            .footer-links-grid {
                gap: 80px;
            }
        }

        @media (max-width: 1199px) {
            .footer-cta-title {
                font-size: 3rem;
            }

            .footer-links-grid {
                gap: 50px;
            }
        }

        @media (max-width: 991px) {
            .footer-section {
                padding: 60px 0 30px;
            }

            .footer-cta {
                margin-bottom: 60px;
                padding-bottom: 50px;
            }

            .footer-cta-title {
                font-size: 2.5rem;
            }

            .footer-cta-subtitle {
                font-size: 16px;
            }

            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .footer-copyright {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 767px) {
            .footer-section {
                padding: 50px 0 25px;
            }

            .footer-cta {
                margin-bottom: 50px;
                padding-bottom: 40px;
            }

            .footer-cta-title {
                font-size: 2rem;
                line-height: 1.2;
            }

            .footer-cta-subtitle {
                font-size: 15px;
            }

            .footer-cta-button {
                padding: 14px 28px;
                font-size: 15px;
            }

            .footer-column-title {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .footer-links a,
            .contact-value {
                font-size: 14px;
            }

            .footer-bottom {
                padding-top: 30px;
                gap: 25px;
            }

            .footer-copyright {
                gap: 15px;
            }

            .footer-legal-links {
                gap: 16px;
            }

            .social-link {
                width: 36px;
                height: 36px;
            }

            .social-link i {
                font-size: 14px;
            }
        }

        @media (max-width: 550px) {
            .footer-cta {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .footer-cta-title {
                font-size: 1.8rem;
            }

            .footer-cta-button {
                width: 100%;
                justify-content: center;
                max-width: 280px;
            }

            .footer-social {
                gap: 12px;
            }
        }
        footer.site-footer{
            display:none;
        }

        .cta-title, .cta-buttons, .cta-description{
            opacity: 1;
        }

/* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: #ffffff;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .cta-description {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            background: var(--brand-orange-text);
            color: white;
            border: none;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #e8640f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 116, 22, 0.3);
            text-decoration: none;
            color: white;
        }

        .cta-button-secondary {
            background: transparent;
            color: var(--text-primary) !important;
            border: 2px solid #e9ecef;
        }

        .cta-button-secondary:hover {
            border-color: var(--text-primary);
            background: transparent;
            color: var(--text-primary);
            box-shadow: none;
        }