@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Manrope", Arial, sans-serif;
    overflow-x:hidden;
    background:#fff;
   
}

/* =========================
   HEADER
========================= */

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#fff(255,255,255,0.94);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-bottom:1px solid #eee;
}

.header-container{
    max-width:1400px;
    margin:auto;
    padding:18px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo{
    width:50px;
    height:50px;
    background:linear-gradient(135deg,#5968ff,#17228f);
    color:#fff;
    border-radius:14px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    font-weight:700;
    box-shadow:0 10px 22px rgba(33,47,210,.25);
}

.brand-text{
    font-size:18px;
}

.bold{
    font-weight:700;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:15px;
}

.btn{
    background:none;
    border:none;
    cursor:pointer;
    font-size:15px;
    font-weight:500;
    padding:11px 14px;
    border-radius:10px;
    transition:.2s ease;
}

.btn:hover,
.btn:focus-visible{
    color:#2937d3;
    background:#f1f3ff;
    outline:none;
}

.hamburger{
    display:none;
    font-size:26px;
    cursor:pointer;
}
.brand{
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;   /* Removes underline */
    color: inherit;          /* Keeps original text color */
}

.brand:hover{
    text-decoration: none;   /* Prevents underline on hover */
    color: inherit;
}

.brand:visited{
    color: inherit;
    text-decoration: none;
}

.brand:active{
    color: inherit;
    text-decoration: none;
}
/* =========================
   DROPDOWN
========================= */

.dropdown{
    position:relative;
}

.dropdown-content{
    position:absolute;
    top:40px;
    left:0;
    background:white;
    min-width:220px;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    border-radius:10px;
    overflow:hidden;
    border:1px solid rgba(20,31,74,.08);
}

.dropdown-content a{
    display:block;
    padding:12px 18px;
    text-decoration:none;
    color:#333;
}

.dropdown-content a:hover{
    background:#f5f5f5;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* =========================
   PANELS
========================= */

.panel{
    height:100vh;
    width:100%;
    position:relative;
}

/* =========================
   HERO
========================= */

.hero-panel{
    background:#fff;
}
.hero-panel .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/*.hero-panel video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
*/
.hero-panel::after{
    content:"";
    position:absolute;
    inset:0;
    background:#fff(90deg,rgba(5,11,36,.82),rgba(5,11,36,.38));
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:5;
    text-align:center;
    color:rgb(252, 252, 252);
}

.hero-content h1{
    font-size:80px;
    margin-bottom:15px;
    font-weight:800;
    letter-spacing:-.06em;
    text-shadow:0 18px 50px rgba(0,0,0,.28);
}

 .hero-content h2{
    font-size:40px;
    margin-bottom:15px;
    font-weight:600;
    letter-spacing:-.06em;
     color:rgb(0, 0, 0);
    text-shadow:0 18px 50px rgba(0,0,0,.28);
 }

/* =========================
   STATS
========================= */

.stats-panel{
    background: #fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.stats-section{
    width:90%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    max-width:1200px;
}

.stat{
    background:#f3f3f4;
    padding:40px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(33,47,210,.08);
    box-shadow:0 14px 36px rgba(20,31,89,.09);
    transition:.25s ease;
}

.stat:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 48px rgba(20,31,89,.14);
}

.stat h1{
    font-size:70px;
    color:#212fd2;
    margin-bottom:10px;
}

.stat p{
    font-size:14px;
    color:#555;
    line-height:1.5;
}
/* ======================================
   OUR PARTNERS SECTION
======================================*/

 
.partners-section{
    width:100%;
    padding:100px 8%;
    background:#f7f9fc;
    overflow:hidden;
    position:relative;
}

.partners-heading{
    text-align:center;
    margin-bottom:60px;
}

.partners-heading .sub-title{
    display:inline-block;
    color:#1d4ed8;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.partners-heading h2{
    font-size:45px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    line-height:1.2;
}

.partners-heading h2 span{
    color:#1d4ed8;
}

.partners-heading p{
    max-width:700px;
    margin:auto;
    font-size:17px;
    color:#666;
    line-height:1.8;
}

/*==================================*/

.partner-slider{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

/*==================================*/

.partner-container{
    width:100%;
    overflow:hidden;
}

.partner-track{
    display:flex;
    gap:30px;
    transition:.6s ease;
}

/*==================================*/

.partner-card{
    min-width:280px;
    background:#fff;
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid rgba(0,0,0,.05);
}

.partner-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.partner-logo{
    width:130px;
    height:130px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.partner-logo img{
    width:90px;
    max-height:70px;
    object-fit:contain;
}

.partner-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.partner-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}

.line{
    width:60px;
    height:4px;
    background:#1d4ed8;
    margin:18px auto;
    border-radius:20px;
}

/*==================================
      BUTTONS
==================================*/

.slider-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#1d4ed8;
    color:#fff;
    cursor:pointer;
    font-size:22px;
    transition:.3s;
    position:absolute;
    z-index:100;
}

.slider-btn:hover{
    background:#0f3ea7;
    transform:scale(1.1);
}

.prev{
    left:-25px;
}

.next{
    right:-25px;
}

/*==================================
      DOTS
==================================*/

.slider-dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:40px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#bbb;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    width:35px;
    border-radius:20px;
    background:#1d4ed8;
}

/*==================================
     RESPONSIVE
==================================*/

@media(max-width:991px){

.partners-heading h2{
    font-size:36px;
}

.partner-card{
    min-width:250px;
}

.prev{
    left:0;
}

.next{
    right:0;
}

}

@media(max-width:768px){

.partners-section{
    padding:70px 5%;
}

.partners-heading h2{
    font-size:30px;
}

.partner-card{
    min-width:100%;
}

.partner-logo{
    width:110px;
    height:110px;
}

.partner-logo img{
    width:80px;
}

.slider-btn{
    display:none;
}

}
/* =========================
   SERVICES
========================= */

.services-panel{
    background:radial-gradient(circle at 90% 10%,rgba(90,105,255,.14),transparent 28%),#fff;
    padding:120px 80px;
}

.services-panel h2{
    text-align:center;
    font-size:55px;
    margin-bottom:60px;
    color:#111;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.service-card{
    background:rgb(255, 255, 255);
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border:1px solid rgba(33,47,210,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 48px rgba(20,31,89,.14);
}

.service-card span{
    font-size:50px;
    font-weight:700;
    color:#212fd2;
}

.service-card h3{
    margin-top:20px;
    font-size:24px;
    line-height:1.4;
}

/* =========================
   FOOTER
========================= */

.footer-panel{
    background:radial-gradient(circle at 50% 110%,rgba(61,76,225,.45),transparent 42%),#fff;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.footer-panel h2{
    font-size:60px;
    margin-bottom:20px;
}

.footer-panel p{
    font-size:18px;
    opacity:.8;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .stats-section{
        grid-template-columns:1fr 1fr;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:50px;
    }

    .services-panel{
        padding:100px 30px;
    }
}

@media(max-width:768px){

    .hamburger{
        display:block;
    }

    .nav-menu{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        padding:20px;
        box-shadow:0 18px 40px rgba(20,31,89,.12);
    }

    .nav-menu.active{
        display:flex;
    }

    .stats-section{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .footer-panel h2{
        font-size:36px;
        text-align:center;
    }

    .stats-panel,
    .services-panel{
        height:auto;
        min-height:100vh;
    }

    .stats-panel{
        padding:100px 20px 60px;
    }

    .stat{
        padding:28px 20px;
    }

    .service-card{
        padding:30px 24px;
    }
}

@media(max-width:480px){
    .header-container{padding:12px 18px;}
    .logo{width:44px;height:44px;}
    .brand-text{font-size:15px;}
    .hero-content{width:calc(100% - 36px);}
    .hero-content h1{font-size:clamp(42px,16vw,64px);}
    .services-panel{padding:80px 18px 60px;}
    .services-panel h2{font-size:38px;margin-bottom:36px;}
    .service-card span{font-size:38px;}
    .service-card h3{font-size:20px;}
}

@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto;}
    *,*::before,*::after{transition-duration:.01ms!important;animation-duration:.01ms!important;}
}
/* =========================
   about
========================= */
 

.info-box {
    width: 100%;
    min-height: 80%;
    background: #f5f6fa;
    border: 2px solid var(--accent);
 

    margin: 0 auto;
    text-align: center;
    color: #1e1e1e;
    object-fit: cover;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(33,47,210,0.2);
}
.panel{
    min-height:100vh;
    width:100%;
    position:relative;
    overflow:hidden;
}
.info-box{
    min-height:100vh;
    background:#f5f6fa;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

 

.about-overlay{
    width:100%;
    max-width:1400px;

    display:grid;
    grid-template-columns:1fr 550px;
    gap:60px;
    align-items:center;
}

.about-content h1{
    font-size:60px;
    line-height:1.1;
    color:#111;
    margin-bottom:25px;
}

.about-content p{
    font-size:20px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.about-tag{
    display:inline-block;
    margin-bottom:15px;
    color:#212fd2;
    font-weight:700;
    letter-spacing:2px;
}

.about-btn{
    display:inline-block;
    padding:14px 30px;
    background:#212fd2;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
}
.about-image-box {
    width: 100%;
    
    height: 700px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-video-box{
    height:750px;
    width: 100%;
    border-radius:1px;
    overflow:hidden;
    margin-right:10px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.about-video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
}
 
.about-title {
  text-align: center;
  font-size: 42px;
  color: #212fd2;
  margin-bottom: 50px;
}
/* ==========================
        TEAM SECTION
========================== */
 .info-box{
    min-height:100vh;
}

.td-core{
    min-height:100vh;
}

.td-timeline{
    min-height:100vh;
}

.td-team{
    min-height:100vh;
}

.td-footer{
    min-height:100vh;
}
.td-team{

    width:80%;
    min-height:200vh;
    z-index:2;
    background:#5f7fff;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:80px 8%;
}

.team-heading{

    text-align:center;
    margin-bottom:15px;
}

 
.team-heading h2{

    font-size:42px;

    margin:15px 0;

    color:#000000;

    font-weight:800;
}

.team-heading p{

    max-width:600px;

    margin:auto;

    color:#000000;

    font-size:15px;

    line-height:30px;
}

.team-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:80px;
}

.team-card{

    transition:.4s;
}

.team-card:hover{

    transform:translateY(-10px);
}

.team-image{

    width:150px;

    height:120px;

    border-radius:50%;

    overflow:hidden;

    margin-bottom:20px;

    border:8px solid #f4f4f4;
}

.team-image img{

    width:80%;

    height:80%;

    object-fit:cover;
}

.team-card h3{

    font-size:30px;

    font-weight:500;
    font-family: Arial, Helvetica, sans-serif;
    color:#000000;

    margin-bottom:5px;
}

.team-card h4{

    font-size:18px;

    color:#000000;

    font-weight:300;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom:10px;
}

.team-card p{

    color:#000000;

    line-height:30px;

    font-size:20px;
    font-family:Arial, Helvetica, sans-serif;

    text-align:justify;
}

/* Responsive */

@media(max-width:991px){

.team-grid{

grid-template-columns:1fr;

gap:60px;

}

.team-heading h2{

font-size:40px;

}

.team-card h3{

font-size:34px;

}

.team-card p{

font-size:22px;

line-height:34px;

}

.team-image{

margin:auto auto 25px;

}

.team-card{

text-align:center;

}

}
 
/* ===== TINOR DELTA CORE VALUES ===== */

.td-core{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:white;
    padding:100px;
}
/* container */

.td-core-container{
  max-width: 1000px;
  margin: auto;
  text-align: center;
  z-index: 3;
  position: relative;
}

/* title */

.td-core h2{
  font-size: 50px;
  color: #212fd2; /* Tinor Delta blue */
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* paragraph */

.td-core p{
  font-size: 20px;
  color: #555;
  line-height: 1.7;
}

/* ===== time line  ===== */
/* ===== Tinor Delta Timeline ===== */
.td-timeline
{
    position: relative;
    background: linear-gradient(135deg,#0f172a,#020617);
    padding: 100px 0;
    overflow: hidden;
}
.td-timeline{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
/* WATERMARK */
.td-watermark
{
    position: absolute;
    font-size: 220px;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    transition: 0.6s ease;
}

/* CONTAINER */
.td-container
{
    width: 100%;
    height:55vh;
    margin: auto;
    overflow: hidden;
}

/* TRACK */
.td-track
{
    display: flex;
    transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}

/* SLIDE */
.td-slide
{
    min-width: 100%;
    text-align: center;
    color: white;
}

.td-slide h2
{
    font-size: 40px;
    margin-bottom: 15px;
}

.td-slide p
{
    font-size: 18px;
    opacity: 0.8;
}

/* NAVIGATION */
.td-nav
{
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 30px;
    position: relative;
}

 
/* DOT */
.td-dot
{
    position: relative;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.td-dot::after
{
    content: "";
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    display: block;
    margin: auto;
    margin-top: 10px;
    transition: 0.3s;
}

.td-dot.active::after
{
    background: #2563eb;
    transform: scale(1.4);
}
 
 .panel{
    min-height:100vh;
    width:100%;
    position:relative;
    overflow:hidden;
}

.info-box{
    min-height:100vh;
    background:#ffffff;
    z-index:1;
}

.info-box img{
    width:100%;
    height:100vh;
    object-fit:cover;
    display:block;
}

.td-core{
    min-height:100vh;
    background:#f5f6fa;
    z-index:2;
}

.td-timeline{
    min-height:100vh;
    background:#0f172a;
    z-index:4;
}

.footer-panel{
    min-height:100vh;
    background:#ffffff;
    z-index:5;
}
/* =========================
   CAREERS  
========================= */
.careers-hero {
  background: #f2f2f2;
  padding: 80px 60px;
}

.careers-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT SIDE */

.careers-left {
  flex: 1;
}

.careers-left h1 {
  font-size: 52px;
  font-weight: 700;
  color: #333;
}

.careers-left h1 span {
  font-weight: 800;
}

/* RIGHT SIDE IMAGES */

.careers-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.careers-right .img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.careers-right .big {
  height: 220px;
}

.careers-right .small {
  height: 160px;
}

/* ================= SEARCH SECTION ================= */
.search-wrapper {
  background: #fcfbfb;
  padding: 20px 20px;
  width: 100%;
}

.search-box {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  background: #fcfbfb;
  border-radius: 0px;
  overflow: hidden;
}

.input-group {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 15px;
  border-right:0;
}

.input-group:last-child {
  border-right: none;
}

.icon {
  margin-right: 10px;
  font-size: 18px;
}

.input-group input {
  width: 100%;
  border: none;
  outline: none;
  background: #e9e9e9;
  padding: 30px 40px;
  border-radius: 0px;
  font-size: 16px;
}

.search-btn {
  background: #1818d6;
  color: #fff;
  border: none;
  padding: 30px 50px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0;
}

.search-btn:hover {
  background: #1423cc;
}
 @media (max-width: 768px) {
  .search-box {
    flex-direction: column;
  }

  .input-group {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .search-btn {
    width: 100%;
    border-radius: 0;
  }
}
/* ================= JOB SECTION ================= */

.career-jobs-section {
  padding: 80px 60px;
  background: #f7f7f7;
}
.career-jobs-section h1 {
  text-align: center;
  font-size: 42px;
  color: #212fd2;
  margin-bottom: 50px;
}
.career-jobs-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT JOB LIST */

.job-list {
  flex: 2;
}

.job-card {
  background: #fff;
  padding: 30px;
  border: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.job-card h3 {
  color: #1a73a8;
  font-size: 24px;
  margin-bottom: 15px;
}

.job-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.job-location {
  color: #777;
  font-size: 14px;
}

.apply-btn {
  background: #241fc1;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 0px;
  cursor: pointer;
}

/* RIGHT CV BOX */

.cv-box {
  flex: 1;
  background: #fff;
  padding: 40px;
  border: 1px solid #e5e5e5;
  text-align: center;
}

.cv-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.cv-box p {
  color: #666;
  margin-bottom: 25px;
}

.drop-btn {
  background: #1a73a8;
  color: #1a73a8;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 0px;
  cursor: pointer;
}
/* CV FORM SECTION */

.cv-form-section {
  padding: 100px 60px;
  background: #f7f7f7;
}

.cv-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border: 1px solid #ddd;
}

.cv-form .form-row {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.cv-form label {
  margin-bottom: 8px;
  font-weight: 600;
}

.cv-form input,
.cv-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.cv-form textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  background: #1a73a8;
  color: #fff;
  padding: 15px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
/* ===== CV FORM SECTION ===== */

.cv-section {
  width: 100%;
  padding: 80px 60px;
  background: #f7f7f7;
}

.cv-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border: 1px solid #ddd;
}

.cv-container h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.form-row label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  padding: 14px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.form-row textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  background: #1a73a8;
  color: white;
  padding: 15px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
}
/* ==========================
   CV BOX
========================== */

.cv-box{
    max-width:650px;
    margin:70px auto;
    padding:50px 40px;
    background:#ffffff;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border-top:5px solid #212fd2;
    transition:all .35s ease;
}

.cv-box:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(33,47,210,.18);
}

.cv-box h3{
    font-size:2rem;
    color:#212fd2;
    font-weight:700;
    margin-bottom:15px;
}

.cv-box p{
    font-size:1rem;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.cv-box button{
    padding:15px 35px;
    border:none;
    border-radius:50px;
    background:#212fd2;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:all .35s ease;
    letter-spacing:1px;
}

.cv-box button:hover{
    background:#0d1b9c;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(33,47,210,.35);
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width:768px){

    .cv-box{
        margin:50px 20px;
        padding:35px 25px;
    }

    .cv-box h3{
        font-size:1.6rem;
    }

    .cv-box p{
        font-size:0.95rem;
    }

    .cv-box button{
        width:100%;
        padding:15px;
    }

}
/* ================= service PAGE ================= */
.service-hero {
  position: relative;
  height: 90vh;
  width: 100%;

  background: url("assets/images/service.jpg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* Dark blue gradient overlay */
.service-hero .overlay {
  position: absolute;
  inset: 0;

  background:transparent
}

/* Breadcrumb */
.breadcrumb {
  position: absolute;
  top: 30px;
  left: 40px;

  background: white;
  padding: 12px 20px;
  border-radius: 8px;

  font-size: 15px;
  font-weight: 500;
  color: #241fc1;

  z-index: 2;
}
 .dept-box{
  background: #f5f7fa;
  
 }

.hero-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-content p {
  font-size: 220px;
  line-height: 1.6;
}
.td-video-section {
  padding: 100px 60px;
  background: #f5f7fa;
}

.td-video-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

/* Video */

.td-video {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.td-video iframe {
  width: 100%;
  height: 400px;
}

/* Text */

.td-video-text {
  flex: 1;
}

.td-video-text h2 {
  font-size: 42px;
  color: #241fc1;
  margin-bottom: 15px;
  padding: 10px;
  font-weight: 800;
}

.td-video-text .quote {
  font-size: 30px;
  padding: 10px ;
  font-style: italic;
  color: #241fc1;
  margin-bottom: 30px;
}

.td-video-text p {
  font-size: 18px;
  padding: 20px;
  line-height: 1.7;
  color: #444;
}

 

.td-methods {
  padding: 100px 60px;
  background: #f4f7fb;
}

.td-methods-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */

.td-methods-text {
  flex: 1;
}

.td-methods-text h2 {
  font-size: 44px;
  color: #241fc1;
  margin-bottom: 40px;
  font-weight: 800;
}

/* BULLET LIST */

.td-list {
  list-style: none;
  padding: 10px;
}

.td-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px; 
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.td-list li::before {
  content: "✔";
  position: absolute;
  left: 10px;
  top: 300px;
  color: #241fc1;
  font-weight: bold;
}

/* Blue icon bullet */

.td-list li::before {
 
 
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
   
}

/* RIGHT IMAGE */

.td-methods-image {
  flex: 1;
}

.td-methods-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

 

 
 
 
.tinor-ethical {
  padding: 100px 60px;
  background: #f2f5f9;
}

.tinor-ethical-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 70px;
}

.tinor-ethical-header h2 {
  font-size: 42px;
  color: #241fc1;
  font-weight: 800;
  margin-bottom: 20px;
}

.tinor-ethical-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* CARDS GRID */

.tinor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

/* CARD */

.tinor-card {
  background: white;
  padding: 45px 35px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s;
}

.tinor-card:hover {
  transform: translateY(-8px);
}

/* Right blue line accent */

.tinor-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 6px;
  height: 60%;
  background: #241fc1;
  border-radius: 10px;
}

/* Icon */

.icon-circle {
  width: 70px;
  height: 70px;
  background: #241fc1;
  color: white;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

/* Text */

.tinor-card h3 {
  font-size: 22px;
  color: #241fc1;
  margin-bottom: 15px;
  font-weight: 700;
}

.tinor-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

 /* ================= MOBILE (max-width: 768px) ================= */
@media (max-width: 768px) {

  /* HERO SECTION */
  .service-hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h2 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 16px;   /* FIX (you used 220px 😭) */
    line-height: 1.5;
  }

  /* VIDEO SECTION */
  .td-video-section {
    padding: 60px 20px;
  }

  .td-video-container {
    flex-direction: column;
    gap: 30px;
  }

  .td-video iframe {
    height: 220px;
  }

  .td-video-text h2 {
    font-size: 26px;
    padding: 0;
  }

  .td-video-text .quote {
    font-size: 20px;
    padding: 0;
  }

  .td-video-text p {
    font-size: 15px;
    padding: 0;
  }

  /* METHODS SECTION */
  .td-methods {
    padding: 60px 20px;
  }

  .td-methods-container {
    flex-direction: column;
    gap: 40px;
  }

  .td-methods-text h2 {
    font-size: 26px;
    text-align: center;
  }

   .td-methods-container {
    display: flex;
    flex-direction: column;
  }

  .td-methods-image {
    order: -1;   /* 🔥 image goes to top */
  }

  .td-list li {
    padding-left: 28px !important;   /* space for numbers */
    position: relative;
    font-size: 14px;
  }

  .td-list li::before {
    position: absolute;
    left: 0;
    top: 0;

    width: 24px;                     /* 🔥 FIX alignment */
    text-align: right;               /* numbers line up perfectly */

    font-size: 14px;
    font-weight: 600;
    color: #241fc1;
  }

}


  .tinor-ethical-header h2 {
    font-size: 24px;
    line-height: 1.4;
    padding: 0 15px;

    word-break: normal;
    white-space: normal;
  }


  /* IMAGE */
  .td-methods-image img {
    border-radius: 15px;
  }

   


/* ================= TABLET (769px - 1024px) ================= */
@media (max-width: 1024px) {

  .td-video-container,
  .td-methods-container {
    flex-direction: column;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 18px;
  }

}


.state-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:350px;
}

.state-card{
    position:relative;
    overflow:hidden;
    text-decoration:none;
}

.state-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.state-card .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    transition:.4s;
}

.state-card h2{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:58px;
    font-weight:700;
    z-index:2;
    transition:.4s;
    text-align:center;
}

.state-card:hover img{
    transform:scale(1.12);
}

.state-card:hover .overlay{
    background:rgba(0,0,0,.25);
}

.state-card:hover h2{
    transform:translate(-50%,-50%) scale(1.08);
}

@media(max-width:900px){
    .state-grid{
        grid-template-columns:1fr;
        grid-auto-rows:300px;
    }

    .state-card h2{
        font-size:40px;
    }
}
 
 /* ================= service PAGE ================= */
.legal-hero {
  position: relative;
  height: 86vh;
  width: 100%;
  background: 
      
    url("assets/images/legal.jpg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px;
}

 

/* Hero Text */

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .breadcrumb {
    left: 20px;
    font-size: 12px;
  }
}
/* LEGAL SECTION */

.legal-section {
  background: #f5f6fa;
  padding: 80px 8%;
}

.legal-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT TEXT */

.legal-text {
  flex: 1;
  min-width: 320px;
}

.legal-text h2 {
  font-size: 42px;
  color: #241fc1;   /* Tinor blue */
  margin-bottom: 20px;
  font-weight: 700;
}

.legal-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}

/* RIGHT IMAGE */

.legal-image {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.legal-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

 
 
.services-section {
  width: 100%;
  padding: 60px 0;
  background: #f8f9fb;
}

.services-container {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
/* LEFT SIDE */
.services-list {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.tab-btn {
  padding: 18px 15px;
  border: none;
  border-bottom: 1px solid #100d0d;
  background: transparent;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

 
.tab-btn {
  color: black;
}
.tab-btn.active {
  color: #030303;
  border-left: 4px solid #1F2FD1;
  background: #e2e4e9;
}

/* RIGHT SIDE */
.services-content {
  width: 70%;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

.services-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
/* ===========================
   CTA SECTION
=========================== */

.cta-section {
    padding: 90px 8%;
    background: #f5f8ff;
}

.cta-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    background: #ffffff;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Left Image */

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    transition: .5s;
}

.cta-image img:hover {
    transform: scale(1.04);
}

/* Right Content */

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #0d1b3d;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 35px;
}

/* Button */

.cta-btn {
    background: #212fd2;
    color: #fff;
    border: none;
    padding: 18px 42px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(33,47,210,.25);
}

.cta-btn:hover {
    background: #0f1aa8;
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(33,47,210,.35);
}

/* Responsive */

@media(max-width:992px){

    .cta-container{
        flex-direction:column;
        text-align:center;
        padding:45px;
    }

    .cta-content h2{
        font-size:2.3rem;
    }

    .cta-image img{
        max-width:420px;
    }

}

@media(max-width:768px){

    .cta-section{
        padding:60px 5%;
    }

    .cta-container{
        padding:30px;
        gap:35px;
    }

    .cta-content h2{
        font-size:1.9rem;
    }

    .cta-content p{
        font-size:1rem;
    }

    .cta-btn{
        width:100%;
        padding:16px;
    }

}
/*================
contact section
=================*/
 .td-contact-hero{
    width: 100%;
    padding: 120px 20px;
    background: #f5f7fb;
    text-align: center;
}

.td-contact-content{
    max-width: 900px;
    margin: 0 auto;
}

.td-contact-content h2{
    font-size: 4rem;
    font-weight: 700;
    color: #0f3570;
    margin-bottom: 30px;
}

.td-contact-content p{
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

 

.contact-wrapper{
    max-width: 1400px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 35% 65%;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* LEFT SIDE */

.contact-info{
    background: #2433d8;
    color: white;
    padding: 70px 50px;
}

.contact-info h2{
    font-size: 3rem;
    margin-bottom: 60px;
}

.info-block{
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.icon{
    font-size: 2rem;
}

.info-block h4{
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.info-block p{
    font-size: 1.1rem;
    opacity: .95;
}

/* RIGHT SIDE */

.contact-form{
    padding: 70px;
    background: #fff;
}

.contact-form h1{
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #111;
}

.contact-form .sub{
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.row{
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.row input{
    flex: 1;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 18px;
}

.contact-form textarea{
    height: 180px;
    margin-bottom: 30px;
}

.contact-form button{
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 10px;
    background: #2433d8;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover{
    background: #1826b8;
}

/* REMOVE HERO */

.td-contact-hero{
    display:none;
}

/* MOBILE */

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns: 1fr;
        margin: 30px 20px;
    }

    .contact-info{
        padding: 40px;
    }

    .contact-form{
        padding: 40px;
    }

    .row{
        flex-direction: column;
    }

    .contact-form h1{
        font-size: 2.2rem;
    }
}
/* ==========================
   drop.cv
========================== */
/* =========================
   GOOGLE FONT
========================= */


 

/* =========================
   HERO SECTION
========================= */

.careers-hero{
    width:100%;
    padding:90px 8%;
    background:linear-gradient(135deg,#0d1b4c,#212fd2);
    overflow:hidden;
}

.careers-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* Left */

.careers-left{
    flex:1;
}

.career-logo{
    width:150px;
    margin-bottom:35px;
}

.careers-left h1{
    font-size:4rem;
    color:#fff;
    line-height:1.2;
    font-weight:700;
}

.careers-left h1 span{
    color:#ffcc00;
}

/* Right */

.careers-right{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.img{
    width:100%;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
    transition:.5s;
}

.big{
    height:260px;
}

.small{
    height:190px;
}

.img:hover{
    transform:translateY(-10px) scale(1.03);
}

/* =========================
   FORM SECTION
========================= */

.cv-section{
    padding:90px 8%;
}

.cv-container{
    max-width:850px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.cv-container h2{
    text-align:center;
    font-size:2.5rem;
    color:#212fd2;
    margin-bottom:40px;
}

#cvForm{
    display:flex;
    flex-direction:column;
    gap:18px;
}

#cvForm label{
    font-weight:600;
    color:#222;
}

#cvForm input,
#cvForm textarea{
    width:100%;
    padding:16px;
    border:1px solid #d8d8d8;
    border-radius:12px;
    font-size:15px;
    transition:.3s;
    outline:none;
    background:#fafafa;
}

#cvForm textarea{
    resize:none;
    min-height:140px;
}

#cvForm input:focus,
#cvForm textarea:focus{
    border-color:#212fd2;
    background:#fff;
    box-shadow:0 0 0 4px rgba(33,47,210,.12);
}

input[type=file]{
    padding:12px;
    background:#fff;
}

.submit-btn{
    margin-top:15px;
    background:#212fd2;
    color:#fff;
    border:none;
    padding:18px;
    font-size:17px;
    border-radius:50px;
    cursor:pointer;
    transition:.35s;
    font-weight:600;
}

.submit-btn:hover{
    background:#0d1b9c;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(33,47,210,.30);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

.careers-container{
    flex-direction:column;
    text-align:center;
}

.careers-left h1{
    font-size:3rem;
}

.careers-right{
    width:100%;
}

.cv-container{
    padding:35px;
}

}

@media(max-width:768px){

.careers-hero{
    padding:70px 5%;
}

.cv-section{
    padding:70px 5%;
}

.careers-left h1{
    font-size:2.3rem;
}

.career-logo{
    width:120px;
}

.careers-right{
    grid-template-columns:1fr;
}

.big,
.small{
    height:240px;
}

.cv-container{
    padding:25px;
}

.cv-container h2{
    font-size:2rem;
}

.submit-btn{
    width:100%;
}

}
/* =========================
   tvs
========================= */
 /* ==========================
   FINANCE HERO SECTION
========================== */

.finance-hero{
    width:100%;
    min-height:100vh;
    padding:80px 8%;
    background:linear-gradient(135deg,#eef3ff,#ffffff);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    overflow:hidden;
}

/* Left Content */

.hero-content{
    flex:1;
    max-width:600px;
}

.hero-content h1{
    font-size:4rem;
    font-weight:700;
    color:#1d2c8f;
    margin-bottom:25px;
    line-height:1.1;
}

.hero-content p{
    font-size:1.1rem;
    line-height:1.9;
    color:#555;
    margin-bottom:40px;
}

/* Button */

.hero-content button{
    padding:18px 40px;
    border:none;
    border-radius:50px;
    background:#212fd2;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 15px 35px rgba(33,47,210,.25);
}

.hero-content button:hover{
    background:#0f1aa8;
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(33,47,210,.35);
}

/* Right Image */

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:600px;
    border-radius:25px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    transition:.5s;
}

.hero-image img:hover{
    transform:scale(1.04);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

    .finance-hero{
        flex-direction:column-reverse;
        text-align:center;
        padding:70px 6%;
        min-height:auto;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .hero-image img{
        max-width:500px;
    }
}

@media(max-width:768px){

    .finance-hero{
        padding:60px 5%;
        gap:40px;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

    .hero-content p{
        font-size:1rem;
    }

    .hero-content button{
        width:100%;
        padding:16px;
    }

    .hero-image img{
        max-width:100%;
    }
}

/* ==========================
   FOOTER
========================== */
.footer-panel{
    min-height:100vh;
    height:auto;
    background:#000000;
}
.footer-panel{
    min-height:100vh;
    height:auto;
    width:100%;
    position:relative;
    background:#000000;
    z-index:10;
}
.td-footer{
    background:#000000;
    padding:70px 8%;
    border-top:1px solid #e5e5e5;
}

.td-footer-container{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.footer-brand{
    flex:1;
    min-width:250px;
}

.footer-logo-wrap{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.footer-logo{
    background:linear-gradient(135deg,#241fc1,#3137a7);
    color:#fff;
    padding:10px 14px;
    border-radius:10px;
    font-size:20px;
    font-weight:700;
}

.footer-company-name{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.footer-company-name span:first-child{
    color:#241fc1;
    font-weight:600;
}

.footer-company-name span:last-child{
    color:#241fc1;
    font-weight:700;
}

.footer-brand h4{
    margin-bottom:15px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons img{
    width:35px;
    height:35px;
    transition:.3s;
}

.social-icons img:hover{
    transform:translateY(-4px);
}

.footer-links{
    flex:1;
    min-width:180px;
}

.footer-links h3{
    margin-bottom:15px;
    font-size:20px;
}

.footer-links a{
    font-family:inherit;
    display:block;
    text-decoration:none;
    color:#ffff;
    margin-bottom:10px;
    transition:.3s;
}

.footer-links a:hover{
    color:#212fd2;
}

.footer-newsletter{
    flex:1;
    min-width:280px;
}

.newsletter-box{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.newsletter-box input{
    flex:1;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
}

.newsletter-box button{
    padding:12px 20px;
    border:none;
    border-radius:8px;
    background:#212fd2;
    color:white;
    cursor:pointer;
}

.visitor-counter{
    margin-top:20px;
    background:#111;
    color:white;
    text-align:center;
    padding:15px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid #ddd;
    color:#666;
}

/* Mobile */

@media(max-width:768px){

    .td-footer-container{
        flex-direction:column;
    }

    .newsletter-box{
        flex-direction:column;
    }

    .newsletter-box button{
        width:100%;
    }

}
/* ==============================================
   COMPLETE MOBILE RESPONSIVE CSS
   Covers: 480px | 768px | 900px | 992px | 1024px
=============================================== */


/* ──────────────────────────────────────────────
   BREAKPOINT: max-width 1024px  (Tablet)
────────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Hero */
  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 18px;
  }

  /* About */
  .about-overlay {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }

  .about-video-box {
    height: 380px;
  }

  .about-content h1 {
    font-size: 46px;
  }

  /* Video + Methods side-by-side → stacked */
  .td-video-container,
  .td-methods-container {
    flex-direction: column;
    gap: 40px;
  }

  /* Finance hero */
  .finance-hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 70px 6%;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-image img {
    max-width: 500px;
  }

  /* CTA */
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 45px;
  }

  .cta-content h2 {
    font-size: 2.3rem;
  }

  .cta-image img {
    max-width: 420px;
  }

  /* Careers */
  .careers-container {
    flex-direction: column;
    text-align: center;
  }

  .careers-left h1 {
    font-size: 3rem;
  }

  .careers-right {
    width: 100%;
  }

  .cv-container {
    padding: 35px;
  }

  /* Tinor ethical cards */
  .tinor-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}


/* ──────────────────────────────────────────────
   BREAKPOINT: max-width 992px
────────────────────────────────────────────── */
@media (max-width: 992px) {

  /* Finance hero */
  .finance-hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 70px 6%;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-image img {
    max-width: 500px;
  }

  /* CTA */
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 45px;
  }

  .cta-content h2 {
    font-size: 2.3rem;
  }

  .cta-image img {
    max-width: 420px;
  }

  /* Careers drop CV */
  .careers-container {
    flex-direction: column;
    text-align: center;
  }

  .careers-left h1 {
    font-size: 3rem;
  }

  .careers-right {
    width: 100%;
  }

  .cv-container {
    padding: 35px;
  }

  /* Contact wrapper */
  .contact-wrapper {
    grid-template-columns: 1fr;
    margin: 30px 20px;
  }

  .contact-info {
    padding: 40px;
  }

  .contact-form {
    padding: 40px;
  }

  .row {
    flex-direction: column;
  }

  .contact-form h1 {
    font-size: 2.2rem;
  }
}


/* ──────────────────────────────────────────────
   BREAKPOINT: max-width 900px
────────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Stats: 4-col → 2-col */
  .stats-section {
    grid-template-columns: 1fr 1fr;
  }

  /* Services: 2-col → 1-col */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Hero h1 */
  .hero-content h1 {
    font-size: 50px;
  }

  /* Services panel padding */
  .services-panel {
    padding: 100px 30px;
  }

  /* State grid: 2-col → 1-col */
  .state-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .state-card h2 {
    font-size: 40px;
  }
}


/* ──────────────────────────────────────────────
   BREAKPOINT: max-width 768px
────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── HEADER ── */
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 18px 40px rgba(20, 31, 89, 0.12);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  /* ── HERO ── */
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }

  /* ── STATS ── */
  .stats-section {
    grid-template-columns: 1fr;
  }

  .stats-panel,
  .services-panel {
    height: auto;
    min-height: 100vh;
  }

  .stats-panel {
    padding: 100px 20px 60px;
  }

  .stat {
    padding: 28px 20px;
  }

  /* ── SERVICES ── */
  .services-panel {
    padding: 80px 20px 60px;
  }

  .service-card {
    padding: 30px 24px;
  }

  /* ── FOOTER ── */
  .footer-panel h2 {
    font-size: 36px;
    text-align: center;
  }

  /* ── ABOUT ── */
  .about-overlay {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .about-content h1 {
    font-size: 36px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-video-box {
    height: 280px;
    border-radius: 16px;
  }

  /* ── CORE VALUES ── */
  .td-core {
    padding: 60px 20px;
  }

  .td-core h2 {
    font-size: 32px;
  }

  .td-core p {
    font-size: 16px;
  }

  /* ── TIMELINE ── */
  .td-slide h2 {
    font-size: 26px;
  }

  .td-slide p {
    font-size: 15px;
    padding: 0 20px;
  }

  .td-nav {
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 15px;
  }

  /* ── SERVICE HERO ── */
  .service-hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h2 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .breadcrumb {
    left: 20px;
    font-size: 12px;
  }

  /* ── VIDEO SECTION ── */
  .td-video-section {
    padding: 60px 20px;
  }

  .td-video-container {
    flex-direction: column;
    gap: 30px;
  }

  .td-video iframe {
    height: 220px;
  }

  .td-video-text h2 {
    font-size: 26px;
    padding: 0;
  }

  .td-video-text .quote {
    font-size: 20px;
    padding: 0;
  }

  .td-video-text p {
    font-size: 15px;
    padding: 0;
  }

  /* ── METHODS SECTION ── */
  .td-methods {
    padding: 60px 20px;
  }

  .td-methods-container {
    flex-direction: column;
    gap: 30px;
  }

  .td-methods-image {
    order: -1; /* image on top */
  }

  .td-methods-image img {
    border-radius: 15px;
  }

  .td-methods-text h2 {
    font-size: 26px;
    text-align: center;
  }

  .td-list li {
    font-size: 14px;
    padding-left: 28px;
  }

  /* ── TINOR ETHICAL ── */
  .tinor-ethical {
    padding: 60px 20px;
  }

  .tinor-ethical-header h2 {
    font-size: 26px;
    line-height: 1.4;
    word-break: normal;
    white-space: normal;
  }

  .tinor-ethical-header p {
    font-size: 15px;
  }

  .tinor-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ── LEGAL HERO ── */
  .legal-hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  /* ── LEGAL SECTION ── */
  .legal-section {
    padding: 60px 5%;
  }

  .legal-container {
    flex-direction: column;
    gap: 30px;
  }

  .legal-text h2 {
    font-size: 28px;
  }

  .legal-text p {
    font-size: 16px;
  }

  /* ── SERVICES TAB SECTION ── */
  .services-container {
    flex-direction: column;
    width: 95%;
    gap: 20px;
  }

  .services-list {
    width: 100%;
  }

  .services-content {
    width: 100%;
  }

  /* ── SEARCH SECTION ── */
  .search-box {
    flex-direction: column;
  }

  .input-group {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .search-btn {
    width: 100%;
    border-radius: 0;
  }

  /* ── CAREERS HERO ── */
  .careers-hero {
    padding: 70px 5%;
  }

  .careers-left h1 {
    font-size: 2.3rem;
  }

  .career-logo {
    width: 120px;
  }

  .careers-right {
    grid-template-columns: 1fr;
  }

  .big,
  .small {
    height: 240px;
  }

  /* ── JOB CARDS SECTION ── */
  .career-jobs-section {
    padding: 60px 20px;
  }

  .career-jobs-container {
    flex-direction: column;
  }

  .job-card {
    flex-direction: column;
    gap: 15px;
  }

  .job-card h3 {
    font-size: 20px;
  }

  .cv-box {
    margin: 50px 20px;
    padding: 35px 25px;
  }

  .cv-box h3 {
    font-size: 1.6rem;
  }

  .cv-box p {
    font-size: 0.95rem;
  }

  .cv-box button {
    width: 100%;
    padding: 15px;
  }

  /* ── CV FORM ── */
  .cv-section {
    padding: 70px 5%;
  }

  .cv-container {
    padding: 25px;
  }

  .cv-container h2 {
    font-size: 2rem;
  }

  .submit-btn {
    width: 100%;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 60px 5%;
  }

  .cta-container {
    padding: 30px;
    gap: 35px;
  }

  .cta-content h2 {
    font-size: 1.9rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-btn {
    width: 100%;
    padding: 16px;
  }

  /* ── CONTACT ── */
  .contact-wrapper {
    grid-template-columns: 1fr;
    margin: 30px 15px;
  }

  .contact-info {
    padding: 35px 25px;
  }

  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .contact-form {
    padding: 35px 25px;
  }

  .contact-form h1 {
    font-size: 2rem;
  }

  .row {
    flex-direction: column;
    gap: 15px;
  }

  /* ── FINANCE HERO ── */
  .finance-hero {
    padding: 60px 5%;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content button {
    width: 100%;
    padding: 16px;
  }

  .hero-image img {
    max-width: 100%;
  }

  /* ── TD FOOTER ── */
  .td-footer {
    padding: 50px 5%;
  }

  .td-footer-container {
    flex-direction: column;
    gap: 35px;
  }

  .newsletter-box {
    flex-direction: column;
  }

  .newsletter-box button {
    width: 100%;
  }
}


/* ──────────────────────────────────────────────
   BREAKPOINT: max-width 480px  (Small phones)
────────────────────────────────────────────── */
@media (max-width: 480px) {

  /* ── HEADER ── */
  .header-container {
    padding: 12px 18px;
  }

  .logo {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .brand-text {
    font-size: 15px;
  }

  /* ── HERO ── */
  .hero-content {
    width: calc(100% - 36px);
  }

  .hero-content h1 {
    font-size: clamp(32px, 10vw, 50px);
  }

  .hero-content p {
    font-size: 16px;
  }

  /* ── SERVICES PANEL ── */
  .services-panel {
    padding: 80px 18px 60px;
  }

  .services-panel h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .service-card span {
    font-size: 38px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  /* ── STATS ── */
  .stat h1 {
    font-size: 50px;
  }

  .stat p {
    font-size: 13px;
  }

  /* ── ABOUT ── */
  .about-content h1 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
  }

  .about-video-box {
    height: 230px;
  }

  /* ── CORE VALUES ── */
  .td-core h2 {
    font-size: 26px;
  }

  /* ── TIMELINE ── */
  .td-slide h2 {
    font-size: 22px;
    padding: 0 15px;
  }

  .td-watermark {
    font-size: 100px;
  }

  /* ── TINOR ETHICAL ── */
  .tinor-ethical-header h2 {
    font-size: 22px;
  }

  .tinor-card {
    padding: 30px 22px;
  }

  .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  /* ── CAREERS ── */
  .careers-left h1 {
    font-size: 1.8rem;
  }

  .big,
  .small {
    height: 200px;
  }

  /* ── CONTACT ── */
  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-form h1 {
    font-size: 1.6rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px;
    font-size: 15px;
  }

  .contact-form button {
    font-size: 17px;
  }

  /* ── FOOTER PANEL ── */
  .footer-panel h2 {
    font-size: 28px;
  }

  .footer-panel p {
    font-size: 15px;
  }

  /* ── TD FOOTER ── */
  .footer-logo {
    font-size: 17px;
  }

  .footer-links h3 {
    font-size: 17px;
  }

  .visitor-counter {
    font-size: 15px;
  }

  /* ── CTA ── */
  .cta-content h2 {
    font-size: 1.6rem;
  }

  /* ── LEGAL ── */
  .legal-text h2 {
    font-size: 24px;
  }
}


/* ──────────────────────────────────────────────
   ACCESSIBILITY: Reduced Motion
────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}