      :root {
        --navy-blue: #1a2847;
        --gold: #e8a028;
        --sky-blue: #7fc8d4;
        --white: #ffffff;
        --light-gray: #f8f9fa;
        --dark-gray: #2c3e50;
      }
      
      * {
        font-family: 'Roboto', sans-serif;
      }
      
      h1, h2, h3, h4, h5, h6 {
        font-family: 'Rajdhani', sans-serif;
      }
      
      body {
        overflow-x: hidden;
      }
      
      /* New Navbar Styles */
      .top-header {
        background: var(--navy-blue);
        padding: 10px 0;
        border-bottom: 3px solid var(--gold);
      }
      
      .top-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--white);
        font-size: 14px;
      }
      
      .top-header-left i {
        color: var(--gold);
        margin-right: 8px;
      }
      
      .top-header-right a {
        color: var(--white);
        margin-left: 20px;
        text-decoration: none;
        transition: color 0.3s;
      }
      
      .top-header-right a:hover {
        color: var(--gold);
      }
      
      .main-navbar {
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 0;
      }
      
      .navbar-brand-new {
        display: flex;
        align-items: center;
        padding: 15px 0;
      }
      
      .navbar-brand-new img {
        height: 60px;
        margin-right: 15px;
      }
      
      .brand-text h3 {
        margin: 0;
        color: var(--navy-blue);
        font-size: 24px;
        font-weight: 700;
        line-height: 1.2;
      }
      
      .brand-text span {
        color: var(--gold);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
      }
      
      .nav-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
      }
      
      .nav-menu li {
        position: relative;
      }
      
      .nav-menu li a {
        display: block;
        padding: 28px 20px;
        color: var(--navy-blue);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s;
        position: relative;
      }
      
      .nav-menu li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: var(--gold);
        transition: width 0.3s;
      }
      
      .nav-menu li a:hover::after,
      .nav-menu li a.active::after {
        width: 80%;
      }
      
      .nav-menu li a:hover {
        color: var(--gold);
      }
      
      .nav-cta-btn {
        background: linear-gradient(135deg, var(--navy-blue), var(--dark-gray));
        color: var(--white) !important;
        padding: 12px 30px !important;
        border-radius: 30px;
        margin-left: 20px;
        border: 2px solid var(--gold);
      }
      
      .nav-cta-btn:hover {
        background: var(--gold);
        color: var(--navy-blue) !important;
        transform: translateY(-2px);
      }
      
      .nav-cta-btn::after {
        display: none;
      }
      
      /* Hero Section - Completely New Design */
      .hero-new {
        background: linear-gradient(135deg, #0f1922 0%, var(--navy-blue) 50%, #2d3f5f 100%);
        position: relative;
        padding: 100px 0;
        overflow: hidden;
      }
      
      .hero-new::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"><circle cx="50" cy="50" r="2" fill="rgba(232,160,40,0.1)"/></svg>');
        opacity: 0.3;
      }
      
      .hero-shield {
        position: absolute;
        right: -100px;
        top: 50%;
        transform: translateY(-50%);
        width: 600px;
        height: 600px;
        border: 3px solid var(--gold);
        border-radius: 50%;
        opacity: 0.1;
      }
      
      .hero-content-new {
        position: relative;
        z-index: 2;
      }
      
      .hero-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(232,160,40,0.2);
        border: 2px solid var(--gold);
        padding: 10px 25px;
        border-radius: 50px;
        color: var(--white);
        font-weight: 600;
        margin-bottom: 25px;
      }
      
      .hero-badge i {
        color: var(--gold);
        margin-right: 10px;
      }
      
      .hero-title {
        font-size: 56px;
        font-weight: 700;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 25px;
      }
      
      .hero-title .highlight {
        color: var(--gold);
        position: relative;
      }
      
      .hero-description {
        font-size: 20px;
        color: rgba(255,255,255,0.85);
        line-height: 1.8;
        margin-bottom: 40px;
      }
      
      .hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
      }
      
      .btn-hero-primary {
        background: var(--gold);
        color: var(--navy-blue);
        padding: 18px 40px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s;
        border: 2px solid var(--gold);
      }
      
      .btn-hero-primary:hover {
        background: transparent;
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(232,160,40,0.3);
      }
      
      .btn-hero-secondary {
        background: transparent;
        color: var(--white);
        padding: 18px 40px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        border: 2px solid var(--white);
        transition: all 0.3s;
      }
      
      .btn-hero-secondary:hover {
        background: var(--white);
        color: var(--navy-blue);
        transform: translateY(-3px);
      }
      
      .hero-stats {
        display: flex;
        gap: 40px;
        margin-top: 50px;
        flex-wrap: wrap;
      }
      
      .stat-item {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      
      .stat-icon {
        width: 60px;
        height: 60px;
        background: rgba(232,160,40,0.2);
        border: 2px solid var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 24px;
      }
      
      .stat-content h4 {
        color: var(--white);
        font-size: 28px;
        font-weight: 700;
        margin: 0;
      }
      
      .stat-content p {
        color: rgba(255,255,255,0.7);
        margin: 0;
        font-size: 14px;
      }
      
      /* About Section - New Design */
      .about-new {
        padding: 100px 0;
        background: var(--light-gray);
        position: relative;
      }
      
      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }
      
      .section-subtitle {
        color: var(--gold);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 14px;
        margin-bottom: 15px;
      }
      
      .section-title {
        color: var(--navy-blue);
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
      }
      
      .section-description {
        color: #666;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
      }
      
      .about-image-wrapper {
        position: relative;
      }
      
      .about-image-wrapper img {
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
      }
      
      .about-badge {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background: var(--navy-blue);
        color: var(--white);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        border: 3px solid var(--gold);
      }
      
      .about-badge h3 {
        font-size: 36px;
        margin: 0;
        color: var(--gold);
      }
      
      .about-badge p {
        margin: 0;
        font-size: 14px;
      }
      
      .feature-box-new {
        background: var(--white);
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 25px;
        border-left: 5px solid var(--gold);
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s;
      }
      
      .feature-box-new:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      }
      
      .feature-box-new i {
        font-size: 36px;
        color: var(--gold);
        margin-bottom: 15px;
      }
      
      .feature-box-new h5 {
        color: var(--navy-blue);
        font-weight: 700;
        margin-bottom: 10px;
      }
      
      .feature-box-new p {
        color: #666;
        margin: 0;
        font-size: 14px;
      }
      
      /* Services Section - New Grid Design */
      .services-new {
        padding: 100px 0;
        background: var(--white);
      }
      
      .service-card-new {
        background: var(--white);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        transition: all 0.3s;
        border: 2px solid transparent;
        height: 100%;
      }
      
      .service-card-new:hover {
        transform: translateY(-10px);
        border-color: var(--gold);
        box-shadow: 0 20px 60px rgba(232,160,40,0.2);
      }
      
      .service-icon-new {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--navy-blue), var(--dark-gray));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        position: relative;
      }
      
      .service-icon-new::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 3px solid var(--gold);
        border-radius: 20px;
        top: 10px;
        left: 10px;
        z-index: -1;
      }
      
      .service-icon-new i {
        font-size: 36px;
        color: var(--gold);
      }
      
      .service-card-new h4 {
        color: var(--navy-blue);
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 22px;
      }
      
      .service-card-new p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
      }
      
      .service-features {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .service-features li {
        padding: 10px 0;
        color: #555;
        border-bottom: 1px solid #eee;
      }
      
      .service-features li:last-child {
        border-bottom: none;
      }
      
      .service-features li i {
        color: var(--gold);
        margin-right: 10px;
        font-size: 18px;
      }
      
      /* CTA Section - New Design */
      .cta-new {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-gray) 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }
      
      .cta-new::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
        opacity: 0.1;
      }
      
      .cta-content {
        position: relative;
        z-index: 2;
      }
      
      .cta-new h2 {
        color: var(--white);
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
      }
      
      .cta-new p {
        color: rgba(255,255,255,0.85);
        font-size: 20px;
        margin-bottom: 0;
      }
      
      .btn-cta-large {
        background: var(--gold);
        color: var(--navy-blue);
        padding: 20px 50px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 18px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        transition: all 0.3s;
        border: 3px solid var(--gold);
      }
      
      .btn-cta-large:hover {
        background: transparent;
        color: var(--white);
        transform: scale(1.05);
      }
      
      /* Testimonials - New Card Design */
      .testimonials-new {
        padding: 100px 0;
        background: var(--light-gray);
      }
      
      .testimonial-card-new {
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        position: relative;
        margin: 15px;
      }
      
      .quote-icon {
        font-size: 60px;
        color: var(--gold);
        opacity: 0.3;
        position: absolute;
        top: 20px;
        left: 20px;
      }
      
      .testimonial-content {
        position: relative;
        z-index: 2;
      }
      
      .testimonial-text {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
        font-style: italic;
      }
      
      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-top: 25px;
        border-top: 2px solid var(--gold);
      }
      
      .author-avatar {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--navy-blue), var(--gold));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 24px;
        font-weight: 700;
      }
      
      .author-info h5 {
        margin: 0;
        color: var(--navy-blue);
        font-weight: 700;
      }
      
      .author-info span {
        color: #888;
        font-size: 14px;
      }
      
      /* Footer - Completely New Design */
      .footer-new {
        background: var(--navy-blue);
        padding: 80px 0 0 0;
        position: relative;
      }
      
      .footer-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--gold), var(--sky-blue), var(--gold));
      }
      
      .footer-logo-section {
        margin-bottom: 40px;
      }
      
      .footer-logo-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
      }
      
      .footer-logo-wrapper img {
        height: 70px;
        margin-right: 20px;
      }
      
      .footer-brand-text h3 {
        color: var(--white);
        font-size: 28px;
        margin: 0;
        font-weight: 700;
      }
      
      .footer-brand-text span {
        color: var(--gold);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
      }
      
      .footer-description {
        color: rgba(255,255,255,0.7);
        line-height: 1.8;
        max-width: 350px;
      }
      
      .footer-social {
        display: flex;
        gap: 15px;
        margin-top: 25px;
      }
      
      .social-icon {
        width: 45px;
        height: 45px;
        background: rgba(232,160,40,0.1);
        border: 2px solid var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        text-decoration: none;
        transition: all 0.3s;
      }
      
      .social-icon:hover {
        background: var(--gold);
        color: var(--navy-blue);
        transform: translateY(-5px);
      }
      
      .footer-column h4 {
        color: var(--white);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
      }
      
      .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--gold);
      }
      
      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .footer-links li {
        margin-bottom: 12px;
      }
      
      .footer-links li a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: all 0.3s;
        display: flex;
        align-items: center;
      }
      
      .footer-links li a:hover {
        color: var(--gold);
        padding-left: 10px;
      }
      
      .footer-links li a i {
        margin-right: 10px;
        color: var(--gold);
      }
      
      .footer-contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        color: rgba(255,255,255,0.7);
      }
      
      .footer-contact-item i {
        color: var(--gold);
        font-size: 20px;
        margin-top: 5px;
      }
      
      .footer-bottom {
        background: rgba(0,0,0,0.2);
        padding: 25px 0;
        margin-top: 60px;
        text-align: center;
        color: rgba(255,255,255,0.6);
      }
      
      .footer-bottom a {
        color: var(--gold);
        text-decoration: none;
      }
      
      .footer-bottom a:hover {
        text-decoration: underline;
      }
      
      /* Back to Top Button */
      .back-to-top-new {
        position: fixed;
        bottom: 40px;
        right: 40px;
        width: 55px;
        height: 55px;
        background: var(--gold);
        color: var(--navy-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 24px;
        box-shadow: 0 5px 20px rgba(232,160,40,0.4);
        transition: all 0.3s;
        z-index: 9999;
      }
      
      .back-to-top-new:hover {
        background: var(--navy-blue);
        color: var(--gold);
        transform: translateY(-5px);
      }
      
      /* Mobile Responsive */
      @media (max-width: 991px) {
        .nav-menu {
          flex-direction: column;
          background: var(--white);
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          box-shadow: 0 10px 30px rgba(0,0,0,0.1);
          display: none;
        }
        
        .nav-menu.active {
          display: flex;
        }
        
        .nav-menu li a {
          padding: 15px 20px;
        }
        
        .hero-title {
          font-size: 36px;
        }
        
        .hero-stats {
          flex-direction: column;
          gap: 20px;
        }
        
        .section-title {
          font-size: 32px;
        }
      }
      
      .mobile-toggle {
        display: none;
        background: var(--navy-blue);
        color: var(--white);
        border: none;
        padding: 10px 15px;
        font-size: 24px;
        cursor: pointer;
      }
      
      @media (max-width: 991px) {
        .mobile-toggle {
          display: block;
        }
      }