 :root {
     --primary: #4361ee;
     --secondary: #3f37c9;
     --accent: #4cc9f0;
     --light: #f8f9fa;
     --dark: #212529;
     --success: #4bb543;
     --warning: #f0ad4e;
     --danger: #d9534f;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 body {
      background: linear-gradient(135deg, #d8d6d6ff 0%, #ffffffff 100%);
     min-height: 100vh;
     overflow-x: hidden;
 }

 .contain {
     margin: 0 auto;
     padding: 0 0px;
 }

 /* 3D Navbar */
 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 25px 0;
     position: relative;
     z-index: 100;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .logo img {
     width: 40px;
     height: 40px;
 }

 .logo h1 {
     font-size: 24px;
     font-weight: 700;
     background: linear-gradient(to right, var(--primary), var(--accent));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
 }

 .nav-links {
     display: flex;
     gap: 30px;
 }

 .nav-links a {
     text-decoration: none;
     font-weight: 500;
     position: relative;
     color: #4361ee;
     transition: all 0.3s ease;
 }

 .nav-links a:hover {
     color: var(--primary);

 }

 .nav-links a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     background: var(--primary);
     bottom: -5px;

     left: 0;
     transition: width 0.3s ease;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .auth-buttons {
     display: flex;
     gap: 15px;
 }

 .btn {
     padding: 10px 20px;
     border-radius: 30px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
     border: none;
     outline: none;
 }

 .btn-outline {
     background: transparent;
     border: 2px solid var(--primary);
     color: var(--primary);
 }

 .btn-outline:hover {
     background: var(--primary);
     color: white;
 }

 .btn-primary {
     background: linear-gradient(135deg, #0b3a7a 0%, #1f6ce0 100%);
     color: white;
 }

 .btn-primary:hover {
     background: linear-gradient(135deg, #1f5bbb, #146ce8);
     /* Slightly brighter hover */
     transform: translateY(-2px);
    
 }

 /* Hero Section */
 .hero {
     display: flex;
     justify-content: space-between;
     padding: 60px 30px;
     position: relative;
 }

 .hero-content {
     flex: 1;
     /* margin-left: 4rem; */
 }

 .hero-content h2 {
     font-size: 48px;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 20px;
     color: rgb(12, 15, 109);
 }

 .hero-content h2 span {
     background: linear-gradient(to right, #0b57c9, #103f74);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero-content p {
     font-size: 18px;
     color: #0641b7;
     margin-bottom: 30px;
     line-height: 1.6;
 }

 .hero-buttons {
     display: flex;
     gap: 20px;
 }

 .hero-buttons a {
     color: #ffffff;
     text-decoration: none
 }

 .hero-image {
     flex: 1;
     position: relative;
     height: 500px;
 }

 .floating-card {
     position: absolute;
     background: rgb(19, 12, 12);
     border-radius: 20px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     padding: 20px;
     transition: all 0.5s ease;
 }

 .card-1 {
     width: 300px;
     height: 180px;
     top: 0;
     right: 100px;
     transform: rotate(-5deg);
     background: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
     color: white;
     z-index: 3;
 }

 .card-2 {
     width: 280px;
     height: 160px;
     top: 100px;
     right: 0;
     transform: rotate(3deg);
     z-index: 2;
 }

 .card-3 {
     width: 250px;
     height: 140px;
     top: 200px;
     right: 120px;
     transform: rotate(-2deg);
     z-index: 1;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 }

 .card-content h3 {
     font-size: 18px;
     margin-bottom: 10px;
 }

 .card-content p {
     font-size: 14px;
     color: inherit;
     opacity: 0.8;
 }

 .progress-bar {
     height: 8px;
     background: rgba(255, 255, 255, 0.3);
     border-radius: 10px;
     margin-top: 15px;
     overflow: hidden;
 }

 .progress {
     height: 100%;
     background: white;
     border-radius: 10px;
     width: 65%;
 }

 .card-2 .progress-bar {
     background: rgba(0, 0, 0, 0.1);
 }

 .card-2 .progress {
     background: var(--primary);
 }

 /* Features Section */
 .features {
     padding: 80px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-title h2 {
     font-size: 36px;
     color: #164591;
     margin-bottom: 15px;
 }

 .section-title p {
     color: #777;
     max-width: 700px;
     margin: 0 auto;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .feature-card {
     background: white;
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
 }

 .feature-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
 }

 .feature-icon i {
     color: white;
     font-size: 24px;
 }

 .feature-card h3 {
     font-size: 20px;
     margin-bottom: 15px;
     color: var(--dark);
 }

 .feature-card p {
     color: #666;
     line-height: 1.6;
 }

 /* CTA Section */
 .cta {
     background-image: url(img/bg6.jpg);
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     padding: 80px 0;
     color: rgb(255, 255, 255);
     font-weight: bold;
     text-align: center;
     border-radius: 20px;
     margin: 80px 0;
     position: relative;
     overflow: hidden;
 }

 .cta::before {
     content: '';
     position: absolute;
     width: 300px;
     height: 300px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     top: -50px;
     right: -50px;
 }

 .cta::after {
     content: '';
     position: absolute;
     width: 200px;
     height: 200px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     bottom: -30px;
     left: -30px;
 }

 .cta h2 {
     font-size: 36px;
     margin-bottom: 20px;
     background: rgba(0, 0, 0, 0.276);
     color: #ffffff;
     position: relative;
     z-index: 1;
 }

 .cta p {
     max-width: 700px;
     margin: 0 auto 30px;
     opacity: 0.9;
     border-radius: 22px;
     background: rgba(0, 0, 0, 0.5);
     position: relative;
     z-index: 1;
 }

 .cta .btn>a {
     text-decoration: none;
     color: white;
 }

 .cta .btn {
     background: linear-gradient(135deg, #0b3a7a 0%, #1f6ce0 100%);
     color: white;
     font-weight: 600;
     padding: 15px 30px;
     position: relative;
     transition: all 0.3s ease;
     z-index: 1;
 }

 .cta .btn:hover {
     background: linear-gradient(135deg, #1f5bbb, #146ce8);
     /* Slightly brighter hover */
     transform: translateY(-2px);
     box-shadow: 6px 10px 15px rgba(67, 97, 238, 0.3);


 }

 /* Footer */
 .footer {
     background: var(--dark);
     color: white;
     padding: 60px 0 20px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-col h3 {
     font-size: 18px;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-col h3::after {
     content: '';
     position: absolute;
     width: 50px;
     height: 2px;
     background: var(--primary);
     bottom: 0;
     left: 0;
 }

 .footer-col ul {
     list-style: none;
     padding-left: 0px !important;
 }

 .footer-col ul li {
     margin-bottom: 10px;
 }

 .footer-col ul li a {
     color: #aaa;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .footer-col ul li a:hover {
     color: white;
     padding-left: 5px;
 }

 .social-links {
     display: flex;
     gap: 15px;
 }
 #i1{
    background-color: rgb(0, 102, 255);
 }
  #i2{
    background-color: rgb(2, 165, 62);
 }
  #i3{
    background-color: rgb(156, 3, 173);
 }
  #i4{
    background-color: rgb(255, 85, 0);
 }
 #i12:hover{
    color: rgb(0, 101, 252);
 }
  #i13:hover{
   color: rgb(2, 165, 62);
 }
  #i11:hover{
    color: rgb(176, 0, 126);
 }
  #i14:hover{
    color: rgb(255, 85, 0);
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: var(--primary);
     transform: translateY(-3px);
 }

 .copyright {
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: #aaa;
     font-size: 14px;
 }

 /* Animations */
 @keyframes float {

     0%,
     100% {
         transform: translateY(0) rotate(-5deg);
     }

     50% {
         transform: translateY(-20px) rotate(0deg);
     }
 }

 .floating {
     animation: float 6s ease-in-out infinite;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .hero {
         flex-direction: column;
         text-align: center;
     }

     .hero-content {
         margin-bottom: 50px;
     }

     .hero-buttons {
         justify-content: center;
     }

     .hero-image {
         width: 100%;
     }

     .card-1 {
         right: 50px;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }

     .hero-content h2 {
         font-size: 36px;
     }

     .card-1 {
         width: 250px;
         height: 150px;
         right: 20px;
     }

     .card-2 {
         width: 230px;
         height: 130px;
     }

     .card-3 {
         width: 200px;
         height: 110px;
         right: 50px;
     }
 }

 /* modal */
 .btn-login {
     background: var(--primary);
     border: none;
     padding: 12px 24px;
     font-size: 18px;
     font-weight: bold;
     border-radius: 8px;
     color: white;
     cursor: pointer;
     box-shadow: 0px 4px 10px rgba(0, 136, 204, 0.5);
     transition: all 0.3s ease-in-out;
 }

 .btn-login:hover {
     background: linear-gradient(135deg, #00bfff, #0077b6);
     transform: scale(1.05);
     box-shadow: 0px 6px 12px rgba(0, 136, 204, 0.7);
 }

 .modal-content {
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(2px);
     border-radius: 12px;
     padding: 20px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
 }

 

 .modal-title {
     color: white;
 }

 .text-light a {
     color: linear-gradient(135deg, #0051ff, #0077b6);
     /* Slightly brighter hover */
     text-decoration: none;
     font-weight: bolder;
 }

 .text-light a:hover {
     text-decoration: underline;
 }

 .btn-color {
     background: linear-gradient(135deg, #00d4ff, #0088cc);
     /* Cyan contrast */
     border: none;
     font-weight: bold;
     border-radius: 8px;
     color: white;
     cursor: pointer;
     box-shadow: 0px 4px 10px rgba(0, 136, 204, 0.5);
     transition: all 0.3s ease-in-out;
 }

 .btn-color:hover {
     background: linear-gradient(135deg, #00bfff, #0077b6);
     /* Slightly brighter hover */

     box-shadow: 0px 6px 12px rgba(0, 136, 204, 0.7);
 }

 .card-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
     max-width: 1200px;
     margin: auto;
 }

 .card {
     background: linear-gradient(145deg, #ffffff, #ffffff);
     border-radius: 8px;
     overflow: hidden;
     text-align: center;
     box-shadow: 4px 4px 4px rgb(146, 133, 133);
       border: 1.5px solid #989ca1;
     transition: transform 0.6s ease, box-shadow 0.3s ease ,opacity 0.6s ease-out;
 }

 .card:hover {  
     transform: translateY(-8px);
     cursor: pointer;
        border: 2px solid #083470;
     box-shadow:  6px 6px 6px rgba(97, 94, 94, 0.669);
     
 }
 /* ✨ White Shine Effect */
#shineCard {
  position: relative;
  overflow: hidden;
}

#shineCard::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

#shineCard:hover::after {
  left: 130%;
}


 .card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     
      transition: transform 0.4s ease, filter 0.4s ease;
     
 }
.card img:hover{
       transform: scale(1.05);
       
}
 .card h5 {
     margin: 15px 0 10px;
     font-size: large;
     font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
     font-weight: bold;
     color: #000000;
 }

 .card a {
     display: block;
     /* full block so it centers properly */
     width: 80%;
     margin: 10px auto 20px;
     /* auto se center */
     padding: 12px 20px;
     background: linear-gradient(135deg, #0b3a7a 0%, #1f6ce0 100%);
     background-size: 200% auto;
     /* for animation */
     color: #fff;

     text-align: center;
     text-decoration: none;
     border-radius: 8px;
     transition: all 0.4s ease;
 }

 .card a:hover {
     background-position: right center;
     /* gradient animate hoga */
     transform: scale(1.05);
     /* thoda zoom effect */
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
 }

 /* Cars Section */
 .cars {
     max-width: 1200px;
     margin: auto;
     padding: 40px 20px;
 }

 /* Heading */
 .cars>h2 {
     font-size: 36px;
   color: #164591;
     margin-bottom: 30px;
     text-align: center;
 }

 /* Cards Container */
 .cars-container {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
 }

 /* Each Card */
 .cars-container .card {
     flex: 1 1 48%;
     /* left & right */
     position: relative;
     height: 450px;
     border-radius: 15px;
     border: 1.5px solid rgb(143, 142, 142);
     overflow: hidden;
     cursor: pointer;
 }
 .cars-container .card:hover{
    border: 2px solid rgb(66, 65, 65);
 }
 /* Card Image */
 .cars-container .card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     filter: grayscale(40%) brightness(70%);
     transition: transform 0.4s ease, filter 0.4s ease;
 }

 /* Hover effect */
 .cars-container .card:hover img {
     transform: scale(1.05);
     filter: grayscale(20%) brightness(80%);
 }

 /* Card Title */
 .cars-container .card h3 {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     margin: 0;
     font-size: 28px;
    color: #164591;
 }

 .cars-container .card h3 a {
     color: #fff;
     text-decoration: none;
     padding: 10px 20px;
     background: rgba(0, 0, 0, 0.4);
     border-radius: 8px;
     transition: background 0.3s ease;
 }

 .cars-container .card h3 a:hover {
     background: rgba(0, 0, 0, 0.6);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .cars-container .card {
         flex: 1 1 100%;
         height: 250px;
     }

     .cars>h2 {
         font-size: 28px;
     }

     .cars-container .card h3 {
         font-size: 22px;
     }
 }

 @media (max-width: 480px) {
     .cars>h2 {
         font-size: 22px;
     }
 }

 section h2 {
     font-size: 36px;
     font-weight: bold;
     color: #164591;
 }
 
 /* Card Styling */
 .custom-card {
     max-width: 1100px;
     /* size bara */
     margin: auto;
    
     background: linear-gradient(145deg, #ffffff, #ffffff);
     border-radius: 12px;
     overflow: hidden;
         border: 1px solid #d7d1d1;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }
 .custom-card:hover{
      box-shadow: 6px 6px 8px rgba(122, 120, 120, 0.674) !important;
      transform: translateY(-8px) !important;
 }

 /* Image */
 .custom-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     min-height: 400px;
     /* image bada */
 }

 /* Card Body */
 .custom-card .card-body {
     padding: 30px;
     /* content ko spacious banaya */
 }

 /* Button */
 .custom-card a.btn {
     padding: 12px 25px;
     border-radius: 8px;
     background: linear-gradient(135deg, #0b3a7a 0%, #0b3a7a 100%);
     border: none;
     transition: all 0.3s ease;
     color: #fff;
 }

 .custom-card a.btn:hover {
     background: linear-gradient( #1a55b4, #1a55b4);
     /* Slightly brighter hover */

     box-shadow: 0px 3px 3px rgba(79, 107, 121, 0.7);
 }

 /* Responsive */
 @media (max-width: 768px) {
     section h2 {
         font-size: 28px;
     }

     .custom-card img {
         height: 250px;
     }
 }

 @media (max-width: 480px) {
     section h2 {
         font-size: 22px;
     }

     .custom-card img {
         height: 200px;
     }
 }

 .navbar {
     background: #ffffff00;
     /* White navbar */

 }

 .navbar .nav-link {
    position: relative;
    color: #0753c2;
    font-weight: 600;
    margin: 0 10px;
    font-size: larger; /* fixed typo: was 'largers' */
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #0a3a81;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover {
    color: #133d7d;

}

.navbar .nav-link:hover::after {
    transform: scaleX(1);
}


 .navbar-toggler {
     border: 2px solid;
     background-color: #215db6;
 }

 .navbar-toggler:focus {
     box-shadow: 2px 2px 2px black;
 }

 .btn-login {
     background: var(--primary);
     border: none;
     padding: 12px 24px;
     font-size: 18px;
     font-weight: bold;
     border-radius: 8px;
     color: white;
     cursor: pointer;
     box-shadow: 0px 4px 10px rgba(0, 136, 204, 0.5);
     transition: all 0.3s ease-in-out;
 }

 .btn-login:hover {
     background: linear-gradient(135deg, #00bfff, #0077b6);
     transform: scale(1.05);
     box-shadow: 0px 6px 12px rgba(0, 136, 204, 0.7);
 }

 .modal-content {
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(2px);
     border-radius: 12px;
     padding: 20px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
 }


 .modal-title {
     color: white;
 }

 .text-light a {
     color: linear-gradient(135deg, #0051ff, #0077b6);
     /* Slightly brighter hover */
     text-decoration: none;
     font-weight: bolder;
 }

 .text-light a:hover {
     text-decoration: underline;
 }

 .btn-color {
     background: linear-gradient(135deg, #00d4ff, #0088cc);
     /* Cyan contrast */
     border: none;
     font-weight: bold;
     border-radius: 8px;
     color: white;
     cursor: pointer;
     box-shadow: 0px 4px 10px rgba(0, 136, 204, 0.5);
     transition: all 0.3s ease-in-out;
 }

 .btn-color:hover {
     background: linear-gradient(135deg, #00bfff, #0077b6);
     /* Slightly brighter hover */

     box-shadow: 0px 6px 12px rgba(0, 136, 204, 0.7);
 }