Hello, Anmol.
There are probably a few ways to handle those kinds of obstacles. It sounds like right now you are using the position reading to determine if the line was lost, which is causing the incorrect behavior on overshoots during turns. Instead of just sensing that your robot lost the line, you might consider trying to determine how the line was lost (e.g. to the left of the sensor, to the right of the sensor, or if it was centered when it disappeared). If the robot was centered when the line disappeared, this would indicate a line break (and not an overshoot), so you can program your robot to go straight until it senses the line again. To do this, you can keep track of the previous line position and as soon as the robot senses that it lost the line, check that previous position to determine if it ran into a dashed segment. This method should stop the robot from seeing overshoots as line breaks.
Alternatively, if you can stop your robot from overshooting the turns that could help as well. If the overshoot occurs on the right angle turns, you might consider trying to sense the turn (e.g. if the center and far-right or far-left sensors both see the line) and doing a hard-coded turn or entering a while loop that turns until the line is found again. If the overshoot is on smooth turns, you could try tuning your P and D coefficients better to eliminate the overshoot.
If you still have problems with these suggestions, can you post some pictures of your course and preferably a video of your robot attempting it?
As far as tuning your robot to work at twice the speed, I recommend getting it to work reliably at lower speeds first, then slowly increasing the speed and tweaking the tuning as you go. If you need help tuning your PID coefficients, this post by ben has some useful tips and suggestions. Additionally, when you get up to faster speeds, you might find that keeping your wheels clean can significantly help with retaining traction.
Brandon