
/*============================ BEGINNING OF UNIVERSAL RULE SETS (STYLES) ===================================*/

    @font-face {src: url(fonts/rubik.ttf);font-family: rubik;}
    @font-face {src: url(fonts/montserrat.ttf);font-family: montserrat;}
    body {margin:0px !important;padding: 0px !important;font-family:montserrat !important;background: linear-gradient(to right, #f8f9fa, #eef2f3);}
    a {text-decoration: none !important;color: inherit;}
    input::placeholder {color: #bdbebe;font-size: 1em;}
    ::-webkit-scrollbar{width: 2px;height: 3px;}
    ::-webkit-scrollbar-track{background: transparent;}
    ::-webkit-scrollbar-thumb{background: #01050D;border-radius: 5px;}
    .row {margin: 0px !important;padding: 0px !important;}
    .blink{animation: blink 2s linear infinite;}
    @keyframes blink{ 0%{opacity: 0;} 50%{opacity: .5;} 100%{opacity: 1;} }
    .noPad{padding:0px !important;}.noPadT{padding-top:0px !important;}.noPadB{padding-bottom:0px !important;}
    .noPadL{padding-left:0px !important;}.noPadR{padding-right:0px !important;}
    .noMarg{margin:0px !important;}.noMargT{margin-top:0px !important;}.noMargB{margin-bottom:0px !important;}
    .noMargL{margin-left:0px !important;}.noMargR{margin-right:0px !important;}.block{display: block !important;}
    .spaceFiller{width: 100%;}.inlineBlock{display: inline-block !important;}.inline{display: inline !important;}
    .noLine{border: none !important;outline: none !important;box-shadow: none !important;}
    .maBo50{margin-bottom: 50px !important;}.whiteText{color: #ffffff !important;}.lightBlue{color: #c6f0ff !important;}
    .bold{font-weight: 600 !important;}.italicText{font-style: italic !important;}.semiBold{font-weight: 400 !important;}
    .redText{color: #c40000 !important;}.smallText{font-size: 75%;}.width100{width: 100% !important;}
    .pad2Over5{padding: 2.5px !important;}.padTB150{padding-top: 150px !important;padding-bottom: 150px !important;}


/*============================ BEGINNING OF ID(S) ===================================*/
	
	#heroNavCoat{
        width: 100%;
        min-height: 100px;
        /* background-image: url(../images/webBack.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; */

    }
	
	
	
	
	
	
	
	
	
	
	
	
/*============================ BEGINNING OF CLASSES  ===================================*/

.navCoat{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 70px;
    box-shadow: 0px 0px 8px 0px #c6c9cd;
    margin: 25px 0px 0px 0px;
    padding: 10px 20px;
    background: #ffffff;
    border-radius: 5px;
}

.logo{
    width: 45px;
    height: 45px;
}

.logoText{
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0px 0px 0px 5px;
    color: #00001d;
}

.navPageLinks {
    position: relative;
    margin: 0px 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #00001d;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navPageLinks::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #003e8e;
    transition: width 0.35s ease;
}

.navPageLinks:hover {
    color: #003e8e;
    transform: translateY(-3px);
}

.navPageLinks:hover::after {
    width: 100%;
}


.premiumButton {
    position: relative;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    color: #c6f0ff;
    background: linear-gradient(135deg, #003e8e, #001037, #006fc9);
    background-size: 300% 300%;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 
        0 0px 10px #00000066,
        inset 0 1px 1px #ffffff26;
    animation: gradientShift 6s ease infinite;
}

/* Smooth gradient movement */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glossy shine effect */
.premiumButton::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        #ffffff4d,
        transparent
    );
    transition: all 0.6s ease;
}

/* Hover effects */
.premiumButton:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

/* Animate shine sweep */
.premiumButton:hover::before {
    left: 100%;
}

/* Click effect */
.premiumButton:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 5px 15px #00000066;
}





.iconButton{
    position: relative;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #c6f0ff;
    background: linear-gradient(135deg, #003e8e, #001037, #006fc9);
    background-size: 300% 300%;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 
        0 0px 10px #00000066,
        inset 0 1px 1px #ffffff26;
    animation: gradientShift 6s ease infinite;
}

.iconButton:hover{
    background: linear-gradient(#001037,#001037);
    color: #ffffff;
}

.heroCoat{
    width: 100%;
    min-height: 300px;
    text-align: center;
    margin: 75px 0px 75px 0px;
}

.heroMainHeading{
    font-size: 2.5rem;
    font-weight: 800;
    color: #001037;
    text-align: center;
    margin: 0px;
}

.sideHeroText{
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #004e8e !important;
    text-align: center;
}


.heroPar{
    font-size: 1.2rem;
    font-weight: 400;
    color: #001037;
    margin: 0px;
    line-height: 1.7;
}

.heroSubHead{
    font-size: 1.1rem;
    font-weight: 600;
    color: #004e8e;
    margin-top: 15px;
}

.heroAutoText{
    font-size: 1.3rem;
    font-weight: 500;
    color: #00001d;
    margin: 0px 0px 0px 5px;
    min-height: 35px;
}

.heroAutoText::after {
    content: "|";
    color: #ff0000;
    animation: blink 0.7s infinite steps(2);
}@keyframes blink {50% { opacity: 0; }}

.mainAutoTextCoat{
    width: fit-content;
    margin: 0px auto;
}

.blueText{
    color: #00001d !important;
}

.closeButton{
    font-size: 1.7rem;
    color: #950000;
}

.closeButton:hover{
    color: #6d0000;
}

.mobileMenuLogo{
    width: 35px;
    height: 35px;
}

.mobileMenuTitle{
    margin: 0px 0px 0px 5px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00001d;

}

.mobileMenuLinks{
    display: block;
    margin: 0px 0px 15px 0px;
    font-size: 1.05rem;
    font-weight: 500;
    width: fit-content;
    color: #00001d;
}

.mobileMenuLinks:hover{
    font-weight: 600;
    padding: 0px 0px 0px 10px;
    border-left: 2px solid #004e8e;
    transition: 0.5s;
}


.aboutUsCoat {
    width: 100%;
    min-height: 600px;
    background: #e7ebef;
    position: relative;
    overflow: hidden;
}

/* Bottom design section */
.aboutUsDivDesign {
    position: absolute;
    bottom: 0;          /* Move to bottom */
    left: 0;            /* Reset left */
    width: 100%;
    height: 50%;        /* Half of parent height */
    z-index: 1;

    background:
        repeating-linear-gradient(
            45deg,
            #ffffff0d,
            #ffffff0d 15px,
            transparent 15px,
            transparent 30px
        ),
        #00001d;

    transform: none;    /* Remove slant */
}

/* Keep content above design */
.aboutUsContentHolder {
    background: #ffffff;
    padding: 60px 40px;
    margin: 120px 0;
    box-shadow: 0 10px 30px #00000014;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.mainPagePar{
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
    color: #00001d;
    line-height: 1.7;
}

.mainPageHeading{
    font-size: 2rem;
    font-weight: 500;
    color: #00001d;
    text-align: center;
    margin: 0px 0px 25px 0px;
}

.pageCoats{
    width: 100%;
    min-height: 50px;
    padding: 150px 0px;
}

.pageCoats02{
    width: 100%;
    min-height: 50px;
    padding: 0px 0px 150px 0px;
}

.whoWeAreCoat {
    width: 100%;
    min-height: 800px;
    background: #c3c7cb;
    position: relative;
    overflow: hidden;
}

/* Top slanted design background */
.whoWeAreDivDesign {
    position: absolute;
    top: 0;
    left: -3%;
    width: 106%;
    height: 350px;
    z-index: 1;

    background:
        repeating-linear-gradient(
            45deg,
            #ffffff0d,
            #ffffff0d 15px,
            transparent 15px,
            transparent 30px
        ),

        #00001d;
        /* #001a3a; */

    transform: skewY(-2deg);
    transform-origin: top left;
}

/* Center white card */
.whoWeAreContentHolder {
    background: #ffffff;
    padding: 60px 40px;
    margin: 120px 0;
    box-shadow: 0 10px 30px #00000014;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.whoWeArePar{
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    color: #00001d;
    line-height: 2;
}

.whoWeAreHeading{
    font-size: 2.2rem;
    font-weight: 500;
    color: #00001d;
    text-align: center;
    margin: 0px 0px 25px 0px;
}

/* Container */
.whoWeAreIconCCoat {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

/* Icon wrapper with animation */
.whoWeAreIconCoat {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00001d, #003e8e);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite; /* floating effect */
}

/* Hover effect with rotation and shadow */
.whoWeAreIconCoat:hover {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 10px 20px #00000066;
}

/* Icon size */
.whoWeAreIcon {
    font-size: 1.5rem;
}

/* Floating keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whoWeAreIconCoat {
        width: 50px;
        height: 50px;
    }

    .whoWeAreIcon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .whoWeAreIconCoat {
        width: 45px;
        height: 45px;
    }

    .whoWeAreIcon {
        font-size: 1rem;
    }
}


.whoWeAreIconCContent{
    font-size: 1.1rem;
    text-align: center;
    color: #00001d;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.5;
}

.whyChooseUsCoat{
    width: 100%;
    min-height: 300px;
    padding: 150px 0px 250px 0px;
    background: linear-gradient(to right, #f8f9fa, #eef2f3);
}

.blueText{
    color: #003e8e !important;
}

.headingPrimary{
    font-size: 2rem;
    font-weight: 500;
    color: #00001d;
    text-align: center;
    margin: 0px 0px 25px 0px;
}

.headingPrimaryPar{
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    color: #00001d;
    line-height: 1.8;
    margin: 0px 0px 50px 0px;
}



/* ---------- Row Flex for Equal Height Cards ---------- */
.row.flex-equal > [class*='col-'] {
    display: flex;
}

/* ---------- Container & Card Styles ---------- */
.whyChooseUsContentCoat {
    flex: 1; /* makes the card expand to fill the column */
    border-radius: 8px;
    box-shadow: 0px 0px 10px 5px #e3e3e36a;
    margin: 25px 0;
    background: #fbfbfb;
    padding: 50px 25px;
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards;
    cursor: pointer;
    display: flex;
    flex-direction: column; /* stack icon, heading, paragraph vertically */
}

/* Hover Effects for Cards */
.whyChooseUsContentCoat:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0px 10px 20px #00000026;
}

/* Icon Styles */
.whyChooseUsIconHolder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #00001d, #003e8e);
    margin: 0 auto 20px auto;
    transition: transform 0.5s ease;
}

.whyChooseUsContentCoat:hover .whyChooseUsIconHolder {
    transform: rotate(10deg) scale(1.1);
}

.whyChooseUsIcon {
    font-size: 2.5rem;
    color: #fff;
}

/* Headings & Paragraphs */
.whyChooseUsHeadings {
    font-size: 1.3rem;
    font-weight: 500;
    color: #00001d;
    margin: 15px 0;
}

.whyChooseUsPar {
    font-size: 1.1rem;
    font-weight: 300;
    color: #00001d;
    margin-bottom: auto; /* pushes paragraph to bottom if possible for equal height */
}

/* ---------- Keyframes for Fade-In & Slide-Up ---------- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.col-1 { animation-delay: 0s; }
.col-2 { animation-delay: 0.1s; }
.col-3 { animation-delay: 0.2s; }
.col-4 { animation-delay: 0.3s; }
.col-5 { animation-delay: 0.4s; }
.col-6 { animation-delay: 0.5s; }

/* Responsive for Mobile */
@media (max-width: 768px) {
    .whyChooseUsContentCoat {
        padding: 35px 20px;
    }
    .whyChooseUsIcon {
        font-size: 2rem;
    }
    .whyChooseUsHeadings {
        font-size: 1.2rem;
    }
    .whyChooseUsPar {
        font-size: 1rem;
    }
}


.operationalProcessCoat {
    width: 100%;
    min-height: 400px;
    padding: 150px 0px;
    background:
        repeating-linear-gradient(
            45deg,
            #ffffff0d,
            #ffffff0d 15px,
            transparent 15px,
            transparent 30px
        ),
        #00001d;
        /* #001a3a; */

    /* 

    background: linear-gradient(
        -45deg,
        #0a0f2c,
        #0b2438,
        #1b446b,
        #0a0f2c
    );
    background-size: 400% 400%;
    animation: gradientFlow 12s ease infinite; */
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.oOperationalProIconCoat{
    /* box-shadow: 0px 0px 0px 1px #e5ecef51; */
    border-radius: 30px;
    padding: 20px;
    width: 100%;
    min-height: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    margin: 0px 0px 30px 0px;
    background: linear-gradient(135deg, #0082b6, #002249);
}

.oOperationalProIconCoat:hover{
    background: linear-gradient(135deg, #002249,#0082b6);
}

.oOperationalProIconHeading{
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 0px;
}

.industriesCoat{
    width: 100%;
    min-height: 400px;
    padding: 150px 0px;
    background: linear-gradient(to right, #f8f9fa, #eef2f3);
}


.industriesConHolder {
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 0px 10px 0px #d4d7db;
    margin-bottom: 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: all 0.3s ease;
}

.industriesConHolder:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

.industriesImg {
    width: 50px;
    height: auto;
}

.industriesConHeading {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 500;
}

.techWeUse {
    width: 100%;
    position: relative;
    min-height: 500px; /* Adjust height as needed */
    display: flex;
    justify-content: center;  /* Horizontal center */
    align-items: center;      /* Vertical center */
    background: #c3c7cb;
}

/* Left half straight background */
.techWeUseDesignDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background:
        repeating-linear-gradient(
            45deg,
            #ffffff0a 0px,
            #ffffff0a 12px,
            transparent 12px,
            transparent 28px
        ),
        #00001d;
        /* #001a3a; */
    z-index: 1;
}

/* Centered content */
.techWeUseContentHolder {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px #0000000f;
}



:root {
  --scroll-speed: 40s; /* Adjust speed: increase for more logos */
}

.tech-logo-carousel {
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.tech-logo-track {
  display: flex;
  gap: 40px;
  width: max-content;        /* ensures track takes full width of logos */
  animation: scroll var(--scroll-speed) linear infinite;
}

.tech-logo-carousel:hover .tech-logo-track {
  animation-play-state: paused; /* pause on hover */
}

.tech-logo {
  max-height: 40px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

/* Infinite scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* scroll the first half, seamless because of duplication */
}


.ourPledgeCoat{
    width: 100%;
    min-height: 300px;
    padding: 150px 0px 150px 0px;
    background: linear-gradient(to right, #f8f9fa, #eef2f3);
}

.indexTestimonialsCoat{
    width: 100%;
    min-height: 300px;
}

/* Premium Fancy "Get In Touch" Button */
.premium-get-in-touch {
  position: relative;
  display: inline-block;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #00001d, #003e8e);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px #003e8e80;
}

/* Animated Shine Overlay */
.premium-get-in-touch::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: #ffffff1a;
  transform: rotate(45deg);
  transition: all 0.5s ease;
  pointer-events: none; /* ensures button still clickable */
}

/* Hover Effects */
.premium-get-in-touch:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px #003e8eb3;
}

.premium-get-in-touch:hover::before {
  top: -70%;
  left: -70%;
  background: #ffffff33;
}

/* Optional: Text Glow on Hover */
.premium-get-in-touch span {
  position: relative;
  z-index: 1;
  transition: text-shadow 0.3s ease;
}

.premium-get-in-touch:hover span {
  text-shadow: 0 0 10px #001f47, 0 0 20px #001f47;
}

.pagesHeaderCoat{
    text-align: center;
    padding: 75px 0px;
}

.topCapHeading{
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: #004e8e;
}


.servicesContentCoat{
    width: 100%;
    min-height: 300px;
    padding: 50px;
}


.servicesContentHeading{
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    margin: 20px 0px 30px 0px;
    /* padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #e1f7ff; */
}

.servicesContentPar{
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0px;
}

.serviceContentIcon{
    font-size: 2.5rem;
    color: #ffffff;
}

.serviceContentHr{
    width: 50%;
    border: none;
    border-top: 3px solid #ffffff;
    border-radius: 2px;
    opacity: 1;
}



/* =========================================
   EQUAL HEIGHT FOR ALL SERVICE CARDS
========================================= */


.servicesContentCoat {
    width: 100%;
    min-height: 300px;
    padding: 50px;
}

.col-md-6:nth-child(1) .blueBack {background: linear-gradient(to right, #000e1d, #002543);}
.col-md-6:nth-child(2) .blueBack {background: linear-gradient(to right, #001934, #00315a);}
.col-md-6:nth-child(3) .blueBack {background: linear-gradient(to right, #002145, #003c6c);}
.col-md-6:nth-child(4) .blueBack {background: linear-gradient(to right, #00152c, #00315a);}
.col-md-6:nth-child(5) .blueBack {background: linear-gradient(to right, #001c39, #003c6c);}
.col-md-6:nth-child(6) .blueBack {background: linear-gradient(to right, #000e1d, #002d52);}
.col-md-6:nth-child(7) .blueBack {background: linear-gradient(to right, #000e1d, #002543);}
.col-md-6:nth-child(8) .blueBack {background: linear-gradient(to right, #001934, #00315a);}
.col-md-6:nth-child(9) .blueBack {background: linear-gradient(to right, #002145, #003c6c);}

.mdxLogoMDX{
    width: 25px;
    height: 25px;
}


.copyButton{
    padding: 4px 7px;
    background: linear-gradient(135deg, #00001d, #003e8e);
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
}

table.tokenomics tr th,
table.tokenomics tr td{
    padding: 10px 15px;
}

.contactFormCoat{
    width: 100%;
    padding: 25px;
    border-radius: 10px;
    /* border: 1px solid #bdbebe; */
    background: #ffffff;
    box-shadow: 0px 0px 10px 5px #e3e3e36a;
    margin-top: 25px;
}



/* Premium Fancy "Get In Touch" Button */
.newFancyButton {
  position: relative;
  display: inline-block;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #00001d, #003e8e);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px #99c5ff3d;
}

/* Animated Shine Overlay */
.newFancyButton::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: #ffffff1a;
  transform: rotate(45deg);
  transition: all 0.5s ease;
  pointer-events: none; /* ensures button still clickable */
}

/* Hover Effects */
.newFancyButton:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px #77b2ffb3;
}

.newFancyButton:hover::before {
  top: -70%;
  left: -70%;
  background: #ffffff33;
}

/* Optional: Text Glow on Hover */
.newFancyButton span {
  position: relative;
  z-index: 1;
  transition: text-shadow 0.3s ease;
}

.newFancyButton:hover span {
  text-shadow: 0 0 10px #001f47, 0 0 20px #001f47;
}






/* Accordion Button Base */
.accordion-button {
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #002e59, #001f3d);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
    padding: 1rem 1.5rem;
}

/* Hover Effect with Gradient Animation */
.accordion-button:hover {
    background: linear-gradient(135deg, #001f3d, #000925);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

/* Active (Expanded) Button */
.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(135deg, #001f3d, #000925);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

/* Accordion Icon Animation */
.accordion-button::after {
    transition: transform 0.4s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Accordion Body Styling */
.accordion-body {
    background: rgba(0, 46, 89, 0.05); /* subtle light background */
    border-left: 3px solid #001f3d;
    border-radius: 0 0 8px 8px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.4s ease;
}

/* Smooth Collapse Animation */
.accordion-collapse.collapse {
    transition: height 0.6s ease;
}

.faqASPad{
    font-size: 1.1rem;
    font-weight: 500;
}

/* FAQ Icon */
.faqASPad i {
    color: #c6f0ff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    margin-right: 5px;
}

/* Rotate icon slightly on hover */
.accordion-button:hover i {
    transform: rotate(20deg);
}

/* Add slight shadow to accordion items */
.accordion-item {
    margin-bottom: 0.8rem;
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease;
}

/* Subtle hover effect on accordion items */
.accordion-item:hover {
    transform: translateY(-2px);
}


/* Testimonial Section Styling */
.testimonial-section {
    background: linear-gradient(to right, #f8f9fa, #eef2f3);
}

.testimonial-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px #00000014;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #00000026;
}

.testimonial-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px #0000001a;
}

.contactForm{
    background: #ffffff;
}













































































































/* Start Of Footer */


.footerCoat{
    width: 100%;
    min-height: 200px;
    padding: 50px 0px;
    background: #00001d;
    margin-top: 200px;
}

.footerCopyPar{
    font-size: 1rem;
    color: #ffffff;
    border-top: 1px solid #2cc3ff;
    text-align: center;
    padding: 10px;
    margin: 50px 0px 0px 0px;
}

.footerSubheading{
    font-size: 1.1rem;
    font-weight: 400;
    color: #2cc3ff;
    text-align: center;
    margin: 0px 0px 10px 0px;
}

.footerHeading{
    font-size: 1.3rem;
    color: #2cc3ff;
    margin: 0px 0px 25px 0px;
}

.footerParagraph{
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0px 0px 15px 0px;
    line-height: 2.3;
}

.footerLinks{
    display: block;
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0px 0px 15px 0px;
    width: fit-content;
}

.footerLinks:hover{
    font-size: 1.1rem;
    font-weight: 500;
    color: #2cc3ff;
    padding-left: 10px;
    transition: 0.5s;
    border-left: 2px solid #c6f0ff;
}

.footerContentCoat{
    margin-bottom: 50px;
}

.socialsIcons {
  font-size: 1.7em;
  color: #2cc3ff;
  margin: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: relative;
  background: #00a6e73c;
  transition: all 0.4s cubic-bezier(.25,.8,.25,1);
  overflow: hidden;
}

/* Gradient Glow Layer */
.socialsIcons::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a6e7, #003a7d);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Icon above gradient */
.socialsIcons i {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, color 0.4s ease;
}

/* Hover Effect */
.socialsIcons:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 25px #003a7d59;
}

.socialsIcons:hover::before {
  opacity: 1;
}

.socialsIcons:hover i {
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}


.contactAnc{
    font-size: 1.1rem;
    font-weight: 500;
    color: #2cc3ff;
    cursor: pointer;
}.contactAnc:hover{font-size: 1.15rem;transition: 0.5s;}











/* Start of Reach Us Animated Button */

.fancy-btn{
        position: relative;
        display: inline-block;
        color: #c6f0ff;
        overflow: hidden;
        padding: 14px 38px; /* smaller */
        font-size: 1.1rem; /* smaller */
        text-decoration: none;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: bold;

        background: linear-gradient(
            135deg,
            #00001d,
            #001a3a,
            #003566,
            #004e8e
        );

        border-radius: 6px; /* slightly smaller radius */
        box-shadow: 0 0px 25px #00000099;
        transition: 0.4s ease;
    }

    .fancy-btn:before{
        content: '';
        position: absolute;
        width: 50%;
        top: 2px;
        left: 2px;
        bottom: 2px;
        background: #ffffff0d;
        border-radius: 4px;
    }

    /* Top Border */
    .fancy-btn span:nth-child(1){
        position: absolute;
        width: 100%;
        height: 3px; /* thinner */
        top: 0;
        left: 0;
        background: linear-gradient(to right, #00001d, #004e8e, #4fd1ff);
        animation: animate1 2s linear infinite;
    }

    @keyframes animate1{
        0%{ transform: translateX(-100%); }
        100%{ transform: translateX(100%); }
    }

    /* Right Border */
    .fancy-btn span:nth-child(2){
        position: absolute;
        top: 0;
        right: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(to bottom, #00001d, #004e8e, #4fd1ff);
        animation: animate2 2s linear infinite;
        animation-delay: 1s;
    }

    @keyframes animate2{
        0%{ transform: translateY(-100%); }
        100%{ transform: translateY(100%); }
    }

    /* Bottom Border */
    .fancy-btn span:nth-child(3){
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to left, #00001d, #004e8e, #4fd1ff);
        animation: animate3 2s linear infinite;
    }

    @keyframes animate3{
        0%{ transform: translateX(100%); }
        100%{ transform: translateX(-100%); }
    }

    /* Left Border */
    .fancy-btn span:nth-child(4){
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(to top, #00001d, #004e8e, #4fd1ff);
        animation: animate4 2s linear infinite;
        animation-delay: 1s;
    }

    @keyframes animate4{
        0%{ transform: translateY(100%); }
        100%{ transform: translateY(-100%); }
    }

    /* Hover Effect */
    .fancy-btn:hover{
        background: linear-gradient(
            135deg,
            #000428,
            #002f5f,
            #004e8e
        );
        color: #ffffff;

        box-shadow:
            0 0 8px #004e8e,
            0 0 16px #004e8e,
            0 0 30px rgba(0, 78, 142, 0.6);
    }

/* End of Reach Us Animated Button */



/* Start of News Letter Animated Button */

.cosmic-button {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    color: #ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    border: 1px solid #ffffff33;
    backdrop-filter: blur(5px);

    /* Gradient background */
    background: linear-gradient(
        270deg,
        #000428,
        #003566,
        #00bfff,
        #004e8e
    );
    background-size: 400% 400%;
    animation: cosmicGradient 6s ease infinite;

    /* Shadows for depth */
    /* box-shadow: 
        0 10px 30px #00000080,
        0 0 40px #00bfff; */
}

/* Press effect */
.cosmic-button:active {
    transform: translateY(-2px) scale(0.98);
}

/* Glow pulse behind button */
.cosmic-button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.6;
    z-index: -1;
    animation: cosmicPulse 3s ease-in-out infinite;
}

/* Shine sweep */
.cosmic-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.cosmic-button:hover::before {
    left: 150%;
}

/* Hover transform */
.cosmic-button:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Animations */
@keyframes cosmicGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes cosmicPulse {
    0% { filter: blur(20px); opacity: 0.5; }
    50% { filter: blur(25px); opacity: 0.8; }
    100% { filter: blur(20px); opacity: 0.5; }
}

/* End of News Letter Animated Button */