@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;

}

/* Body */
body {
    font-family: "Barlow", sans-serif;
    background-color: #ffffff;
}

/* Header */
.header {
    background-color: #fff;
    padding: 10px 20px;
}

/* Header container */
.header .container {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* sab right side */
    width: 100%;               /* pura header width */
    max-width: 1200px;         /* page ke right edge ke andar */
    margin: 0 auto;            /* center container block */
    padding-right: 0;          /* extra right padding hatao */
}

/* Logo */
.logo img {
    height: 60px;
	margin-right:20px
}
	@media (min-width: 768px) {  .logo img  {height:75px}}
/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
	vertical-align:middle;
}

/* Icons */
.social-icons img {
    width: 20px;
    height: 20px;
    margin-left: 4px;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.8;
}

.social-icons img:hover {
    transform: scale(1.1);
    opacity: 1;
}

.join-button {
    display: inline-block;
    margin-left: 4px;
    padding: 6px 10px;          /* small button */
    font-size: 14px;             /* small text */
    font-weight: 500;
    color: #fff; 
    background: #aaa;
    border: 1px solid #aaa;      /* grayish outline */
    border-radius: 50px;          /* rounded corners */
    text-decoration: none;
    transition: all 0.3s ease;  /* smooth hover effect */
}

.join-button:hover {
    color: #aaa; 
    background: #fff;
    border: 1px solid #aaa; 
}

/* Banner - Mobile first */
.banner {
    position: relative;
    width: 100%;
    height: auto; 
    overflow: hidden;
	z-index: 1;
}

.banner video {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transform: translateY(-50);
}

/* Tablet: min-width 768px */
@media (min-width: 768px) {
    .banner {
        height: 340px;
    }
    .banner video {
        height: 340px;
        object-fit: cover;      /* fill banner, crop if needed */
        object-position: center;
        transform: translateY(-50); 
    }
}

/* Small desktop: min-width 992px */
@media (min-width: 992px) {
    .banner {
        height: 420px;
    }
    .banner video {
        height: 420px;
        object-fit: cover;
        object-position: center;
        transform: translateY(-50);
    }
}

/* Large desktop: min-width 1200px */
@media (min-width: 1200px) {
    .banner {
        height: 510px;
    }
    .banner video {
        height: 510px;
        object-fit: cover;
        object-position: center;
        transform: translateY(-150);
    }
}

/* Extra large desktop: min-width 1500px */
@media (min-width: 1500px) {
    .banner {
        height: 540px;
    }
    .banner video {
        height: 540px;
        object-fit: cover;
        object-position: center;
        transform: translateY(-150);
    }
}

/* Page Content Wrapper - fixed width centered */
.page-content {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto; /* center page content */
    padding: 20px 0;
}

/* Hero Title Section */
.hero-title {
    text-align: left; /* center me align */
    margin: 10px 0;
    font-family: 'Arial', sans-serif;
}

/* Line 1 - Biggest */
.hero-title .line1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 0px;
}

/* Line 2 - Thoda chota */
.hero-title .line2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 0px;
}

/* Line 3 - Medium */
.hero-title .line3 {
    font-size: 48px;
    font-weight: bold;
}

/* Fighter Section */
.fighter-section {
    text-align: center;  /* center me image */
    margin: 25px 0 0px;      /* top-bottom spacing */
}

.fighter-section img {
    width: 100%;         /* page-content width ke andar full width */
    max-width: 100%;     /* page-content ke limit me rahe */
    height: auto;        /* aspect ratio maintain rahe */
    display: block;
    margin: 0 auto;      /* center align */
    border-radius: 0px;  /* optional, thoda rounded */
}

.fighter-section2 {
    text-align: center;  /* center me image */
    margin: 5px 0 0px;      /* top-bottom spacing */
}
	@media (min-width: 768px) {  .fighter-section2  {margin: 15px 0 5px; }}
.fighter-section2 img {
    width: 100%;         /* page-content width ke andar full width */
    max-width: 100%;     /* page-content ke limit me rahe */
    height: auto;        /* aspect ratio maintain rahe */
    display: block;
    margin: 0 auto;      /* center align */
    border-radius: 0px;  /* optional, thoda rounded */
}


.spirit{
    font-size:24px;
}

.journey{
    font-size:20px;
}

.believe{
    font-size:24px;
}

.derserves{
    font-size:24px;
}

/* Two Column Section */
.two-column-section {
    display: flex;
    flex-wrap: wrap; /* responsive ke liye */
    direction: rtl;
    width: 100%;
}
/* Dont change this column */
.two-column-section .left {
    width: 75%;
    background-color: #ede9e5; /* light grey */
    padding: 15px 20px;
    direction: rtl;        /* keep RTL reading order */
    text-align: right;     /* align text to the right */
    display: block;        /* remove flex */
	font-family: "Noto Nastaliq Urdu", serif;
}

/* Fix UL default indentation */
.two-column-section .left ul {
    padding-left: 0;       /* remove default left padding */
    margin: 0;             /* remove default margin */
    list-style-position: inside; /* optional: bullets align with text */
    text-align: justify;
	font-family: "Noto Nastaliq Urdu", serif;
}

/* Fix UL default indentation */
.two-column-section .left ul li {
    text-align: justify;
	font-family: "Noto Nastaliq Urdu", serif;
}

	@media (min-width: 768px) {  .two-column-section .left  {padding: 30px 40px;}}

/* Right Column */
.two-column-section .right {
    width: 25%;
    background-color: #d9d6d4; /* dark grey */
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Column Image */
.two-column-section .right img {
    width: 25%;
    max-width: 25%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: -5px;
}

	@media (min-width: 768px) {  .two-column-section .right img  {    width: 45%; max-width: 45%; height: auto; display: block; border-radius: 8px;  margin-top: -75px;}}
/* Text Styling */
.two-column-section .left ul {
    font-size: 16px;
    line-height: 160%;
    color: #000; /* text black for light grey bg */
	text-align:left;
	list-style-type: none;
}
@media (min-width: 768px) {  .two-column-section .left ul  {font-size: 20px;}}
.two-column-section .left li {
	margin-bottom:10px;
}

/* Optional: Right column text if needed */
.two-column-section .right p {
    color: #fff; /* white text for dark grey bg */
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .two-column-section {
        flex-direction: column;
    }
    .two-column-section .left,
    .two-column-section .right {
        width: 100%;
    }
}


/* Profile Section */
.profile-section {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Open Sans', sans-serif;
}

/* Title / Name on top */
.profile-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
	color:#222;
    text-align: right; /* left aligned, optional: center */
    direction: rtl;
    font-family: "Noto Nastaliq Urdu", serif;
}
@media (min-width: 768px) {  .profile-title {    font-size: 24px;}}
@media (min-width: 992px) {  .profile-title {    font-size: 28px;}}
/* Profile row - one line layout */
.profile-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    direction: rtl;
    text-align: right;
}

/* Left column - profile picture */
.profile-row .left {
    width: 12%;
    justify-content: center;
    align-items: center;
    direction: rtl;
}

.profile-row .left img {
    width: 50%;
    max-width: 200px;
    border-radius: 50%;
	border:solid #8b8b8b 1px
}
@media (min-width: 768px) {  .profile-row .left img {    width: 100%;}}
/* Right column - text */
.profile-row .right {
    width: 55%;
}

.profile-row .right p {
    font-size: 18px;
    line-height: 2.5;
	text-align:right;
    font-family: 'Noto Nastaliq Urdu', serif;
}
.profile-row .right a {
    font-size: 18px;
    line-height: 1.6;
	text-align:left;
	color: #004990;

}
.profile-row .right a:hover {
	color: #222;
	font-weight:600;

}
/* Responsive for mobile */
@media (max-width: 768px) {
    .profile-row {
        flex-direction: column;
        text-align: center;
    }
    .profile-row .left,
    .profile-row .right {
        width: 100%;
		text-align:left
    }
    .profile-row .right p {
        margin-top: 0px;
    }
}



	.maincontainer { width:100%; max-width: 90%; padding:10px 0; text-align:center; margin:auto;}
	@media (min-width: 768px) {  .maincontainer {max-width: 700px;  padding:20px 0}}
	@media (min-width: 992px) {  .maincontainer {max-width: 900px; padding:20px 0}}
	@media (min-width: 1200px) {  .maincontainer {max-width: 1040px; padding:20px 0}}
	@media (min-width: 1500px) {  .maincontainer {max-width: 1080px; padding:20px 0}}
	
	.title {text-align: left; margin: 10px 0; font-family: "Barlow", sans-serif; font-weight: 500; font-style: normal; color:#222}
	@media (min-width: 768px) {  .title {font-size:36px; margin: 10px 0;}}
	@media (min-width: 992px) {  .title {font-size:36px; margin: 10px 0;}}
	@media (min-width: 1200px) {  .title {font-size:36px; margin: 10px 0;}}
	@media (min-width: 1500px) {  .title {font-size:36px; margin: 10px 0;}}
	
	.title1 {text-align: left; font-family: "Barlow", sans-serif; font-weight: 600; font-size:50px; font-style: normal; line-height:80%; color:#222}
	@media (min-width: 768px) {  .title1 {font-size:65px; }}
	@media (min-width: 992px) {  .title1 {font-size:75px; }}
	@media (min-width: 1200px) {  .title1 {font-size:85px; }}
	@media (min-width: 1500px) {  .title1 {font-size:95px; }}
	
	.title2 {text-align: left;  font-family: "Barlow", sans-serif; font-weight: 500; font-size:30px; font-style: normal; line-height:80%; color:#222}
	@media (min-width: 768px) {  .title2 {font-size:30px; }}
	@media (min-width: 992px) {  .title2 {font-size:36px; }}
	@media (min-width: 1200px) {  .title2 {font-size:40px;}}
	@media (min-width: 1500px) {  .title2 {font-size:50px; }}
	
	.title3 {text-align: left; font-family: "Barlow", sans-serif; font-weight: 600; font-size:50px; font-style: normal; line-height:70%; color:#222}
	@media (min-width: 768px) {  .title3 {font-size:65px; }}
	@media (min-width: 992px) {  .title3 {font-size:75px; }}
	@media (min-width: 1200px) {  .title3 {font-size:85px; }}
	@media (min-width: 1500px) {  .title3 {font-size:95px; }}
	
	.runningtext {text-align: right; direction: rtl;  font-family: "Noto Nastaliq Urdu", serif; font-weight: 400; font-size:16px; font-style: normal; line-height:200%; padding-top:16px; color:#222}
	@media (min-width: 768px) {  .runningtext {font-size:16px;padding-top:18px }}
	@media (min-width: 992px) {  .runningtext {font-size:18px; padding-top:20px}}
	@media (min-width: 1200px) {  .runningtext {font-size:20px; padding-top:25px}}
	@media (min-width: 1500px) {  .runningtext {font-size:20px; padding-top:30px}}
	
	.runningtextbig {text-align: right; direction: rtl; font-family: "Noto Nastaliq Urdu", serif; font-weight: 400; font-size:24px; font-style: normal; line-height:200%; padding-top:16px; margin-bottom:40px; color:#222}
	@media (min-width: 768px) {  .runningtextbig {font-size:28px;padding-top:18px; margin-bottom:40px }}
	@media (min-width: 992px) {  .runningtextbig {font-size:32px; padding-top:20px; margin-bottom:40px}}
	@media (min-width: 1200px) {  .runningtextbig {font-size:34px; padding-top:25px; margin-bottom:50px}}
	@media (min-width: 1500px) {  .runningtextbig {font-size:36px; padding-top:30px; margin-bottom:60px}}
	
	.runningtextbig2 {text-align: right; direction: rtl; font-family: "Noto Nastaliq Urdu", serif; font-weight: 400; font-size:24px; font-style: normal; line-height:180%; padding:16px 0 0; color:#222}
	@media (min-width: 768px) {  .runningtextbig2 {font-size:28px;padding:18px 0 0;}}
	@media (min-width: 992px) {  .runningtextbig2 {font-size:32px; padding:20px 0 0;}}
	@media (min-width: 1200px) {  .runningtextbig2 {font-size:34px; padding:25px 0 0;}}
	@media (min-width: 1500px) {  .runningtextbig2 {font-size:36px; padding:30px 0 0;}}
	
	.runningtextbold {text-align: left; font-family: "Noto Nastaliq Urdu", serif; font-weight: 600; font-size:16px; font-style: normal; line-height:140%; padding-top:16px; color:#222}
	@media (min-width: 768px) {  .runningtextbold {font-size:16px;padding-top:18px }}
	@media (min-width: 992px) {  .runningtextbold {font-size:18px; padding-top:20px}}
	@media (min-width: 1200px) {  .runningtextbold {font-size:20px; padding-top:25px}}
	@media (min-width: 1500px) {  .runningtextbold {font-size:20px; padding-top:30px}}
	
	.runningtext2 {text-align: right; direction: rtl; font-family: "Noto Nastaliq Urdu", serif; font-weight: 400; font-size:20px; font-style: normal; line-height:200%; padding-top:16px; color:#222}
	@media (min-width: 768px) {  .runningtext2 {font-size:24px;padding-top:18px }}
	@media (min-width: 992px) {  .runningtext2 {font-size:24px; padding-top:20px}}
	@media (min-width: 1200px) {  .runningtext2 {font-size:26px; padding-top:25x}}
	@media (min-width: 1500px) {  .runningtext2 {font-size:27px; padding-top:30x}}
	
	.runningtext3 {text-align: right; direction: rtl; font-family: "Noto Nastaliq Urdu", serif; font-weight: 400; font-size:20px; font-style: normal; line-height:200%; padding-top:16px; color:#222}
	@media (min-width: 768px) {  .runningtext3 {font-size:24px;padding-top:18px }}
	@media (min-width: 992px) {  .runningtext3 {font-size:24px; padding-top:20px}}
	@media (min-width: 1200px) {  .runningtext3 {font-size:25px; padding-top:25px}}
	@media (min-width: 1500px) {  .runningtext3 {font-size:25px; padding-top:30px}}
	
	.divider {width:100%; height:1px; background-color:#8b8b8b; margin-top:10px; margin-bottom:20px; margin-left:auto; margin-right:0}
	@media (min-width: 768px) {  .divider {width:70%; }}
	
	.top {width:99.5%; height:20px; margin-top:4px}
	@media (min-width: 768px) {  .top {height:25px; margin-top:8px}}
	
		    .copyright {
        bottom: 0;
        width: 100%;
        background-color: #333;
        color: #a7a7a7;
        text-align: center;
        padding: 8px 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400; 
        font-style: normal; 
        font-size: 12px;
    }
		.contact-form {
            max-width:800px; 
            margin: 0px auto 20px;
            padding: 30px;

            border-radius: 20px;

        }
        input, textarea {
            width: 100%;
            padding: 10px;
            margin: 8px 0;
            border: 1px solid #d7d7d7;
            border-radius: 10px;
        }
		
		input:focus-visible {
  outline: 1px solid #898989; /* Custom focus outline */
  border: 1px solid #898989;
}

		textarea:focus-visible {
  outline: 1px solid #898989; /* Custom focus outline */
  border: 1px solid #898989;
}

        button {
            background: #787878;
            color: white;
            border: none;
            padding: 10px;
            width: 100px;
            cursor: pointer;
            border-radius: 15px;
			text-align: center;
			margin:auto;
			transition: background 0.6s ease;
        }
        button:hover {
            background: #ed1c24;
        }
		h2 {
        text-align: center;
        margin-bottom: 10px;
		font-family: "Barlow", sans-serif;
		font-weight:400;
		color:#494949;
		font-size:28px;
		
    }
	
	    .contact-text {
        font-size: 14px;
        color: #494949;
		font-family: "Barlow", sans-serif; 
        font-weight: 400; 
        font-style: normal;
    }
	.contact-text a {color:#494949 !important; text-decoration:none !important; font-size: 14px; font-weight: 400; font-family: "Barlow", sans-serif; }
	.contact-text a:hover{color:#ed1c24 !important; text-decoration:none !important;}
	
	    #backToTop {
    display: none;                /* hidden by default */
    position: fixed;
    bottom: 24px;                 /* bottom-6 (24px) */
    right: 24px;                  /* right-6 (24px) */
    z-index: 50;
    width: 50px;   /* h-6 w-6 */
    height: 50px;
    background-color: #fff;
    color: #bebebe;

    border: solid 1px #d7d7d7;
    border-radius: 50%;
    padding: 12px;                /* p-3 (12px) */

    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    cursor: pointer;

    transition: opacity 0.3s ease, background-color 0.3s ease;
    }

    #backToTop:hover {
        background-color: #bebebe;
		color: #fff;
		
    }

    #backToTop .icon {
        width: 20px;   /* h-6 w-6 */
        height: 20px;
    }
	
		    .contact-text {
        font-size: 14px;
        color: #494949;
		font-family: "Barlow", sans-serif;
        font-weight: 400; 
        font-style: normal;
    }
	.contact-text a {color:#494949 !important; text-decoration:none !important; font-size: 14px; font-weight: 300; font-family: "Barlow", sans-serif; }
	.contact-text a:hover{color:#ed1c24 !important; text-decoration:none !important;}
	
.dojologo {  width: 0px; height: 52px; position: absolute;  bottom: 10px;  left: 0px;      z-index: 1000; opacity:0.8}
	@media (min-width: 768px) {  .dojologo {width: 0px; height: 68px; bottom: 12px;}}
	@media (min-width: 992px) {  .dojologo {width: 0px; height: 78px; bottom: 15px;}}
	@media (min-width: 1200px) {  .dojologo {width: 0px; height: 89px; bottom: 18px;}}
	@media (min-width: 1500px) {  .dojologo {width: 0px; height: 89px; bottom: 20px;}}
	
	.maincontainer2 { width:100%;  height:50px; bottom: 0px;  left: 20px; right: 0px; margin:auto; position:absolute; z-index: 1000;}
	@media (min-width: 768px) {  .maincontainer2 {max-width: 700px; bottom: 0px;  left: 20px; right: 20px; }}
	@media (min-width: 992px) {  .maincontainer2 {max-width: 900px; bottom: 0px;  left: 20px; right: 20px;}}
	@media (min-width: 1200px) {  .maincontainer2 {max-width: 1040px; bottom: 0px;  left: 20px; right: 20px;}}
    @media (min-width: 1500px) {  .maincontainer2 {max-width: 1080px;  bottom: 0px;  left: 20px; right: 20px;}}
    
    .social-icons {
        display: inline-flex;   /* flex → inline-flex */
        align-items: center;
        gap: 6px;
        margin-right: 4px;       /* link se thoda gap */
		margin-left: 4px;  
		vertical-align: middle;
    }

    .social-icons-am {
        display: inline-flex;   /* flex → inline-flex */
        align-items: center;
        gap: 6px;
        margin-right: 4px;       /* link se thoda gap */
vertical-align: middle;
    }

    .social-icons a svg {
        display: block;
        width: 20px;
        height: 20px;
        transition: fill 0.4s ease;
    }

    .social-icons a:hover svg {
        fill: #ed1c24; /* hover color */
    }

    .social-icons-am a svg {
        display: block;
        width: 20px;
        height: 20px;
        transition: fill 0.4s ease;
    }

    .social-icons-am a:hover svg {
        fill: #ed1c24; /* hover color */
    }

    .more-btn {
        color: #ed1c24;
        cursor: pointer;
        margin-right: 0px;
        font-style: italic;
		font-size:16px;
		font-family: "Barlow", sans-serif;
		font-weight:400
    }
    
    .more-content {
        height: 0;
        opacity: 0;
        overflow: hidden;
        transition: height 0.5s ease, opacity 0.5s ease;
		margin: 20px auto;
        text-align: right;
        direction: rtl;
    }
    .more-content.open {
        opacity: 1;
    }
    .more-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto; /* optional, centers image */
    }