﻿body {
    font-family: 'Inter', sans-serif;
    color: #0B0F19;
}
html {
  scroll-behavior: smooth;
}
h1,h2,h3,h4 {
    font-family: 'Poppins', sans-serif;
}

.hero {
    background: linear-gradient(135deg, #0B0F19, #111827);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #4F46E5, transparent);
    top: -100px;
    right: -100px;
    opacity: 0.4;
}

.btn-primary {
    background-color: #4F46E5;
    border: none;
}

.btn-primary:hover {
    background-color: #4338CA;
}

.section {
    padding:30px 0;
}

.feature-card {
    width:100%;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding:15px;
    transition: all 0.3s ease;
    background: #fff;color:#000 !important;
    height:100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.feature-card h5 {font-weight:600;margin: 10px 0 0 0;}
 
.feature-card img {
        height:80px;
    animation: rotateIcon 4s infinite linear;
}
.usefulLinks a {
    text-decoration:none;width:100%;
}

/* Different timing delays */
.feature-card:nth-child(1) img { animation-delay: 0s; }
.feature-card:nth-child(2) img { animation-delay: 0.5s; }
.feature-card:nth-child(3) img { animation-delay: 1s; }
.feature-card:nth-child(4) img { animation-delay: 1.5s; }
.feature-card:nth-child(5) img { animation-delay: 2s; }
.feature-card:nth-child(6) img { animation-delay: 2.5s; }

@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

.section-highlight {
  animation: highlightFade 2s ease;
}

 
@keyframes highlightFade {
  0% {
    box-shadow: 0 0 0 5px rgba(67, 56, 202, 0.5); background-color: #fff3cd; /* light yellow */
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}


.cta {
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    color: white;
    border-radius: 16px;
    padding: 60px;
    text-align: center;
}

/*footer {
    background: #0B0F19;
    color: #aaa;
    padding:10px 0;
}
footer a {
    color:#fff;text-decoration:none !important;font-weight:600; 
}
footer p {
    margin:0;
}*/
.footer-section {
    background-color: #111827;
    color: #fff;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

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

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

.footer-links a {
    text-decoration: none;
    color: #d1d5db;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #6366f1;
    padding-left: 5px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #374151;
}

.footer-logo {
    height: 30px;
    margin-left: 8px;
}
.navbar {
    background: #fff;
}


.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4F46E5;
}

.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}
.navbar-brand img {
    height:80px;
}

/* Dropdown Styling */
.navbar .dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Dropdown items */
.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #4338CA;
    color: #fff;
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile Dropdown Fix */
@media (max-width: 991px) {
    .dropdown-menu {
        border-radius: 8px;
        margin-top: 5px;
    }
}
/* animated */

.banner {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../images/banner2.jpg');
  background-size:cover;
  background-position:top;
}
.banner:after {
    content:'';
    position:absolute;left:0;
    top:0;
    width:100%;height:100%;
    background-color:#4338CA;
    opacity:.8;
}
    .banner h1 {
        position: absolute;
        z-index: 2;
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: 1px;
        line-height: 1.4;
        animation: fadeInUp 2s ease forwards;
    }

    .banner h1 span {
        color: #fff;font-size:4rem;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color:#0f172a;
    }

    @media (max-width: 768px) {
        .banner h1 {
            font-size: 2rem;
            padding: 0 20px;
        }
        h2.innerTitle {
            font-size:30px !important;margin:0 !important;
        }
        .innerTitle-shadow {
          display:none !important;
        }
        .aboutsection {
  padding-top:20px !important;text-align:center;
}
        .cta {
 
  padding: 20px;
   
}
        .banner h1 span {
  font-size: 100% !important;
}

    }


    /* Inner page design */
    .innerBanner {
   position: relative;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white; background-color:#4338CA;
    }
    .innerBanner h1 {
        margin:0;color:#fff; 
    }

    .innerTitle {
        position:relative;
    }
    h2.innerTitle  {
        font-size:50px;
    }
     .innerTitle-shadow {
          
         font-family: "Great Vibes", cursive;
       font-size:120px;
         position:absolute;left:0;top:-30px;
         width:100%;font-weight:800;
         opacity:.1;color: #0d6efd;z-index:-1;
     }
     .aboutsection {
         padding-top:70px;
     }
     .aboutImage img {
         border-radius:20px;
     }
     .aboutImage {
    height: 360px;              /* fixed height (200–300px range) */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

/* Image default state */
.scroll-img {
    width: 100%;
    transition: transform 6s ease-in-out;  /* slow smooth scroll */
}

/* Hover effect */
.aboutImage:hover .scroll-img {
    transform: translateY(-70%) scale(1.02);
}

.scroll-img {
    transition: transform 6s ease-in-out;
}
 

.aboutImage:not(:hover) .scroll-img {
    transition: transform 2s ease-in-out; /* faster return */
}
     h2.innerTitle {
  font-size: 50px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease-out forwards;
  letter-spacing: 5px;
}

     .viemore-btn {
   display: inline-block;
    border-radius: 50px;
    padding: 10px 22px;
    text-align: center;
    background: linear-gradient(135deg, #4338CA, #6366F1);
    color: #fff;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(67, 56, 202, 0.3);
    position: relative;
    overflow: hidden;
     }
     /* Hover Effect */
.viemore-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(67, 56, 202, 0.5);
}

/* Click Effect */
.viemore-btn:active {
    transform: scale(0.95);
}

/* Shine Effect */
.viemore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.viemore-btn:hover::before {
    left: 125%;
}
/* Shadow text (optional smoother effect) */
.innerTitle-shadow {
  display: block;
  opacity: 0.1;
  transform: scale(1.1);
  animation: shadowZoom 1.5s ease-out forwards;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
    letter-spacing: 10px;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 2px;
  }
}

@keyframes shadowZoom {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}

/* FDP New changes */
 .fdp-box {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .fdp-title {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .view-btn {
            border: none;
            background: none;
            color: #0d6efd;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .arrow {
            transition: transform 0.3s ease;
        }

        .rotate {
            transform: rotate(180deg);
        }

        .hidden-content {
            display: none;
            margin-top: 15px;
        }

        .section-heading {
            font-weight: 600;
            margin-top: 20px;
        }

       .hidden-content ul li {
            margin-bottom: 8px;
        }